From 5174d596731be4984420ab9d0d57c0ebb9dd3583 Mon Sep 17 00:00:00 2001
From: xyq <392009588@qq.com>
Date: Mon, 26 Jun 2023 10:42:48 +0800
Subject: [PATCH 1/2] =?UTF-8?q?=E5=AE=85=E5=9F=BA=E5=9C=B0=E4=BC=98?=
=?UTF-8?q?=E5=8C=96?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/sunVillage_info/homeApplication/proposerLite.vue | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/views/sunVillage_info/homeApplication/proposerLite.vue b/src/views/sunVillage_info/homeApplication/proposerLite.vue
index c3a3a4b4..69cf0bec 100644
--- a/src/views/sunVillage_info/homeApplication/proposerLite.vue
+++ b/src/views/sunVillage_info/homeApplication/proposerLite.vue
@@ -140,7 +140,7 @@
:on-remote-response="'data'"
/>
-
+
@@ -2090,7 +2090,6 @@ export default {
}else{
this.sysFarmer = JSON.parse(Cookies.get('user'));
}
- console.info( this.sysFarmer);
this.getFormIntent();
this.getDetail();
// this.getLandCoord();
@@ -4226,6 +4225,7 @@ export default {
for(let i in this.applicationDetail.sqrjtcyList)
{
let v = this.applicationDetail.sqrjtcyList[i];
+ console.info(v);
if (this.checkString(v.xm)) {
return "成员姓名不能为空";
}
From 0768904dc24d7210246f9d370c27d3e24467c2d3 Mon Sep 17 00:00:00 2001
From: zzl <961867786@qq.com>
Date: Mon, 26 Jun 2023 13:24:55 +0800
Subject: [PATCH 2/2] =?UTF-8?q?=E7=99=BB=E5=BD=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/utils/request.js | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/src/utils/request.js b/src/utils/request.js
index 3432e81d..01599d57 100644
--- a/src/utils/request.js
+++ b/src/utils/request.js
@@ -78,40 +78,42 @@ service.interceptors.response.use(res => {
return;
}
} catch (e) { console.log(e); }
-
+ // 农业执法
if (window.location.href.indexOf('/lawEnforcement') != -1) {
window.location.href = '/lawEnforcement/login';
return;
}
+ // 确权回头看
if (window.location.href.indexOf('/authenticRight') != -1) {
window.location.href = '/authenticRight/login';
return;
}
+ // 宅基地调查
if (window.location.href.indexOf('/homesteadSurvey') != -1) {
window.location.href = '/homesteadLogin';
return;
}
- /* 已取消此页面
- if (window.location.href.indexOf('/onlineHome') != -1) {
- window.location.href = '/zjdLogin';
- return;
- }*/
+ // 事项审批
if (window.location.href.indexOf('/yinnong') != -1) {
window.location.href = '/yinnongLogin';
return;
}
+ // 阳光村务
if (window.location.href.indexOf('/sunVillage_info/') != -1) {
window.location.href = '/sunVillage_info/login';
return;
}
+ // 两清三化
if (window.location.href.indexOf('/homestead/') != -1) {
window.location.href = '/homestead/login';
return;
}
+ // 生产托管
if (window.location.href.indexOf('/agriculturalTrusteeship') != -1){
window.location.href = '/agriculturalTrusteeship/login';
return;
}
+ // 产权交易
window.location.href = '/login';
})
})