代码修复

master
1178634255 2 years ago
parent c0cd221182
commit 76ef387d5f

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

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

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

Loading…
Cancel
Save