|
|
|
@ -23,8 +23,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
<div class="select-input">
|
|
|
|
|
<div class="select-span">区划:</div>
|
|
|
|
|
|
|
|
|
|
<executive @quhua="quhua" @quhuadizhi="quhuadizhi"></executive>
|
|
|
|
|
<executive @quhua="quhua" @quhuadizhi="quhuadizhi" ref="executive"></executive>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="my-checkbox">
|
|
|
|
|
<el-checkbox-group v-model="checkList" @change="setmealSelect">
|
|
|
|
@ -176,8 +175,6 @@ export default {
|
|
|
|
|
option: [],
|
|
|
|
|
loads: true,
|
|
|
|
|
total: 0,
|
|
|
|
|
//这个是点击搜索之前的值
|
|
|
|
|
district: [],
|
|
|
|
|
form: {
|
|
|
|
|
district: "",
|
|
|
|
|
plannedYear: "",
|
|
|
|
@ -340,7 +337,7 @@ export default {
|
|
|
|
|
plannedYear: "",
|
|
|
|
|
checkStatus: "",
|
|
|
|
|
};
|
|
|
|
|
// this.district = [];
|
|
|
|
|
this.$refs.executive.district = [];
|
|
|
|
|
this.searchBefore = {
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
pageNum: 1,
|
|
|
|
@ -400,12 +397,9 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
quhua(e) {
|
|
|
|
|
this.district = e;
|
|
|
|
|
this.form.district = e;
|
|
|
|
|
},
|
|
|
|
|
searchList() {
|
|
|
|
|
if (this.district) {
|
|
|
|
|
this.form.district = this.district;
|
|
|
|
|
}
|
|
|
|
|
this.searchBefore = {
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
pageNum: 1,
|
|
|
|
@ -418,8 +412,8 @@ export default {
|
|
|
|
|
this.loads = true;
|
|
|
|
|
enforcingDetail(this.searchBefore).then((res) => {
|
|
|
|
|
console.log(res);
|
|
|
|
|
this.tableData = res.data.list;
|
|
|
|
|
this.total = res.data.total;
|
|
|
|
|
this.tableData = res.rows;
|
|
|
|
|
this.total = res.total;
|
|
|
|
|
this.loads = false;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
@ -453,7 +447,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
// 页码,当前页切换事件
|
|
|
|
|
pagesChange(pages) {
|
|
|
|
|
this.searchBefore.pageNum = pages.pageNum;
|
|
|
|
|
this.searchBefore.pageNum= pages.pageNum;
|
|
|
|
|
this.searchBefore.pageSize = pages.pageSize;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|