@@ -64,11 +64,15 @@ const queryConfig: FormConfigType[] = [
option: [
{
key: 0,
- label: '未放款'
+ label: '未打款'
},
key: 1,
- label: '已放款'
+ label: '部分打款'
+ },
+ {
+ key: 2,
+ label: '已打款'
}
]
@@ -134,23 +138,16 @@ const columnConfig: ColumnConfigType[] = [
label: '请款金额'
- prop: 'payType',
- label: '付款方式',
- dict: 'pay_type'
- },
- {
- prop: 'capitalAccountName',
- label: '付款账户'
prop: 'paymentStatus',
label: '放款状态',
formatter(row) {
switch (row.paymentStatus) {
case 0:
- return '未放款'
+ return '未打款'
case 1:
- return '已放款'
+ return '部分打款'
+ case 2:
+ return '已打款'
@@ -96,11 +96,15 @@ const queryConfig: FormConfigType[] = [
@@ -197,9 +201,11 @@ const columnConfig: ColumnConfigType[] = [