+
-
-
-
-
- 男
- 女
-
-
-
-
-
-
-
+
+
+
+
+ {{ item.dictLabel }}
+
+
+
+
-
-
-
-
-
- 是
- 否
-
-
-
-
-
-
-
+
+
+
+
+
+ {{ item.dictLabel }}
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
-
-
-
-
-
-
保存
+
+
+
+
+
+
+
+
保存
@@ -119,50 +111,137 @@
From cef8e204fe0de34c8f965e2af19c8dc7d8168a05 Mon Sep 17 00:00:00 2001
From: xyq <392009588@qq.com>
Date: Fri, 11 Aug 2023 14:30:13 +0800
Subject: [PATCH 04/15] =?UTF-8?q?=E9=98=B3=E5=85=89=E6=9D=91=E5=8A=A1?=
=?UTF-8?q?=E5=AE=85=E5=9F=BA=E5=9C=B0=E4=BC=98=E5=8C=96?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/router/index.js | 27 +
src/views/homesteadSurvey/add.vue | 6 +
src/views/homesteadSurvey/fsssAdd.vue | 4 +
src/views/homesteadSurvey/zrzAdd.vue | 5 +
.../sunVillage_info/paidExit/paidExitList.vue | 8 +-
.../homestead/circulation/circulationAdd.vue | 46 +-
.../circulation/circulationDetail.vue | 46 +-
.../homestead/circulation/circulationList.vue | 52 +-
.../circulation/circulationModify.vue | 46 +-
.../homestead/freeExit/freeExitAdd.vue | 2 +-
.../homestead/freeExit/freeExitDetail.vue | 2 +-
.../homestead/freeExit/freeExitList.vue | 2 +-
.../homestead/freeExit/freeExitModify.vue | 2 +-
.../homeApplication/applicationGsList.vue | 4 +-
.../homeApplication/applicationList.vue | 363 +-
.../homeApplication/proposerLite.vue | 5287 +++++++++++++++++
.../homestead/paidExit/paidExitAdd.vue | 726 +++
.../homestead/paidExit/paidExitDetail.vue | 4 +-
.../homestead/paidExit/paidExitList.vue | 39 +-
.../homestead/paidExit/paidExitModify.vue | 634 ++
.../homestead/paidUtilize/paidUtilizeAdd.vue | 47 +-
.../paidUtilize/paidUtilizeDteail.vue | 47 +-
.../homestead/paidUtilize/paidUtilizeList.vue | 52 +-
.../paidUtilize/paidUtilizeModify.vue | 47 +-
24 files changed, 7195 insertions(+), 303 deletions(-)
create mode 100644 src/views/yinnong/homestead/homeApplication/proposerLite.vue
create mode 100644 src/views/yinnong/homestead/paidExit/paidExitAdd.vue
create mode 100644 src/views/yinnong/homestead/paidExit/paidExitModify.vue
diff --git a/src/router/index.js b/src/router/index.js
index 85553089..2e5fd561 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -852,6 +852,24 @@ export const constantRoutes = [
},
component: (resolve) => require(['@/views/yinnong/homestead/freeExit/freeExitList'], resolve)
},
+ {
+ path: '/homesteadPaidExitAdd',
+ name: 'homesteadPaidExitAdd',
+ meta: {
+ title: '有偿退出(阳光村务)',
+ hidden: true,
+ },
+ component: (resolve) => require(['@/views/yinnong/homestead/paidExit/paidExitAdd'], resolve)
+ },
+ {
+ path: '/homesteadPaidExitModify',
+ name: 'homesteadPaidExitModify',
+ meta: {
+ title: '有偿退出(阳光村务)',
+ hidden: true,
+ },
+ component: (resolve) => require(['@/views/yinnong/homestead/paidExit/paidExitModify'], resolve)
+ },
{
path: '/paidExitAdd',
name: 'paidExitAdd',
@@ -3912,6 +3930,15 @@ export const constantRoutes = [
},
component: (resolve) => require(['@/views/sunVillage_info/homeApplication/proposerLite'], resolve)
},
+ {
+ path: '/homesteadProposerLite',
+ name: 'homesteadProposerLite',
+ meta: {
+ title: '农村宅基地申请(阳光村务)',
+ hidden: true,
+ },
+ component: (resolve) => require(['@/views/yinnong/homestead/homeApplication/proposerLite'], resolve)
+ },
{
path: '/sunVillage_info/paidExit/paidExitList',
name: 'sunVillageInfoPaidExitList',
diff --git a/src/views/homesteadSurvey/add.vue b/src/views/homesteadSurvey/add.vue
index fc19bbbc..246d896a 100644
--- a/src/views/homesteadSurvey/add.vue
+++ b/src/views/homesteadSurvey/add.vue
@@ -849,11 +849,17 @@ export default {
return;
}
if(this.form.id == null){
+
let surveyItem = JSON.parse(localStorage.getItem("surveyItem"));
+ this.$set(this.form, 'theGeomJson', JSON.parse( this.form.theGeomJson));
+ if(this.form.theGeomJson.hasOwnProperty('coordinates')) // 从后台获取的
+ this.$set(this.form, 'theGeomJson',this.form.theGeomJson.coordinates);
+ this.$set(this.form, 'theGeomJson', JSON.stringify( this.form.theGeomJson));
this.$set(this.form, 'surveyId', surveyItem.id);
addZjdzd(this.form).then(response => {
let _this =this;
getZjdzd(response.data).then((res) => {
+ console.info(res.data);
localStorage.setItem("zjdzdxxItem",JSON.stringify(res.data));
this.$toast({
icon: 'success', // 找到自己需要的图标
diff --git a/src/views/homesteadSurvey/fsssAdd.vue b/src/views/homesteadSurvey/fsssAdd.vue
index f970787d..b768c4f9 100644
--- a/src/views/homesteadSurvey/fsssAdd.vue
+++ b/src/views/homesteadSurvey/fsssAdd.vue
@@ -209,6 +209,10 @@ export default {
},
submitzjd(){
this.$refs.form.validate().then(() => {
+ this.$set(this.form, 'theGeomJson', JSON.parse( this.form.theGeomJson));
+ if(this.form.theGeomJson.hasOwnProperty('coordinates')) // 从后台获取的
+ this.$set(this.form, 'theGeomJson',this.form.theGeomJson.coordinates);
+ this.$set(this.form, 'theGeomJson', JSON.stringify( this.form.theGeomJson));
if(this.form.id == null){
addFsss(this.form).then(response => {
let _this =this
diff --git a/src/views/homesteadSurvey/zrzAdd.vue b/src/views/homesteadSurvey/zrzAdd.vue
index 636805ff..c090134f 100644
--- a/src/views/homesteadSurvey/zrzAdd.vue
+++ b/src/views/homesteadSurvey/zrzAdd.vue
@@ -243,6 +243,7 @@ export default {
let data = this.$route.query;
this.form = data;
this.zjdzdxx = JSON.parse(localStorage.getItem("zjdzdxxItem"));
+ console.info(this.zjdzdxx);
this.permission = localStorage.getItem("executePermission");
if(this.form.shyqrdbzjhm != null){
this.getList();
@@ -269,6 +270,10 @@ export default {
submitzjd(){
this.$refs.form.validate().then(() => {
if(this.form.id == null){
+ this.$set(this.form, 'theGeomJson', JSON.parse( this.form.theGeomJson));
+ if(this.form.theGeomJson.hasOwnProperty('coordinates')) // 从后台获取的
+ this.$set(this.form, 'theGeomJson',this.form.theGeomJson.coordinates);
+ this.$set(this.form, 'theGeomJson', JSON.stringify( this.form.theGeomJson));
addZrz(this.form).then(response => {
let _this =this
this.$toast({
diff --git a/src/views/sunVillage_info/paidExit/paidExitList.vue b/src/views/sunVillage_info/paidExit/paidExitList.vue
index e1973d9c..4a1ababc 100644
--- a/src/views/sunVillage_info/paidExit/paidExitList.vue
+++ b/src/views/sunVillage_info/paidExit/paidExitList.vue
@@ -28,7 +28,7 @@
@load="getList"
>
-
+
@@ -39,13 +39,13 @@
-
+
-
+
-
+
diff --git a/src/views/yinnong/homestead/circulation/circulationAdd.vue b/src/views/yinnong/homestead/circulation/circulationAdd.vue
index 1852e910..77906f99 100644
--- a/src/views/yinnong/homestead/circulation/circulationAdd.vue
+++ b/src/views/yinnong/homestead/circulation/circulationAdd.vue
@@ -1,15 +1,9 @@
-
-
- 添加宅基地使用权流转
-
-
+
转出方信息
@@ -641,6 +635,38 @@
diff --git a/src/views/yinnong/homestead/paidExit/paidExitAdd.vue b/src/views/yinnong/homestead/paidExit/paidExitAdd.vue
new file mode 100644
index 00000000..e5d4b01d
--- /dev/null
+++ b/src/views/yinnong/homestead/paidExit/paidExitAdd.vue
@@ -0,0 +1,726 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
申请人基本信息
+
+
+
+
+
+
+ {{item.sqrxm}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 拟申请退出宅基地
+
+
+
+
+
+
+
+ 退出宅基地情况
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 现居住情况
+
+
+
+ 补偿信息
+
+
+
+
+
+ 其他
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/yinnong/homestead/paidExit/paidExitDetail.vue b/src/views/yinnong/homestead/paidExit/paidExitDetail.vue
index cf19d57c..6b370181 100644
--- a/src/views/yinnong/homestead/paidExit/paidExitDetail.vue
+++ b/src/views/yinnong/homestead/paidExit/paidExitDetail.vue
@@ -798,10 +798,9 @@
diff --git a/src/views/yinnong/homestead/paidUtilize/paidUtilizeAdd.vue b/src/views/yinnong/homestead/paidUtilize/paidUtilizeAdd.vue
index 03c48010..50b9f487 100644
--- a/src/views/yinnong/homestead/paidUtilize/paidUtilizeAdd.vue
+++ b/src/views/yinnong/homestead/paidUtilize/paidUtilizeAdd.vue
@@ -1,15 +1,9 @@
-
-
- 添加有偿使用
-
-
+
@@ -410,7 +404,38 @@
diff --git a/src/views/contracted/village/employer/employer.vue b/src/views/contracted/village/employer/employer.vue
index 6eff0d66..3410db79 100644
--- a/src/views/contracted/village/employer/employer.vue
+++ b/src/views/contracted/village/employer/employer.vue
@@ -52,19 +52,45 @@
+
+
+
+
+
+
+
+
+
@@ -308,4 +404,25 @@
margin: 2vh auto;
}
+ .signature-box {
+ border: 1px dashed #666;
+ margin: 2px 20px;
+ height: 100%;
+ /*canvas{*/
+ /* height: 100%!important;*/
+ /*}*/
+ }
+
+ .signature-footer {
+ transform: rotate(90deg);
+ width: auto;
+ position: absolute;
+ top: 50%;
+ left: 0PX;
+
+ .clearBtn {
+ margin-left: 15px;
+ }
+ }
+
From 7118109e163a5050b4e4672bde0e42b3245f7278 Mon Sep 17 00:00:00 2001
From: QI_YUJIE <2878090898@qq.com>
Date: Mon, 21 Aug 2023 16:18:54 +0800
Subject: [PATCH 11/15] =?UTF-8?q?=E6=89=BF=E5=8C=85=E6=96=B9=E8=B0=83?=
=?UTF-8?q?=E6=9F=A5=E5=BC=82=E5=B8=B8=E6=8C=82=E8=B5=B7?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/contracted/cbf.js | 9 +++
.../village/contractor/contractorHeader.vue | 61 ++++++++++++++++++-
2 files changed, 68 insertions(+), 2 deletions(-)
diff --git a/src/api/contracted/cbf.js b/src/api/contracted/cbf.js
index 157ae997..ef09f270 100644
--- a/src/api/contracted/cbf.js
+++ b/src/api/contracted/cbf.js
@@ -60,3 +60,12 @@ export function contractorSignature(data) {
data: data
});
}
+
+// 调查挂起
+export function hangUp(data) {
+ return request({
+ url: '/service/cbf/hangUp',
+ method: 'post',
+ data: data
+ });
+}
diff --git a/src/views/contracted/village/contractor/contractorHeader.vue b/src/views/contracted/village/contractor/contractorHeader.vue
index 7ab7c021..3a130213 100644
--- a/src/views/contracted/village/contractor/contractorHeader.vue
+++ b/src/views/contracted/village/contractor/contractorHeader.vue
@@ -3,7 +3,7 @@
- {{ contractorName }}
签字完成异常挂起
+ {{ contractorName }}
签字完成异常挂起
@@ -30,11 +30,19 @@
+
+
+
+