业务办理记录查询-直转记录查询,审核状态筛选状态与结果不一致;

This commit is contained in:
马三炮 2025-06-15 17:18:47 +08:00
parent d3b54a6280
commit be239985a9
1 changed files with 8 additions and 4 deletions

View File

@ -72,6 +72,9 @@
<el-tag v-else-if="scope.row.status == '2'" type="success" size="mini" style="margin-right: 5px"> <el-tag v-else-if="scope.row.status == '2'" type="success" size="mini" style="margin-right: 5px">
已完成 已完成
</el-tag> </el-tag>
<el-tag v-else-if="scope.row.status == '3'" type="danger" size="mini" style="margin-right: 5px">
已驳回
</el-tag>
</template> </template>
</el-table-column> </el-table-column>
<!-- 操作 --> <!-- 操作 -->
@ -129,15 +132,16 @@ export default {
}, },
// //
statusOptions: [ statusOptions: [
{ label: '待审核', value: '1' }, { label: '待审核', value: '0' },
{ label: '审核中', value: '2' }, { label: '审核中', value: '1' },
{ label: '已完成', value: '3' } { label: '已完成', value: '2' },
{ label: '已驳回', value: '3' }
], ],
total: 0, // total: 0, //
// //
tableColumns: [ tableColumns: [
{ label: '申请时间', prop: 'createTime' }, { label: '申请时间', prop: 'createTime' },
{ label: '申请人', prop: 'leaseMan' }, { label: '申请人', prop: 'createName' },
{ label: '转出单位', prop: 'backUnitName' }, { label: '转出单位', prop: 'backUnitName' },
{ label: '转出工程', prop: 'backProName' }, { label: '转出工程', prop: 'backProName' },
{ label: '转入单位', prop: 'leaseUnitName' }, { label: '转入单位', prop: 'leaseUnitName' },