|
@@ -37,7 +37,7 @@
|
|
|
>
|
|
>
|
|
|
<div
|
|
<div
|
|
|
class="insurer"
|
|
class="insurer"
|
|
|
- :class="insurerId === item.insuranceCompanyId ? 'on' : 'insurer'"
|
|
|
|
|
|
|
+ :class="companyId === item.insuranceCompanyId ? 'on' : 'insurer'"
|
|
|
>
|
|
>
|
|
|
<div>
|
|
<div>
|
|
|
<img :width="50" :height="50" :src="item.logo" />
|
|
<img :width="50" :height="50" :src="item.logo" />
|
|
@@ -175,7 +175,7 @@ export default {
|
|
|
total: 0,
|
|
total: 0,
|
|
|
perPage: 0,
|
|
perPage: 0,
|
|
|
},
|
|
},
|
|
|
- insurerId: "",
|
|
|
|
|
|
|
+ companyId: "",
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
watch: {
|
|
watch: {
|
|
@@ -203,8 +203,8 @@ export default {
|
|
|
// console.log(this.companyPage.page);
|
|
// console.log(this.companyPage.page);
|
|
|
},
|
|
},
|
|
|
chooseInsurer(item) {
|
|
chooseInsurer(item) {
|
|
|
- this.insurerId = item.insuranceCompanyId;
|
|
|
|
|
- // // console.log(item,this.insurerId)
|
|
|
|
|
|
|
+ this.companyId = item.insuranceCompanyId;
|
|
|
|
|
+ // // console.log(item,this.companyId)
|
|
|
this.getBackLinePersonnel();
|
|
this.getBackLinePersonnel();
|
|
|
},
|
|
},
|
|
|
onChangeTime(val) {
|
|
onChangeTime(val) {
|
|
@@ -259,6 +259,7 @@ export default {
|
|
|
pageNum: this.pagination.current,
|
|
pageNum: this.pagination.current,
|
|
|
pageSize: this.pagination.defaultPageSize,
|
|
pageSize: this.pagination.defaultPageSize,
|
|
|
...this.formState,
|
|
...this.formState,
|
|
|
|
|
+ companyId: this.companyId,
|
|
|
})
|
|
})
|
|
|
.then((res) => {
|
|
.then((res) => {
|
|
|
if (res.data.code === 200) {
|
|
if (res.data.code === 200) {
|