|
@@ -51,7 +51,7 @@
|
|
|
import { getAccountstatementList } from '@/api/saleManage/accountstatement';
|
|
import { getAccountstatementList } from '@/api/saleManage/accountstatement';
|
|
|
import accountInfoDialog from './accountInfoDialog.vue';
|
|
import accountInfoDialog from './accountInfoDialog.vue';
|
|
|
import { shippingModeOp, transactionMethodsOp } from '@/enum/dict.js';
|
|
import { shippingModeOp, transactionMethodsOp } from '@/enum/dict.js';
|
|
|
-
|
|
|
|
|
|
|
+ import { receiptPaymentPlanPage } from '@/api/financialManage/payAndCollectPlan';
|
|
|
export default {
|
|
export default {
|
|
|
mixins: [dictMixins, tabMixins],
|
|
mixins: [dictMixins, tabMixins],
|
|
|
components: {
|
|
components: {
|
|
@@ -366,16 +366,16 @@
|
|
|
return _row.overdueStatus == 1 ? '逾期中' : '未逾期';
|
|
return _row.overdueStatus == 1 ? '逾期中' : '未逾期';
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
- {
|
|
|
|
|
- columnKey: 'action',
|
|
|
|
|
- label: '操作',
|
|
|
|
|
- width: 180,
|
|
|
|
|
- align: 'center',
|
|
|
|
|
- resizable: false,
|
|
|
|
|
- slot: 'action',
|
|
|
|
|
- showOverflowTooltip: true,
|
|
|
|
|
- fixed: 'right'
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ // {
|
|
|
|
|
+ // columnKey: 'action',
|
|
|
|
|
+ // label: '操作',
|
|
|
|
|
+ // width: 180,
|
|
|
|
|
+ // align: 'center',
|
|
|
|
|
+ // resizable: false,
|
|
|
|
|
+ // slot: 'action',
|
|
|
|
|
+ // showOverflowTooltip: true,
|
|
|
|
|
+ // fixed: 'right'
|
|
|
|
|
+ // }
|
|
|
]
|
|
]
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
@@ -409,12 +409,12 @@
|
|
|
if (this.contactData.id) {
|
|
if (this.contactData.id) {
|
|
|
where['contactId'] = this.contactData.id;
|
|
where['contactId'] = this.contactData.id;
|
|
|
}
|
|
}
|
|
|
- return getAccountstatementList({
|
|
|
|
|
|
|
+ return receiptPaymentPlanPage({
|
|
|
pageNum: page,
|
|
pageNum: page,
|
|
|
size: limit,
|
|
size: limit,
|
|
|
...where,
|
|
...where,
|
|
|
- reviewStatus: 2,
|
|
|
|
|
- type: this.type
|
|
|
|
|
|
|
+ // reviewStatus: 2,
|
|
|
|
|
+ sourceType: this.type
|
|
|
});
|
|
});
|
|
|
},
|
|
},
|
|
|
|
|
|