|
@@ -1215,6 +1215,7 @@ export default {
|
|
|
const {data} = await policyList({
|
|
|
pageNum: 1,
|
|
|
pageSize: -1,
|
|
|
+ customerId: JSON.parse(localStorage.getItem("supply_user")).customerId,
|
|
|
specification: this.screenForm.specification,
|
|
|
})
|
|
|
this.policyList = data.records
|
|
@@ -1250,7 +1251,7 @@ export default {
|
|
|
popType,
|
|
|
// specification: this.screenForm.specification,
|
|
|
saleTypeCode: this.screenForm.saleTypeCode,
|
|
|
- customerId: this.listItem ? this.listItem.customerId : "",
|
|
|
+ customerId: JSON.parse(localStorage.getItem("supply_user")).customerId,
|
|
|
});
|
|
|
|
|
|
if (!fang) {
|
|
@@ -1321,7 +1322,7 @@ export default {
|
|
|
policyId: this.screenForm.policyId,
|
|
|
saleTypeCode: this.screenForm.saleTypeCode,
|
|
|
// specification: this.screenForm.specification,
|
|
|
- customerId: this.listItem ? this.listItem.customerId : "",
|
|
|
+ customerId: JSON.parse(localStorage.getItem("supply_user")).customerId,
|
|
|
[val]: true,
|
|
|
}).then((res) => {
|
|
|
this.dataList = res.data.records;
|
|
@@ -1667,7 +1668,7 @@ export default {
|
|
|
policyList({
|
|
|
pageNum: 1,
|
|
|
pageSize: -1,
|
|
|
- customerId: this.listItem ? this.listItem.customerId : "",
|
|
|
+ customerId: JSON.parse(localStorage.getItem("supply_user")).customerId,
|
|
|
status: true,
|
|
|
}).then((res) => {
|
|
|
if (this.policyId) {
|