|
@@ -483,6 +483,21 @@
|
|
|
return reviewStatus[_row.reviewStatus];
|
|
return reviewStatus[_row.reviewStatus];
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
|
|
+ {
|
|
|
|
|
+ prop: 'reconciliationStatus',
|
|
|
|
|
+ label: '对账状态',
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ showOverflowTooltip: true,
|
|
|
|
|
+ minWidth: 120,
|
|
|
|
|
+ formatter: (_row, _column, cellValue) => {
|
|
|
|
|
+ let options = [
|
|
|
|
|
+ { value: 0, label: '未对账' },
|
|
|
|
|
+ { value: 1, label: '部分对账' },
|
|
|
|
|
+ { value: 2, label: '全部对账' }
|
|
|
|
|
+ ];
|
|
|
|
|
+ return options.find(item => item.value == cellValue)?.label || '';
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
{
|
|
{
|
|
|
prop: 'createUserName',
|
|
prop: 'createUserName',
|
|
|
label: '创建人',
|
|
label: '创建人',
|