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' },