|
|
|
@ -194,7 +194,7 @@ |
|
|
|
? `${scope.row.idNum.substr(0, 11)}` + |
|
|
|
"******" + |
|
|
|
`${scope.row.idNum.substr(16, 2)}` |
|
|
|
: "" |
|
|
|
: "--" |
|
|
|
}} |
|
|
|
</div> |
|
|
|
<div v-else-if="item.columnName == 'mobile'"> |
|
|
|
@ -203,7 +203,7 @@ |
|
|
|
? `${scope.row.mobile.substr(0, 3)}` + |
|
|
|
"******" + |
|
|
|
`${scope.row.mobile.substr(7, 4)}` |
|
|
|
: "" |
|
|
|
: "--" |
|
|
|
}} |
|
|
|
</div> |
|
|
|
<div v-else-if="item.columnName == 'categoryInfo'"> |
|
|
|
@ -696,6 +696,7 @@ export default { |
|
|
|
}, |
|
|
|
|
|
|
|
queryConditions: [], |
|
|
|
searchFlag:false |
|
|
|
}; |
|
|
|
}, |
|
|
|
|
|
|
|
@ -787,7 +788,7 @@ export default { |
|
|
|
let obj = this.$refs.myResiSearch.form; |
|
|
|
let categoryArr = this.$refs.myResiSearch.form.categoryKey; |
|
|
|
let agencyId = this.$refs.myResiSearch.form.agencyId; |
|
|
|
|
|
|
|
this.searchFlag = true |
|
|
|
if ( |
|
|
|
typeof obj.categoryKey == "object" && |
|
|
|
obj.categoryKey.length != 0 |
|
|
|
@ -1009,7 +1010,11 @@ export default { |
|
|
|
obj.agencyId = ""; |
|
|
|
} |
|
|
|
this.currentPage = val; |
|
|
|
if(this.searchFlag){ |
|
|
|
this.getTableData(obj); |
|
|
|
}else{ |
|
|
|
this.getTableData(); |
|
|
|
} |
|
|
|
this.$refs.myResiSearch.form.categoryKey = categoryArr; |
|
|
|
this.$refs.myResiSearch.form.agencyId = agencyId; |
|
|
|
}, |
|
|
|
@ -1026,6 +1031,7 @@ export default { |
|
|
|
}, |
|
|
|
|
|
|
|
resetSearchForm() { |
|
|
|
this.searchFlag = false |
|
|
|
for (const n in this.$refs.myResiSearch.form) { |
|
|
|
this.$refs.myResiSearch.form[n] = ""; |
|
|
|
|
|
|
|
|