|
|
@ -148,8 +148,12 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
created() {
|
|
|
|
this.$nextTick(() => {
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
|
|
|
// 查询条件
|
|
|
|
let userInfo = JSON.parse(sessionStorage.getItem("USER_INFO"));
|
|
|
|
let userInfo = JSON.parse(sessionStorage.getItem("USER_INFO"));
|
|
|
|
this.queryParams.district = userInfo.permissionCode;
|
|
|
|
// if (userInfo.lawLevel == "县级" || userInfo.lawLevel == "镇级") {
|
|
|
|
|
|
|
|
this.queryParams.district = userInfo.permissionCode;
|
|
|
|
|
|
|
|
this.queryParams.lawHierarchy = userInfo.userName;
|
|
|
|
|
|
|
|
// }
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
@ -181,7 +185,7 @@ export default {
|
|
|
|
this.$prompt("请输入月份", "编辑", {
|
|
|
|
this.$prompt("请输入月份", "编辑", {
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
inputValue: row.plannedMonth ? row.plannedMonth :plannedMonth,
|
|
|
|
inputValue: row.plannedMonth ? row.plannedMonth : plannedMonth,
|
|
|
|
inputPlaceholder: "请输入1到12的数字",
|
|
|
|
inputPlaceholder: "请输入1到12的数字",
|
|
|
|
inputPattern: /^(1[0-2]|[1-9])$/,
|
|
|
|
inputPattern: /^(1[0-2]|[1-9])$/,
|
|
|
|
inputErrorMessage: "格式不正确",
|
|
|
|
inputErrorMessage: "格式不正确",
|
|
|
|