From be239985a9daec6c04929209c2a991b2cdc700e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=A9=AC=E4=B8=89=E7=82=AE?= <15856818120@163.com> Date: Sun, 15 Jun 2025 17:18:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=9A=E5=8A=A1=E5=8A=9E=E7=90=86=E8=AE=B0?= =?UTF-8?q?=E5=BD=95=E6=9F=A5=E8=AF=A2-=E7=9B=B4=E8=BD=AC=E8=AE=B0?= =?UTF-8?q?=E5=BD=95=E6=9F=A5=E8=AF=A2=EF=BC=8C=E5=AE=A1=E6=A0=B8=E7=8A=B6?= =?UTF-8?q?=E6=80=81=E7=AD=9B=E9=80=89=E7=8A=B6=E6=80=81=E4=B8=8E=E7=BB=93?= =?UTF-8?q?=E6=9E=9C=E4=B8=8D=E4=B8=80=E8=87=B4=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../businessHandlingRecord/directApplyRecord.vue | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/views/business/businessHandlingRecord/directApplyRecord.vue b/src/views/business/businessHandlingRecord/directApplyRecord.vue index da48cb81..17c4ecd3 100644 --- a/src/views/business/businessHandlingRecord/directApplyRecord.vue +++ b/src/views/business/businessHandlingRecord/directApplyRecord.vue @@ -72,6 +72,9 @@ 已完成 + + 已驳回 + @@ -129,15 +132,16 @@ export default { }, // 考勤状态 statusOptions: [ - { label: '待审核', value: '1' }, - { label: '审核中', value: '2' }, - { label: '已完成', value: '3' } + { label: '待审核', value: '0' }, + { label: '审核中', value: '1' }, + { label: '已完成', value: '2' }, + { label: '已驳回', value: '3' } ], total: 0, // 总条数 // 表头 tableColumns: [ { label: '申请时间', prop: 'createTime' }, - { label: '申请人', prop: 'leaseMan' }, + { label: '申请人', prop: 'createName' }, { label: '转出单位', prop: 'backUnitName' }, { label: '转出工程', prop: 'backProName' }, { label: '转入单位', prop: 'leaseUnitName' },