|
@@ -97,6 +97,7 @@
|
|
|
<el-form-item label="片区" prop="workArea">
|
|
<el-form-item label="片区" prop="workArea">
|
|
|
<el-select
|
|
<el-select
|
|
|
clearable
|
|
clearable
|
|
|
|
|
+ multiple
|
|
|
v-model="queryParams.workArea"
|
|
v-model="queryParams.workArea"
|
|
|
placeholder="请选择片区">
|
|
placeholder="请选择片区">
|
|
|
<el-option
|
|
<el-option
|
|
@@ -1386,7 +1387,13 @@
|
|
|
this.loginStaffInfo = response.data;
|
|
this.loginStaffInfo = response.data;
|
|
|
}
|
|
}
|
|
|
this.queryParams.tab = 2;
|
|
this.queryParams.tab = 2;
|
|
|
|
|
+ if (this.queryParams.workArea != null && this.queryParams.workArea != "") {
|
|
|
|
|
+ this.queryParams.workArea = this.queryParams.workArea.join();
|
|
|
|
|
+ }
|
|
|
listApply(this.queryParams).then(response => {
|
|
listApply(this.queryParams).then(response => {
|
|
|
|
|
+ if (this.queryParams.workArea != null && this.queryParams.workArea != "") {
|
|
|
|
|
+ this.queryParams.workArea = this.queryParams.workArea.split(",");
|
|
|
|
|
+ }
|
|
|
// let rows = response.rows;
|
|
// let rows = response.rows;
|
|
|
// this.applyList = [];
|
|
// this.applyList = [];
|
|
|
// for (let i = 0; i < rows.length; i++) {
|
|
// for (let i = 0; i < rows.length; i++) {
|