|
|
|
@ -4,7 +4,7 @@
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-form-item class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="filterQuery.batchNo"
|
|
|
|
|
v-model="filterQuery.companyName"
|
|
|
|
|
placeholder="企业名称"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
@ -262,9 +262,10 @@
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in sOptions"
|
|
|
|
|
:key="idx"
|
|
|
|
|
:key="id"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item">
|
|
|
|
|
:value="item.id">
|
|
|
|
|
<span>{{item.name}}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
@ -410,9 +411,9 @@
|
|
|
|
|
},
|
|
|
|
|
selectOne(event) {
|
|
|
|
|
this.rowData.companyName = event.name;
|
|
|
|
|
this.rowData.companyId = event.value;
|
|
|
|
|
this.rowData.companyId = event.id;
|
|
|
|
|
this.checkQuery.companyName = event.name;
|
|
|
|
|
this.checkQuery.companyId = event.value;
|
|
|
|
|
this.checkQuery.companyId = event.id;
|
|
|
|
|
this.sSelectStatus = true;
|
|
|
|
|
},
|
|
|
|
|
remoteMethod(query) {
|
|
|
|
@ -425,9 +426,8 @@
|
|
|
|
|
};
|
|
|
|
|
getBasicUnitMaintains2(tQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
console.log(response)
|
|
|
|
|
this.sLoading = false;
|
|
|
|
|
this.sOptions = response.data.list;
|
|
|
|
|
this.sOptions = response.data.list
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.sLoading = false;
|
|
|
|
@ -442,7 +442,6 @@
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
handleCheckedChange(val) {
|
|
|
|
|
console.log(val);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
handleSizeChange(val) {
|
|
|
|
@ -454,7 +453,6 @@
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
findMethod(query) {
|
|
|
|
|
console.log(query);
|
|
|
|
|
this.fromOptions = [];
|
|
|
|
|
let cQuery = {
|
|
|
|
|
key: query,
|
|
|
|
@ -487,21 +485,16 @@
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
checkDialog(row) {
|
|
|
|
|
console.log(this.checkQuery.roles);
|
|
|
|
|
this.check = row.roles;
|
|
|
|
|
this.checkQuery = {
|
|
|
|
|
id: row.id + "",
|
|
|
|
|
checkType: 1,
|
|
|
|
|
roles: row.roles,
|
|
|
|
|
};
|
|
|
|
|
console.log(
|
|
|
|
|
this.check + "---" + row.roles + "---" + this.checkQuery.roles
|
|
|
|
|
);
|
|
|
|
|
this.rowData = row;
|
|
|
|
|
if (this.registerConfigMap.companyCheckStatus) {
|
|
|
|
|
this.sValue = this.rowData.companyName;
|
|
|
|
|
}
|
|
|
|
|
console.log(this.rowData);
|
|
|
|
|
this.centerDialogVisible = true;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@ -547,7 +540,6 @@
|
|
|
|
|
authCustomerRoles()
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.roles = response.data.list || [];
|
|
|
|
|
console.log("888---" + this.checkQuery.roles);
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.checkQuery.roles = [];
|
|
|
|
|