|
|
|
@ -51,7 +51,11 @@
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="行政区划" prop="district">
|
|
|
|
|
<executive @change="onChange" @quhuadizhi="quhuadizhi" ref="executive" />
|
|
|
|
|
<executive
|
|
|
|
|
@change="onChange"
|
|
|
|
|
@quhuadizhi="quhuadizhi"
|
|
|
|
|
ref="executive"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="执法层级" prop="lawHierarchy">
|
|
|
|
|
<el-select
|
|
|
|
@ -314,7 +318,7 @@ export default {
|
|
|
|
|
methods: {
|
|
|
|
|
// 行政区划
|
|
|
|
|
onChange(e) {
|
|
|
|
|
console.log(1,e);
|
|
|
|
|
console.log(1, e);
|
|
|
|
|
this.queryParams.district = e;
|
|
|
|
|
},
|
|
|
|
|
multipleChange(e) {
|
|
|
|
@ -468,6 +472,10 @@ export default {
|
|
|
|
|
this.queryParams.district = userInfo.permissionCode;
|
|
|
|
|
}
|
|
|
|
|
this.queryParams.plannedYear = this.$moment(new Date()).format("yyyy");
|
|
|
|
|
if (this.$route.query.lawHierarchy) {
|
|
|
|
|
// console.log(this.$route.query.lawHierarchy);
|
|
|
|
|
this.queryParams.lawHierarchy = this.$route.query.lawHierarchy;
|
|
|
|
|
}
|
|
|
|
|
// 初始化
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|