|
@@ -67,7 +67,7 @@
|
|
|
<el-table-column class="table_td" prop="paymentNo" width="100" label="编号" sortable></el-table-column>
|
|
|
<el-table-column class="table_td" prop="customerName" label="客户" sortable>
|
|
|
<template slot-scope="scope">
|
|
|
- <div @click.stop="customer(scope.row)"><span :class="{ text_css: scope.row.textcss }">{{scope.row.customerName}}</span></div>
|
|
|
+ <div @click.stop="customer(scope.row)"><span class="text_css">{{scope.row.customerName}}</span></div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column class="table_td" prop="carNo" label="车牌号"></el-table-column>
|
|
@@ -417,20 +417,11 @@ import {
|
|
|
.catch(() => {})
|
|
|
},
|
|
|
customer(row) {
|
|
|
- for(let i = 0 ; i < this.paymentList.length ; i++){
|
|
|
- if(row.id == this.paymentList[i].id){
|
|
|
- row.textcss = true
|
|
|
- }else{
|
|
|
- this.paymentList[i].textcss = false
|
|
|
- }
|
|
|
- }
|
|
|
- row.textcss = true
|
|
|
this. customerInfo = true
|
|
|
this.customerlist = row.identityAuthenticationInfo
|
|
|
this.customerlist.cardAddressUrl1 = this.customerlist.cardAddressUrl.split(',')[0]
|
|
|
this.customerlist.cardAddressUrl2 = this.customerlist.cardAddressUrl.split(',')[1]
|
|
|
this.customerlist.payeeAddressUrls = this.customerlist.payeeAddressUrl.split(',')
|
|
|
- this.$forceUpdate();
|
|
|
},
|
|
|
customerclose(e){
|
|
|
console.log(e)
|
|
@@ -639,9 +630,6 @@ import {
|
|
|
.toPromise()
|
|
|
.then(response => {
|
|
|
this.paymentList = response.records
|
|
|
- for(let i = 0 ; i < this.paymentList.length ; i++){
|
|
|
- this.paymentList.textcss = false
|
|
|
- }
|
|
|
this.deptBudgetTotal = response.total
|
|
|
})
|
|
|
// getJurisdiction({
|
|
@@ -653,8 +641,6 @@ import {
|
|
|
// .then(response => {
|
|
|
// this.isShowAdopt = response
|
|
|
// })
|
|
|
-
|
|
|
-
|
|
|
},
|
|
|
del(row) {
|
|
|
this.$confirm(
|
|
@@ -1127,6 +1113,6 @@ import {
|
|
|
}
|
|
|
|
|
|
.text_css {
|
|
|
- color: #2c29e7;
|
|
|
+ color: #5878e8;
|
|
|
}
|
|
|
</style>
|