-
+
+
@@ -47,6 +44,9 @@
至
+
+
+
查询
@@ -67,17 +67,13 @@
-
-
-
-
+
+
-
-
{{ scope.row.createTime }}
@@ -89,6 +85,7 @@
+
@@ -248,8 +245,7 @@ export default {
size: 10,
total: 0,
params: {
- bankContractNo: '',
- bankName: '',
+ repaymentName: '',
beOverdueMoney: '',
beOverdueMoneyAndPeriod: '',
beOverduePeriod: '',
@@ -261,7 +257,8 @@ export default {
userSid: '',
vinNo: '',
collectionStartDate: '',
- collectionEndDate: ''
+ collectionEndDate: '',
+ riskStaffName: ''
}
},
formobj: {
@@ -352,8 +349,7 @@ export default {
size: 10,
total: 0,
params: {
- bankContractNo: '',
- bankName: '',
+ repaymentName: '',
beOverdueMoney: '',
beOverdueMoneyAndPeriod: '',
beOverduePeriod: '',
@@ -365,7 +361,8 @@ export default {
userSid: '',
vinNo: '',
collectionStartDate: '',
- collectionEndDate: ''
+ collectionEndDate: '',
+ riskStaffName: ''
}
}
this.getList()
diff --git a/anrui-riskcenter-ui/src/views/overduevehicle/vehiclecollectionentry.vue b/anrui-riskcenter-ui/src/views/overduevehicle/vehiclecollectionentry.vue
index e3f5eb53be..b789321661 100644
--- a/anrui-riskcenter-ui/src/views/overduevehicle/vehiclecollectionentry.vue
+++ b/anrui-riskcenter-ui/src/views/overduevehicle/vehiclecollectionentry.vue
@@ -46,34 +46,11 @@
-
+
- 查看
-
-
-
-
- 查看
-
-
-
-
- 查看
-
-
-
-
- 查看
-
-
-
-
- 查看
-
-
-
-
- 查看
+
+
+
@@ -195,7 +172,7 @@ import monthlyreturnInfo from './relation/monthlyreturnInfo'
import financialschemeInfo from '@/components/publicPage/financialschemeInfo'
import homevisitreport from './relation/homevisitreport'
import materialInfo from './relation/materialInfo'
-import {getStorage} from "@/utils/auth";
+import { getStorage } from '@/utils/auth'
export default {
name: 'VehicleCollectionEntry',
@@ -367,39 +344,33 @@ export default {
this.formobj.taskHandMeasuresValue = ''
}
},
- // 查看历史催收记录
- lookCollection(row) {
- this.viewState = 2
- this.$refs['divCollection'].showInfo(row)
- },
- // 查看开票信息
- lookBilling(row) {
- this.viewState = 3
- this.$refs['divBilling'].showInfo(row)
- },
- // 查看月还明细
- lookMonthlyPayback(row) {
- this.viewState = 4
- this.$refs['divMonthlyReturn'].showInfo(row)
- },
- // 查看销售订单--金融方案
- lookFinancial(row) {
- req.selectDetailss({ businessSid: row.salesOrderSid }).then((res) => {
- if (res.success) {
- this.viewState = 5
- this.$refs['divFinancial'].showInfo(res.data, '03')
- }
- })
- },
- // 查看家访考察报告
- lookReport(row) {
- this.viewState = 6
- this.$refs['divReport'].showInfo(row)
- },
- // 查看家访资料
- lookMaterial(row) {
- this.viewState = 7
- this.$refs['divaMterial'].showInfo(row)
+ dataChange(value, row, list) {
+ const choose = list.filter((item) => item.name === value)
+ if (value === '催收记录' && choose[0].sid !== '') {
+ this.viewState = 2
+ this.$refs['divCollection'].showInfo({ saleVehSid: choose[0].sid })
+ } else if (value === '开票信息' && choose[0].sid !== '') {
+ this.viewState = 3
+ this.$refs['divBilling'].showInfo({ kpglSid: choose[0].sid })
+ } else if (value === '月还明细' && choose[0].sid !== '') {
+ this.viewState = 4
+ this.$refs['divMonthlyReturn'].showInfo({ saleVehSid: choose[0].sid })
+ } else if (value === '金融方案' && choose[0].sid !== '') {
+ req.selectDetailss({ businessSid: choose[0].sid }).then((res) => {
+ if (res.success) {
+ this.viewState = 5
+ this.$refs['divFinancial'].showInfo(res.data, '03')
+ }
+ })
+ } else if (value === '家访考察报告' && choose[0].sid !== '') {
+ this.viewState = 6
+ this.$refs['divReport'].showInfo({ kcbgSid: choose[0].sid })
+ } else if (value === '家访考察资料' && choose[0].sid !== '') {
+ this.viewState = 7
+ this.$refs['divMterial'].showInfo({ kczlSid: choose[0].sid })
+ } else {
+
+ }
},
resetState() {
this.viewState = 1