|
|
|
@ -310,6 +310,7 @@
|
|
|
|
|
width="70%"
|
|
|
|
|
append-to-body
|
|
|
|
|
:modal-append-to-body="false"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
@close="closeCustomerDialog"
|
|
|
|
|
>
|
|
|
|
|
<customerUser :currentCustomer="currentCustomer"></customerUser>
|
|
|
|
@ -490,8 +491,6 @@ export default {
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
handleCheckedChange(val) {
|
|
|
|
|
console.log(val);
|
|
|
|
|
console.log(this.check);
|
|
|
|
|
},
|
|
|
|
|
checkRegister(tquery) {
|
|
|
|
|
this.loading = true;
|
|
|
|
@ -514,18 +513,13 @@ export default {
|
|
|
|
|
customerkDialog(row) {
|
|
|
|
|
this.currentCustomer = row.customerId;
|
|
|
|
|
this.timer = new Date().getTime();
|
|
|
|
|
console.log("this.currentCustomer = " + this.currentCustomer);
|
|
|
|
|
this.customerVisible = true;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
closeCustomerDialog() {
|
|
|
|
|
console.log("this.currentCustomer 关闭 = " + this.currentCustomer);
|
|
|
|
|
|
|
|
|
|
this.currentCustomer = null;
|
|
|
|
|
},
|
|
|
|
|
checkDialog(row) {
|
|
|
|
|
console.log(row);
|
|
|
|
|
console.log(row.customerName);
|
|
|
|
|
(this.formData = {
|
|
|
|
|
customerName: row.companyName,
|
|
|
|
|
userMax: row.userMax,
|
|
|
|
@ -536,7 +530,6 @@ export default {
|
|
|
|
|
pdfTemplateId: row.pdfTemplateId,
|
|
|
|
|
}),
|
|
|
|
|
(this.check = parseInt(row.roleId));
|
|
|
|
|
console.log(this.check);
|
|
|
|
|
this.formVisible = true;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@ -572,7 +565,6 @@ export default {
|
|
|
|
|
authCustomerRoles()
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.roles = response.data.list || [];
|
|
|
|
|
console.log("888---" + this.checkQuery.roles);
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|