|
|
@ -9,6 +9,7 @@
|
|
|
|
placeholder="请选择"
|
|
|
|
placeholder="请选择"
|
|
|
|
:options="xzList"
|
|
|
|
:options="xzList"
|
|
|
|
:props="props"
|
|
|
|
:props="props"
|
|
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
>
|
|
|
|
</el-cascader>
|
|
|
|
</el-cascader>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -201,10 +202,10 @@ export default {
|
|
|
|
uscCode: "",
|
|
|
|
uscCode: "",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
props: {
|
|
|
|
value: "county",
|
|
|
|
value: "subdistrict",
|
|
|
|
label: "institutionName",
|
|
|
|
label: "institutionName",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
xzqh:'',
|
|
|
|
searchBefore: {
|
|
|
|
searchBefore: {
|
|
|
|
pageSize: 10,
|
|
|
|
pageSize: 10,
|
|
|
|
pageNum: 1,
|
|
|
|
pageNum: 1,
|
|
|
@ -334,9 +335,9 @@ export default {
|
|
|
|
value: "",
|
|
|
|
value: "",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
],
|
|
|
|
addShow:false,
|
|
|
|
addShow: false,
|
|
|
|
details:null,
|
|
|
|
details: null,
|
|
|
|
detailLoad:true,
|
|
|
|
detailLoad: true,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
created() {
|
|
|
@ -367,8 +368,10 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
getDict() {
|
|
|
|
getDict() {
|
|
|
|
xzTree().then((res1) => {
|
|
|
|
xzTree().then((res1) => {
|
|
|
|
|
|
|
|
console.log(res1);
|
|
|
|
this.xzList = res1.data;
|
|
|
|
this.xzList = res1.data;
|
|
|
|
this.filterComparment(this.xzList);
|
|
|
|
this.filterComparment(this.xzList);
|
|
|
|
|
|
|
|
console.log(this.xzList);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
listDist({
|
|
|
|
listDist({
|
|
|
|
list: "economic_categories,category,major_hazard_level,entpr_color",
|
|
|
|
list: "economic_categories,category,major_hazard_level,entpr_color",
|
|
|
@ -376,7 +379,6 @@ export default {
|
|
|
|
this.options = res.data;
|
|
|
|
this.options = res.data;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
filterComparment(e) {
|
|
|
|
filterComparment(e) {
|
|
|
|
e.forEach((value, index) => {
|
|
|
|
e.forEach((value, index) => {
|
|
|
|
if (value.children.length >= 1) {
|
|
|
|
if (value.children.length >= 1) {
|
|
|
@ -391,7 +393,7 @@ export default {
|
|
|
|
if (this.form.subdistrict) {
|
|
|
|
if (this.form.subdistrict) {
|
|
|
|
this.form.subdistrict = this.form.subdistrict[1];
|
|
|
|
this.form.subdistrict = this.form.subdistrict[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.searchBefore ={...this.searchBefore, ...this.form};
|
|
|
|
this.searchBefore = { ...this.searchBefore, ...this.form };
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
chongzhiList() {
|
|
|
|
chongzhiList() {
|
|
|
@ -418,7 +420,6 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
getList() {
|
|
|
|
getList() {
|
|
|
|
this.load1 = true;
|
|
|
|
this.load1 = true;
|
|
|
|
|
|
|
|
|
|
|
|
businessList(this.searchBefore).then((res) => {
|
|
|
|
businessList(this.searchBefore).then((res) => {
|
|
|
|
this.tableData = res.data.list;
|
|
|
|
this.tableData = res.data.list;
|
|
|
|
this.total = res.data.total;
|
|
|
|
this.total = res.data.total;
|
|
|
|