查看用户

master
schry 2 years ago
parent 76ef387d5f
commit fe2fc69a42

@ -451,6 +451,11 @@ export default {
page: 1, page: 1,
limit: 20, limit: 20,
}, },
userPersonQuery:{
businessId:"",
page: 1,
limit: 20,
},
value: "", value: "",
total: 0, total: 0,
checkFlag: { checkFlag: {
@ -610,6 +615,7 @@ export default {
this.currentCustomer = row.id; this.currentCustomer = row.id;
this.customerVisible = true; this.customerVisible = true;
}, },
closeCustomerDialog() { closeCustomerDialog() {
@ -617,7 +623,7 @@ export default {
this.customerVisible = false; this.customerVisible = false;
}, },
checkDialog(row) { checkDialog(row) {
this.formData=row; this.formData=row;
this.formVisible = true; this.formVisible = true;
this.query.businessId=row.id; this.query.businessId=row.id;
this.getCertList(); this.getCertList();

@ -222,8 +222,10 @@ const formJson = {
export default { export default {
name: "currentCustomer", name: "currentCustomer",
props: { props: {
currentCustomer: "", currentCustomer: {
type: String,
required: true,
},
closeCustomerDialog: { closeCustomerDialog: {
type: Function, type: Function,
required: true, required: true,
@ -328,7 +330,6 @@ export default {
weChat: "", weChat: "",
email: "", email: "",
createTime: "", createTime: "",
companyId: this.currentCustomer,
}; };
this.getList(); this.getList();
}, },
@ -442,7 +443,7 @@ export default {
created() { created() {
this.query.companyId = this.currentCustomer; this.query.companyId = this.currentCustomer;
this.getList(); this.getList();
}, },

Loading…
Cancel
Save