This commit is contained in:
@@ -119,10 +119,16 @@ export default {
|
||||
this.value.alertViz = null;
|
||||
const custId = this.value.customerId;
|
||||
if (custId != null) {
|
||||
const res = await window.$gz.api.get(`customer/alert/${custId}`);
|
||||
//------ Alert notes
|
||||
let res = await window.$gz.api.get(`customer/alert/${custId}`);
|
||||
if (res.data) {
|
||||
this.value.alertViz = res.data;
|
||||
}
|
||||
//------ Addresses
|
||||
res = await window.$gz.api.get(`customer/address/${custId}`);
|
||||
if (res.data) {
|
||||
console.log("woheaderfldvalchng-address:", res.data);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user