|
|
@ -56,11 +56,11 @@
|
|
|
|
<el-form-item label="执法层级" prop="lawHierarchy">
|
|
|
|
<el-form-item label="执法层级" prop="lawHierarchy">
|
|
|
|
<el-select
|
|
|
|
<el-select
|
|
|
|
v-model="queryParams.lawHierarchy"
|
|
|
|
v-model="queryParams.lawHierarchy"
|
|
|
|
|
|
|
|
placeholder="请选择执法层级"
|
|
|
|
filterable
|
|
|
|
filterable
|
|
|
|
placeholder="请选择"
|
|
|
|
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<el-option
|
|
|
|
<el-option
|
|
|
|
v-for="item in lawHierarchys"
|
|
|
|
v-for="item in dict.type.dict_law_hierarchy"
|
|
|
|
:key="item.value"
|
|
|
|
:key="item.value"
|
|
|
|
:label="item.label"
|
|
|
|
:label="item.label"
|
|
|
|
:value="item.value"
|
|
|
|
:value="item.value"
|
|
|
@ -199,6 +199,7 @@ import { mapState } from "vuex";
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
components: { AddDialog, InfoDialog, executive, EditDialog },
|
|
|
|
components: { AddDialog, InfoDialog, executive, EditDialog },
|
|
|
|
|
|
|
|
dicts: ["dict_law_hierarchy"],
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
lawHierarchys: [
|
|
|
|
lawHierarchys: [
|
|
|
@ -374,6 +375,7 @@ export default {
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
resetQuery() {
|
|
|
|
resetQuery() {
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
|
|
|
|
this.plannedMonth = "";
|
|
|
|
this.$refs.executive.onClear();
|
|
|
|
this.$refs.executive.onClear();
|
|
|
|
this.handleQuery();
|
|
|
|
this.handleQuery();
|
|
|
|
},
|
|
|
|
},
|
|
|
@ -467,6 +469,7 @@ export default {
|
|
|
|
if (userInfo.lawLevel == "县级" || userInfo.lawLevel == "镇级") {
|
|
|
|
if (userInfo.lawLevel == "县级" || userInfo.lawLevel == "镇级") {
|
|
|
|
this.queryParams.district = userInfo.permissionCode;
|
|
|
|
this.queryParams.district = userInfo.permissionCode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.queryParams.plannedYear = this.$moment(new Date()).format("yyyy");
|
|
|
|
// 初始化
|
|
|
|
// 初始化
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
},
|
|
|
|