|
@@ -69,7 +69,7 @@
|
|
<el-table-column class="table_td" prop="paymentNo" width="100" label="编号" sortable></el-table-column>
|
|
<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>
|
|
<el-table-column class="table_td" prop="customerName" label="客户" sortable>
|
|
<template slot-scope="scope">
|
|
<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>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column class="table_td" prop="carNo" label="车牌号"></el-table-column>
|
|
<el-table-column class="table_td" prop="carNo" label="车牌号"></el-table-column>
|
|
@@ -499,20 +499,11 @@ import download from '../../components/WsDownload/download'
|
|
.catch(() => {})
|
|
.catch(() => {})
|
|
},
|
|
},
|
|
customer(row) {
|
|
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. customerInfo = true
|
|
this.customerlist = row.identityAuthenticationInfo
|
|
this.customerlist = row.identityAuthenticationInfo
|
|
this.customerlist.cardAddressUrl1 = this.customerlist.cardAddressUrl.split(',')[0]
|
|
this.customerlist.cardAddressUrl1 = this.customerlist.cardAddressUrl.split(',')[0]
|
|
this.customerlist.cardAddressUrl2 = this.customerlist.cardAddressUrl.split(',')[1]
|
|
this.customerlist.cardAddressUrl2 = this.customerlist.cardAddressUrl.split(',')[1]
|
|
this.customerlist.payeeAddressUrls = this.customerlist.payeeAddressUrl.split(',')
|
|
this.customerlist.payeeAddressUrls = this.customerlist.payeeAddressUrl.split(',')
|
|
- this.$forceUpdate();
|
|
|
|
},
|
|
},
|
|
customerclose(e){
|
|
customerclose(e){
|
|
console.log(e)
|
|
console.log(e)
|
|
@@ -748,9 +739,6 @@ import download from '../../components/WsDownload/download'
|
|
.toPromise()
|
|
.toPromise()
|
|
.then(response => {
|
|
.then(response => {
|
|
this.paymentList = response.records
|
|
this.paymentList = response.records
|
|
- for(let i = 0 ; i < this.paymentList.length ; i++){
|
|
|
|
- this.paymentList.textcss = false
|
|
|
|
- }
|
|
|
|
this.deptBudgetTotal = response.total
|
|
this.deptBudgetTotal = response.total
|
|
})
|
|
})
|
|
// getJurisdiction({
|
|
// getJurisdiction({
|
|
@@ -762,8 +750,6 @@ import download from '../../components/WsDownload/download'
|
|
// .then(response => {
|
|
// .then(response => {
|
|
// this.isShowAdopt = response
|
|
// this.isShowAdopt = response
|
|
// })
|
|
// })
|
|
-
|
|
|
|
-
|
|
|
|
},
|
|
},
|
|
del(row) {
|
|
del(row) {
|
|
this.$confirm(
|
|
this.$confirm(
|
|
@@ -1238,6 +1224,6 @@ import download from '../../components/WsDownload/download'
|
|
}
|
|
}
|
|
|
|
|
|
.text_css {
|
|
.text_css {
|
|
- color: #2c29e7;
|
|
|
|
|
|
+ color: #5878e8;
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|