|
|
@ -23,9 +23,9 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="select-input">
|
|
|
|
<div class="select-input">
|
|
|
|
<div class="select-span">区划:</div>
|
|
|
|
<div class="select-span">区划:</div>
|
|
|
|
|
|
|
|
|
|
|
|
<el-cascader
|
|
|
|
<el-cascader
|
|
|
|
v-model="form.district"
|
|
|
|
size="small"
|
|
|
|
|
|
|
|
v-model="district"
|
|
|
|
:options="compartment"
|
|
|
|
:options="compartment"
|
|
|
|
:show-all-levels="false"
|
|
|
|
:show-all-levels="false"
|
|
|
|
:props="{
|
|
|
|
:props="{
|
|
|
@ -38,8 +38,8 @@
|
|
|
|
<div class="my-checkbox">
|
|
|
|
<div class="my-checkbox">
|
|
|
|
<el-checkbox-group v-model="checkList" @change="setmealSelect">
|
|
|
|
<el-checkbox-group v-model="checkList" @change="setmealSelect">
|
|
|
|
<el-checkbox label="全部"></el-checkbox>
|
|
|
|
<el-checkbox label="全部"></el-checkbox>
|
|
|
|
<el-checkbox label="已执法"></el-checkbox>
|
|
|
|
<el-checkbox label="已检查"></el-checkbox>
|
|
|
|
<el-checkbox label="未执法"></el-checkbox>
|
|
|
|
<el-checkbox label="未检查"></el-checkbox>
|
|
|
|
</el-checkbox-group>
|
|
|
|
</el-checkbox-group>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -83,8 +83,8 @@
|
|
|
|
header-align="center"
|
|
|
|
header-align="center"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column prop="state" label="状态" header-align="center">
|
|
|
|
<!-- <el-table-column prop="state" label="状态" header-align="center">
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column> -->
|
|
|
|
<el-table-column label="操作" header-align="center">
|
|
|
|
<el-table-column label="操作" header-align="center">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<div class="tabs-btns">
|
|
|
|
<div class="tabs-btns">
|
|
|
@ -151,6 +151,8 @@ export default {
|
|
|
|
loads: true,
|
|
|
|
loads: true,
|
|
|
|
total: 0,
|
|
|
|
total: 0,
|
|
|
|
options: [],
|
|
|
|
options: [],
|
|
|
|
|
|
|
|
//这个是点击搜索之前的值
|
|
|
|
|
|
|
|
district:'',
|
|
|
|
form: {
|
|
|
|
form: {
|
|
|
|
district: "",
|
|
|
|
district: "",
|
|
|
|
plannedYear: "",
|
|
|
|
plannedYear: "",
|
|
|
@ -310,11 +312,11 @@ export default {
|
|
|
|
this.filterComparment(value.children);
|
|
|
|
this.filterComparment(value.children);
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
delete value.children;
|
|
|
|
delete value.children;
|
|
|
|
return
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
shutDownDetail() {
|
|
|
|
shutDownDetail() {
|
|
|
|
this.addShow = false;
|
|
|
|
this.addShow = false;
|
|
|
|
},
|
|
|
|
},
|
|
|
@ -337,7 +339,7 @@ export default {
|
|
|
|
);
|
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
searchList() {
|
|
|
|
searchList() {
|
|
|
|
this.form.district = this.form.district[this.form.district.length-1]
|
|
|
|
this.form.district = this.district[this.district.length - 1];
|
|
|
|
this.searchBefore = Object.assign(this.searchBefore, this.form);
|
|
|
|
this.searchBefore = Object.assign(this.searchBefore, this.form);
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
},
|
|
|
|