From ec2b5850e8a884b1f6d22f55b564c615eb8427fa Mon Sep 17 00:00:00 2001 From: zhangdi <15053473693@163.com> Date: Sat, 27 Dec 2025 15:10:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=92=E4=BA=A7=E5=BC=82=E5=B8=B8=E5=A4=84?= =?UTF-8?q?=E7=90=86=E8=AE=A2=E5=8D=95=E4=BC=98=E5=85=88=E7=BA=A7=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/secondOrder/outbound.vue | 36 +++++++++++++++++++++--------- 1 file changed, 26 insertions(+), 10 deletions(-) diff --git a/src/views/secondOrder/outbound.vue b/src/views/secondOrder/outbound.vue index 01ca07b..63fc93c 100644 --- a/src/views/secondOrder/outbound.vue +++ b/src/views/secondOrder/outbound.vue @@ -124,7 +124,7 @@ export default { }, { label: "部门", - prop: "str8", + prop: "department", search: true, type: 'select', headerAlign: "center", @@ -139,22 +139,38 @@ export default { }, { label: "审批人", - prop: "str5", - headerAlign: "center", - align: "center", - }, - { - label: "来源", - prop: "str6", - search: false, + prop: "approvers", headerAlign: "center", align: "center", }, + // { + // label: "来源", + // prop: "source", + // search: false, + // headerAlign: "center", + // align: "center", + // }, { label: "状态", - prop: "str7", + prop: "status", headerAlign: "center", align: "center", + type: "select", + align: "center", + dicData: [ + { + label: "暂存", + value: 1, + }, + { + label: "待审批", + value: 2, + }, + { + label: "已审批", + value: 3, + }, + ], }, ]