From 7828af24fdbabf83d59d0ca21906c6e742b678e0 Mon Sep 17 00:00:00 2001 From: aixianling Date: Fri, 27 Dec 2024 18:00:52 +0800 Subject: [PATCH] =?UTF-8?q?feat(xumu):=20=E6=96=B0=E5=A2=9E=E6=B7=98?= =?UTF-8?q?=E6=B1=B0=E7=99=BB=E8=AE=B0=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加 AppOutManage组件,包含新增和列表页面- 实现淘汰登记的新增、编辑、审核等功能 -集成字典加载、表格展示、搜索筛选等模块 -优化表单验证和图片上传功能 --- project/xumu/AppOutManage/AppOutManage.vue | 35 +++++ project/xumu/AppOutManage/add.vue | 163 +++++++++++++++++++++ project/xumu/AppOutManage/list.vue | 143 ++++++++++++++++++ project/xumu/AppTreatmentManage/add.vue | 2 +- project/xumu/AppWeightManage/add.vue | 4 +- 5 files changed, 344 insertions(+), 3 deletions(-) create mode 100644 project/xumu/AppOutManage/AppOutManage.vue create mode 100644 project/xumu/AppOutManage/add.vue create mode 100644 project/xumu/AppOutManage/list.vue diff --git a/project/xumu/AppOutManage/AppOutManage.vue b/project/xumu/AppOutManage/AppOutManage.vue new file mode 100644 index 00000000..dcc5361d --- /dev/null +++ b/project/xumu/AppOutManage/AppOutManage.vue @@ -0,0 +1,35 @@ + + + + + diff --git a/project/xumu/AppOutManage/add.vue b/project/xumu/AppOutManage/add.vue new file mode 100644 index 00000000..0fd3263b --- /dev/null +++ b/project/xumu/AppOutManage/add.vue @@ -0,0 +1,163 @@ + + + + + diff --git a/project/xumu/AppOutManage/list.vue b/project/xumu/AppOutManage/list.vue new file mode 100644 index 00000000..256c7170 --- /dev/null +++ b/project/xumu/AppOutManage/list.vue @@ -0,0 +1,143 @@ + + + + + diff --git a/project/xumu/AppTreatmentManage/add.vue b/project/xumu/AppTreatmentManage/add.vue index 7b4ac573..d96d90a9 100644 --- a/project/xumu/AppTreatmentManage/add.vue +++ b/project/xumu/AppTreatmentManage/add.vue @@ -140,7 +140,7 @@ export default { - + diff --git a/project/xumu/AppWeightManage/add.vue b/project/xumu/AppWeightManage/add.vue index cf73d3e9..54350e94 100644 --- a/project/xumu/AppWeightManage/add.vue +++ b/project/xumu/AppWeightManage/add.vue @@ -5,7 +5,7 @@ import AiDialog from "dui/packages/basic/AiDialog.vue"; const columns = [ {label: "序号", type: "index"}, - {label: "数据来源", prop: "source", dict: "source"}, + {label: "数据来源", prop: "source", dict: "dataSources"}, {label: "重量", prop: "weight"}, {label: "称重时间", prop: "createTime"}, {label: "是否变更过", prop: "isUpdate", dict: "yesOrNo"}, @@ -72,7 +72,7 @@ export default { } }, created() { - this.dict.load("yesOrNo", "category", "variety", "source") + this.dict.load("yesOrNo", "category", "variety", "dataSources") this.getDetail() } }