0.0.1版本

This commit is contained in:
2024-07-22 18:57:12 +08:00
parent e071bee532
commit bf0b0f6080
49 changed files with 868 additions and 499 deletions

View File

@@ -46,6 +46,10 @@ const crudColumns = ref([
commonRules: [{ required: true, message: "全称和描述必填" }]
}
])
defineOptions({
name: "abbreviation"
})
</script>
<style lang="less" scoped></style>

View File

@@ -61,7 +61,7 @@ const crudOptions = ref({
searchColNumber: 4,
tablePagination: false,
operationColumn: true,
showTools:false,
showTools: false
})
const crudColumns = ref([
@@ -108,8 +108,12 @@ const crudColumns = ref([
search: true,
formType: "range",
width: 180
},
}
])
defineOptions({
name: "dictmanage"
})
</script>
<style lang="less" scoped></style>

View File

@@ -30,21 +30,28 @@ const crudOptions = ref({
})
const crudColumns = ref([
{ title: "ID", dataIndex: "id", addDisplay: false, editDisplay: false, width: 50, hide: true },
{ title: "公司编号", align: "center", dataIndex: "key", search: true, width: 220, formType: "input-number" },
{ title: "公司编号", align: "center", dataIndex: "key", search: true, width: 70, formType: "input-number" },
{
title: "名称",
align: "center",
dataIndex: "name",
search: true,
width: 220,
width: 150,
commonRules: [{ required: true, message: "名称必填" }]
},
{
title: "简称",
align: "center",
dataIndex: "refer_name",
search: true,
commonRules: [{ required: true, message: "简称必填" }]
},
{
title: "法人",
align: "center",
dataIndex: "entrust_person",
search: true,
width: 220,
width: 90,
commonRules: [{ required: true, message: "法人必填" }]
},
{
@@ -52,7 +59,7 @@ const crudColumns = ref([
align: "center",
dataIndex: "addr",
search: true,
width: 200,
width: 150,
commonRules: [{ required: true, message: "公司地址必填" }]
}
])