初始化项目

This commit is contained in:
2025-11-20 09:10:35 +08:00
parent b60a4fe9f4
commit a96be99a54
254 changed files with 40718 additions and 0 deletions

View File

@@ -0,0 +1,129 @@
<template>
<el-card shadow="hover" header="表单表格验证">
<el-form ref="tableRulesRef" :model="tableData" size="default">
<el-table :data="tableData.data" border class="module-table-uncollected">
<el-table-column
v-for="(item, index) in tableData.header"
:key="index"
show-overflow-tooltip
:prop="item.prop"
:width="item.width"
:label="item.label"
>
<template v-slot:header>
<span v-if="item.isRequired" class="color-danger">*</span>
<span class="pl5">{{ item.label }}</span>
<el-tooltip v-if="item.isTooltip" effect="dark" content="这是tooltip" placement="top">
<i class="iconfont icon-quanxian" />
</el-tooltip>
</template>
<template v-slot="scope">
<el-form-item
:prop="`data.${scope.$index}.${item.prop}`"
:rules="[{ required: item.isRequired, message: '不能为空', trigger: `${item.type}` == 'input' ? 'blur' : 'change' }]"
>
<el-select v-if="item.type === 'select'" v-model="scope.row[item.prop]" placeholder="请选择">
<el-option v-for="sel in tableData.option" :key="sel.id" :label="sel.label" :value="sel.value" />
</el-select>
<el-date-picker
v-else-if="item.type === 'date'"
v-model="scope.row[item.prop]"
type="date"
placeholder="选择日期"
style="width: 100%"
/>
<el-input v-else-if="item.type === 'input'" v-model="scope.row[item.prop]" placeholder="请输入内容" />
<el-input v-else-if="item.type === 'dialog'" v-model="scope.row[item.prop]" readonly placeholder="请输入内容">
<template v-slot:suffix>
<i class="iconfont icon-shouye_dongtaihui" />
</template>
</el-input>
</el-form-item>
</template>
</el-table-column>
</el-table>
</el-form>
<el-row class="flex mt15">
<div class="flex-margin">
<el-button size="default" type="success" @click="onValidate">表格验证</el-button>
<el-button size="default" type="primary" @click="onAddRow">新增一行</el-button>
</div>
</el-row>
</el-card>
</template>
<script lang="ts">
import { defineComponent, toRefs, reactive, ref } from 'vue';
import { ElMessage } from 'element-plus';
// 定义接口来定义对象的类型
interface TableHeader {
prop: string;
width: string | number;
label: string;
isRequired?: boolean;
isTooltip?: boolean;
type: string;
}
interface TableRulesState {
tableData: {
data: any[];
header: TableHeader[];
option: any[];
};
}
export default defineComponent({
name: 'pagesTableRules',
setup() {
const tableRulesRef = ref();
const state = reactive<TableRulesState>({
tableData: {
data: [],
header: [
{ prop: 'a1', width: '', label: '一级分类', isRequired: true, type: 'select' },
{ prop: 'a2', width: '', label: '二级分类', isRequired: true, type: 'select' },
{ prop: 'a3', width: '', label: '三级分类', isRequired: true, type: 'select' },
{ prop: 'a4', width: '', label: '四级分类', isRequired: true, type: 'date' },
{ prop: 'a5', width: '', label: '五级分类', isRequired: true, type: 'input' },
{ prop: 'a6', width: '', label: '六级分类', isTooltip: true, type: 'dialog' },
{ prop: 'a7', width: '', label: '演示级分类', type: 'input' },
{ prop: 'a8', width: '', label: '颜色是分类', type: 'input' },
],
option: [
{ value: '选项1', label: '黄金糕' },
{ value: '选项2', label: '双皮奶' },
{ value: '选项3', label: '蚵仔煎' },
],
},
});
// 表格验证
const onValidate = () => {
if (state.tableData.data.length <= 0) return ElMessage.warning('请先点击增加一行');
tableRulesRef.value.validate((valid: any) => {
if (!valid) return ElMessage.warning('表格项必填未填');
ElMessage.success('全部验证通过');
});
};
// 新增一行
const onAddRow = () => {
state.tableData.data.push({
a1: '',
a2: '',
a3: '',
a4: '',
a5: '',
a6: '',
a7: '',
a8: '',
});
};
return {
onValidate,
onAddRow,
tableRulesRef,
...toRefs(state),
};
},
});
</script>