|
@@ -17,6 +17,7 @@
|
|
|
mixins: [punishmentMixin],
|
|
|
data() {
|
|
|
return {
|
|
|
+ options9:[],
|
|
|
options: [],
|
|
|
options1: [],
|
|
|
options2: [],
|
|
@@ -128,7 +129,8 @@
|
|
|
pageNum: 1,
|
|
|
pageSize: 100,
|
|
|
}).then((res) => {
|
|
|
- this.options = res.data.rows;
|
|
|
+ console.log(res,'获取区域');
|
|
|
+ this.options9 = res.data.rows;
|
|
|
});
|
|
|
},
|
|
|
};
|
|
@@ -146,7 +148,7 @@
|
|
|
<div class="maintenance-supervision_header">
|
|
|
<div class="select-item">
|
|
|
<el-select v-model="value" placeholder="请选择">
|
|
|
- <el-option :value="item.qx" :label="item.qx" v-for="(item, index) in options"
|
|
|
+ <el-option :value="item.areaTitle" :label="item.areaTitle" v-for="(item, index) in options9"
|
|
|
:key="index">
|
|
|
</el-option>
|
|
|
</el-select>
|