|
@@ -97,6 +97,7 @@
|
|
|
<el-form-item label="片区" prop="workArea">
|
|
|
<el-select
|
|
|
clearable
|
|
|
+ multiple
|
|
|
v-model="queryParams.workArea"
|
|
|
placeholder="请选择片区">
|
|
|
<el-option
|
|
@@ -1380,7 +1381,13 @@ export default {
|
|
|
getList() {
|
|
|
this.loading = true;
|
|
|
this.queryParams.tab = 3;
|
|
|
+ if (this.queryParams.workArea != null && this.queryParams.workArea != "") {
|
|
|
+ this.queryParams.workArea = this.queryParams.workArea.join();
|
|
|
+ }
|
|
|
listApply(this.queryParams).then(response => {
|
|
|
+ if (this.queryParams.workArea != null && this.queryParams.workArea != "") {
|
|
|
+ this.queryParams.workArea = this.queryParams.workArea.split(",");
|
|
|
+ }
|
|
|
this.applyList = response.rows;
|
|
|
this.total = response.total;
|
|
|
this.loading = false;
|