소스 검색

宅基地优化

wulanhaote
hbao 2 년 전
부모
커밋
ab5144080c
2개의 변경된 파일18개의 추가작업 그리고 3개의 파일을 삭제
  1. +16
    -2
      src/views/onlineHome/homestead/homeApplication/proposerLite.vue
  2. +2
    -1
      src/views/onlineHome/workbench.vue

+ 16
- 2
src/views/onlineHome/homestead/homeApplication/proposerLite.vue 파일 보기

@@ -1737,8 +1737,10 @@ export default {
this.formVisible.acceptingForm.agricultureFormVisible = this.isProposeStatus(houseApplyStatus, [this.isInRoles(role, ['town_leader', 'agriculture']) ? '29' : -99, "26"]);
this.formVisible.acceptingForm.nature_resourceFormVisible = this.isProposeStatus(houseApplyStatus, [this.isInRoles(role, ['town_leader', 'nature_resource']) ? '29' : -99, "26"]);

this.formEnabled.submitEnabled = this.isProposeStatus(houseApplyStatus, ["1"]);
this.formVisible.editVisible = this.formEnabled.submitEnabled;
if(this.type !='done') {
this.formEnabled.submitEnabled = this.isProposeStatus(houseApplyStatus, ["1"]);
this.formVisible.editVisible = this.formEnabled.submitEnabled;
}

this.houseApplyUploadComp.full = true;
this.houseApplyUploadComp.readonly = true;
@@ -3177,6 +3179,9 @@ export default {
if (this.checkString(this.applicationDetail.tHouseApproveNatureOptions.approveOption)) {
return "说明不能为空";
}
if (this.checkString(this.applicationDetail.tHouseApproveNatureOptions.approveLeader)) {
return "自然资源签名不能为空";
}
return false;
},
validateAgricultureForm(pass) {
@@ -3194,6 +3199,9 @@ export default {
if (this.checkString(this.applicationDetail.tHouseApproveAgricultureOptions.approveOption)) {
return "说明不能为空";
}
if (this.checkString(this.applicationDetail.tHouseApproveAgricultureOptions.approveLeader)) {
return "农村农业部门签名不能为空";
}
// 通过时检查打勾, 农业部门
if(pass)
{
@@ -3246,12 +3254,18 @@ export default {
if (this.checkString(this.applicationDetail.tHouseApproveOtherOptions.approveOption)) {
return "说明不能为空";
}
if (this.checkString(this.applicationDetail.tHouseApproveOtherOptions.approveLeader)) {
return "其他部门签名不能为空";
}
return false;
},
validateTownForm() {
if (this.checkString(this.applicationDetail.tHouseApproveTownOptions.approveOption)) {
return "镇政府审批意见不能为空";
}
if (this.checkString(this.applicationDetail.tHouseApproveTownOptions.approveLeader)) {
return "镇政府审批签字不能为空";
}
return false;
},
validateAcceptingFormBase() {


+ 2
- 1
src/views/onlineHome/workbench.vue 파일 보기

@@ -637,7 +637,8 @@
} else if (data == 'paidExit') {
this.$router.push({ path: "/paidExit" });
} else if (data == 'arbitrationList') {
this.$router.push({ path: "/arbitrationList" });
console.log("arbitrationList");
this.$router.push({ path: "/onlineHome/arbitrationList" });
} else if (data == 'utilization') {
this.$router.push({ path: "/utilization" });
} else if (data == 'homesteadUtilize') {


불러오는 중...
취소
저장