代码修复

master
1178634255 2 years ago
parent c0cd221182
commit 76ef387d5f

@ -3,7 +3,7 @@ export function filterList(param) {
return request({
url: "/sup/company/person/filterList",
method: "get",
data :param
params :param
});
}

@ -608,6 +608,7 @@ export default {
customerkDialog(row) {
this.currentCustomer = row.id;
this.customerVisible = true;
},

@ -342,6 +342,7 @@ export default {
},
getList() {
this.loading = true;
console.log(this.query);
filterList(this.query)
.then((response) => {
this.loading = false;
@ -442,7 +443,8 @@ export default {
created() {
this.query.companyId = this.currentCustomer;
this.getList();
this.getList();
},
};

Loading…
Cancel
Save