|
|
|
@ -228,7 +228,7 @@ export default {
|
|
|
|
|
lawLevel: null,
|
|
|
|
|
lawHierarchy: null,
|
|
|
|
|
plannedMonth: null,
|
|
|
|
|
status: 1,
|
|
|
|
|
status: 0,
|
|
|
|
|
checkStatus: null,
|
|
|
|
|
checkId: null,
|
|
|
|
|
checkAgeing: null,
|
|
|
|
@ -240,6 +240,11 @@ export default {
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
let userInfo = JSON.parse(sessionStorage.getItem("USER_INFO"));
|
|
|
|
|
if (userInfo.lawLevel == "县级" || userInfo.lawLevel == "镇级") {
|
|
|
|
|
this.queryParams.district = userInfo.permissionCode;
|
|
|
|
|
this.queryPlanEnterpriseParams.district = userInfo.permissionCode;
|
|
|
|
|
}
|
|
|
|
|
this.getList();
|
|
|
|
|
this.getPlanEnterpriseList();
|
|
|
|
|
},
|
|
|
|
@ -265,8 +270,15 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
// 加入草稿箱
|
|
|
|
|
handleAddDrafts(row) {
|
|
|
|
|
// console.log("1", row);
|
|
|
|
|
this.resetPlanEnterprise();
|
|
|
|
|
|
|
|
|
|
let userInfo = JSON.parse(sessionStorage.getItem("USER_INFO"));
|
|
|
|
|
// console.log(userInfo.lawSort);
|
|
|
|
|
|
|
|
|
|
this.formPlanEnterprise.lawSort = userInfo.lawSort;
|
|
|
|
|
this.formPlanEnterprise.lawAreas = userInfo.lawAreas;
|
|
|
|
|
this.formPlanEnterprise.lawLevel = userInfo.lawLevel;
|
|
|
|
|
this.formPlanEnterprise.lawHierarchy = userInfo.userName;
|
|
|
|
|
this.formPlanEnterprise.plannedYear = this.$moment(new Date()).format(
|
|
|
|
|
"yyyy"
|
|
|
|
|
);
|
|
|
|
@ -331,7 +343,9 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
// 获取行政区划树
|
|
|
|
|
quhuadizhi(district) {
|
|
|
|
|
this.option = district;
|
|
|
|
|
// console.log(">>>>>>>>");
|
|
|
|
|
// console.log(district);
|
|
|
|
|
// console.log(">>>>>>>>");
|
|
|
|
|
},
|
|
|
|
|
// 匹配行政区划
|
|
|
|
|
componendDistrict(district) {
|
|
|
|
|