From ef4af530a2a5e69f27137c298f54d6ccfb269dd3 Mon Sep 17 00:00:00 2001 From: xyq <392009588@qq.com> Date: Thu, 21 Sep 2023 19:03:20 +0800 Subject: [PATCH 1/8] =?UTF-8?q?=E5=AE=85=E5=9F=BA=E5=9C=B0=E8=B0=83?= =?UTF-8?q?=E6=9F=A5=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/homesteadSurvey/list2.vue | 2 +- src/views/sunVillage_info/list_cbfsq.vue | 4 +++- src/views/sunVillage_info/list_cbht.vue | 25 +++++++++++++++++++----- src/views/sunVillage_info/list_fbfsq.vue | 4 +++- 4 files changed, 27 insertions(+), 8 deletions(-) diff --git a/src/views/homesteadSurvey/list2.vue b/src/views/homesteadSurvey/list2.vue index f1e8db04..77442637 100644 --- a/src/views/homesteadSurvey/list2.vue +++ b/src/views/homesteadSurvey/list2.vue @@ -56,7 +56,7 @@
- 增加外村农户 + 增加外村农户
diff --git a/src/views/sunVillage_info/list_cbfsq.vue b/src/views/sunVillage_info/list_cbfsq.vue index 62f63e99..48b9c507 100644 --- a/src/views/sunVillage_info/list_cbfsq.vue +++ b/src/views/sunVillage_info/list_cbfsq.vue @@ -11,7 +11,9 @@ - + +
{{form.cbfmc}}
+
diff --git a/src/views/sunVillage_info/list_cbht.vue b/src/views/sunVillage_info/list_cbht.vue index 4f83f96c..202b640b 100644 --- a/src/views/sunVillage_info/list_cbht.vue +++ b/src/views/sunVillage_info/list_cbht.vue @@ -32,16 +32,17 @@
-

{{item.cbhtbm}}

+

{{item.cbhtbm}}

- {{item.signingMode}}

-

{{item.signingStatus}}

+ {{item.signingMode}}

+ +

{{item.signingStatus}}

-

{{item.cbfmc}}

+

{{item.cbfmc}}

-

{{item.htzmjm.toFixed(2)}} 亩

+

{{item.htzmjm.toFixed(2)}} 亩

@@ -138,6 +139,7 @@ htqsShow:false, noticeUrl:"", fileList: [], + signingStatusData:[], listLength: '0', queryParams: { pageNum: 1, @@ -169,6 +171,9 @@ if (this.$route.query.type == 'code') { this.showBtn = false; } + this.houseGetDicts("signing_status").then((res) => { + this.signingStatusData = res.data; + }); this.height = window.screen.height * 1.28 - 20; }, methods: { @@ -197,6 +202,16 @@ }); }, + formatDict(item){ + console.info(this.signingStatusData); + let colorval = ""; + this.signingStatusData.map(function (e){ + if(item.signingStatus === e.dictLabel){ + colorval = e.remark; + } + }) + return colorval; + }, goDetail(id) { this.$router.push({ path: '/sunVillage_info/list_cbht_detail', diff --git a/src/views/sunVillage_info/list_fbfsq.vue b/src/views/sunVillage_info/list_fbfsq.vue index 4f55d878..3fc24b41 100644 --- a/src/views/sunVillage_info/list_fbfsq.vue +++ b/src/views/sunVillage_info/list_fbfsq.vue @@ -10,7 +10,9 @@

发包方授权

- + +
{{form.fbfmc}}
+
From 381037a0cdc9f25a96b8ac144bef42cf48c35689 Mon Sep 17 00:00:00 2001 From: xyq <392009588@qq.com> Date: Thu, 21 Sep 2023 19:22:33 +0800 Subject: [PATCH 2/8] =?UTF-8?q?=E5=AE=85=E5=9F=BA=E5=9C=B0=E8=B0=83?= =?UTF-8?q?=E6=9F=A5=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/sunVillage_info/list_cbht.vue | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/views/sunVillage_info/list_cbht.vue b/src/views/sunVillage_info/list_cbht.vue index 202b640b..001d6dd7 100644 --- a/src/views/sunVillage_info/list_cbht.vue +++ b/src/views/sunVillage_info/list_cbht.vue @@ -32,12 +32,11 @@
-

{{item.cbhtbm}}

-

- {{item.signingMode}}

- +

{{item.cbhtbm}}

{{item.signingStatus}}

+

+ {{item.signingMode}}

{{item.cbfmc}}

@@ -545,7 +544,7 @@ background: #ffedcd; border-radius: 8px; font-size: 24px; - color: #f8a83d; + color: #ffffff; text-align: center; line-height: 34px; flex-shrink: 0; From 105d51c2101e03ae0e34411638211b6d043d0cf3 Mon Sep 17 00:00:00 2001 From: xyq <392009588@qq.com> Date: Thu, 21 Sep 2023 19:40:32 +0800 Subject: [PATCH 3/8] =?UTF-8?q?=E6=89=BF=E5=8C=85=E7=BD=91=E7=AD=BE?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/sunVillage_info/list_cbf.vue | 28 ++++++++++++++++++------- src/views/sunVillage_info/list_cbht.vue | 5 ++--- 2 files changed, 22 insertions(+), 11 deletions(-) diff --git a/src/views/sunVillage_info/list_cbf.vue b/src/views/sunVillage_info/list_cbf.vue index 17ec70cc..e5fafb4b 100644 --- a/src/views/sunVillage_info/list_cbf.vue +++ b/src/views/sunVillage_info/list_cbf.vue @@ -22,15 +22,15 @@
- - -

{{item.cbhtbm}}

-

{{item.signingMode}}

-

{{item.signingStatus}}

+ + +

{{item.cbhtbm}}

+

{{item.signingStatus}}

+

{{item.signingMode}}

-

{{item.cbfmc}}

-

{{item.htzmjm.toFixed(2)}} 亩

+

{{item.cbfmc}}

+

{{item.htzmjm.toFixed(2)}} 亩

@@ -156,6 +156,9 @@ created() { this.height = window.screen.height * 1.28 - 20; this.getCbfInfo(); + this.houseGetDicts("signing_status").then((res) => { + this.signingStatusData = res.data; + }); // this.queryParams.cbfbm = JSON.parse(Cookies.get('user')).idcard; }, methods: { @@ -260,6 +263,15 @@ this.$notify({ type: 'success', message: '删除成功' }); }); }, + formatDict(item){ + let colorval = ""; + this.signingStatusData.map(function (e){ + if(item.signingStatus === e.dictLabel){ + colorval = e.remark; + } + }) + return colorval; + }, signaImgFun(url) { this.signatureImg = url; }, @@ -511,7 +523,7 @@ background: #ffedcd; border-radius: 8px; font-size: 24px; - color: #f8a83d; + color: #ffffff; text-align: center; line-height: 34px; flex-shrink: 0; diff --git a/src/views/sunVillage_info/list_cbht.vue b/src/views/sunVillage_info/list_cbht.vue index 001d6dd7..99aae2ba 100644 --- a/src/views/sunVillage_info/list_cbht.vue +++ b/src/views/sunVillage_info/list_cbht.vue @@ -30,8 +30,8 @@
- - + +

{{item.cbhtbm}}

{{item.signingStatus}}

Date: Fri, 22 Sep 2023 09:17:34 +0800 Subject: [PATCH 4/8] json --- package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 71cde541..ea57fbd7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4281,7 +4281,7 @@ "fastclick": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/fastclick/-/fastclick-1.0.6.tgz", - "integrity": "sha512-cXyDBT4g0uWl/Xe75QspBDAgAWQ0lkPi/zgp6YFEUHj6WV6VIZl7R6TiDZhdOVU3W4ehp/8tG61Jev1jit+ztQ==", + "integrity": "sha1-FhYlsnsaWAZAWTa9qaLBkm0Gvmo=", "dev": true }, "fastparse": { @@ -4436,7 +4436,7 @@ "font-awesome.css": { "version": "4.7.2", "resolved": "https://registry.npmjs.org/font-awesome.css/-/font-awesome.css-4.7.2.tgz", - "integrity": "sha512-FIyRbig4PDY15NGzejM3b8OQ/lWvId8PHnE4CnuDtc8/YYs07cvnqLCyfvIJPwJl5SA/Rq+9jAe9W+Fr1pv0DA==" + "integrity": "sha1-B1pCARQo8gJyVO9phgx1ergWyVI=" }, "for-in": { "version": "1.0.2", @@ -12350,7 +12350,7 @@ "vue-html5-editor": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/vue-html5-editor/-/vue-html5-editor-1.1.1.tgz", - "integrity": "sha512-Ckmb8djta+XQMUQaxRcCUNBXEzjPF5p6c2nQ5ICcIuR8eYz4b0HAGzXlSDfL3ZxkrVHO2Hx0VrUORLu2Lwem4g==", + "integrity": "sha1-WRAhCoMNjI00eaHx/shHMZKqA7M=", "dev": true }, "vue-lazyload": { From 37799b39a85f1ffbfe4891ac74f8f13c959235a5 Mon Sep 17 00:00:00 2001 From: zzl <961867786@qq.com> Date: Fri, 22 Sep 2023 13:20:31 +0800 Subject: [PATCH 5/8] =?UTF-8?q?=E5=A4=9A=E4=BD=99=E6=A0=87=E7=AD=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/sunVillage_info/list_cbfsq.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/sunVillage_info/list_cbfsq.vue b/src/views/sunVillage_info/list_cbfsq.vue index 48b9c507..111ceb66 100644 --- a/src/views/sunVillage_info/list_cbfsq.vue +++ b/src/views/sunVillage_info/list_cbfsq.vue @@ -95,7 +95,7 @@

-
+ @@ -435,4 +632,128 @@ width: 50vw; transform: translate(-50%,10%); } + .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; + } + } + .member_item{ + border-radius: 30px; + background: #fff; + box-shadow: 4px 6px 5px rgba(63, 68, 75, 0.1); + padding:25px 32px; + margin-bottom: 20px; + display: flex; + align-items: center; + justify-content: space-between; + .item_left{ + flex: 1; + .item_left_tt{ + display: flex; + justify-content: space-between; + align-items: center; + font-size: 14PX; + .name{ + display: flex; + align-items: center; + font-size: 16PX; + img{ + width: 5vw; + margin-right: 2vw; + } + } + .sex{ + display: flex; + align-items: center; + img{ + width: 3vw; + margin-left: 1vw; + } + } + } + .id_card{ + display: flex; + align-items: center; + font-size: 14PX; + margin-top: 1vh; + img{ + width: 5vw; + margin-right: 2vw; + } + } + } + .item_right{ + margin-left: 15vw; + padding: 2PX 15PX; + background: #d0f4e5; + color: #2ecb8a; + border: 1px solid #8be3be; + border-radius: 30PX; + } + } + .land_item{ + border-radius: 30px; + background: #fff; + box-shadow: 4px 6px 5px rgba(63, 68, 75, 0.1); + padding:25px 32px; + margin-bottom: 20px; + font-size: 14PX; + .item_tt{ + display: flex; + justify-content: space-between; + align-items: center; + p:first-child{ + font-size: 16PX; + color: #333333; + } + p:last-child{ + color: #44e4a3; + } + } + .item_type{ + display: flex; + justify-content: space-between; + align-items: center; + color:#5f5f5f; + margin-top: 1vh; + p:nth-child(1){ + color: #fb9627; + border: 1px solid #fb9627; + padding: 0 10PX; + border-radius: 50PX; + } + span{ + color: #ffffff; + background: #fb9627; + border-radius: 100%; + display: inline-block; + width: 15PX; + height: 15PX; + line-height: 15PX; + font-size: 12PX; + margin-right: 5PX; + } + } + .item_direction{ + display: flex; + justify-content: space-between; + align-items: center; + color:#5f5f5f; + margin-top: 1vh; + } + } diff --git a/src/views/sunVillage_info/list_cbfsq_view.vue b/src/views/sunVillage_info/list_cbfsq_view.vue new file mode 100644 index 00000000..a901162e --- /dev/null +++ b/src/views/sunVillage_info/list_cbfsq_view.vue @@ -0,0 +1,637 @@ + + + + + diff --git a/src/views/sunVillage_info/list_cbht.vue b/src/views/sunVillage_info/list_cbht.vue index 99aae2ba..3f876469 100644 --- a/src/views/sunVillage_info/list_cbht.vue +++ b/src/views/sunVillage_info/list_cbht.vue @@ -350,7 +350,7 @@ // 签署合同下载 handleDownload(id) { this.$dialog.confirm({ - message: '是否确认下载签署合同?', + message: '是否下载承包合同?', }).then(() => { // on confirm signedContractDownload(id).then(res => { diff --git a/src/views/sunVillage_info/list_contractor.vue b/src/views/sunVillage_info/list_contractor.vue index 1a227983..164d724a 100644 --- a/src/views/sunVillage_info/list_contractor.vue +++ b/src/views/sunVillage_info/list_contractor.vue @@ -95,9 +95,9 @@ }, detailsClick(item){ if(this.$route.query.sqStatus){ - this.$router.push({path:'/sunVillage_info/list_cbfsq',query:{id:item.id,sqStatus:true}}) + this.$router.push({path:'/sunVillage_info/list_cbfsq_view',query:{id:item.id,sqStatus:true}}) }else{ - this.$router.push({path:'/sunVillage_info/list_cbfsq',query:{id:item.id,shStatus:true}}) + this.$router.push({path:'/sunVillage_info/list_cbfsq_view',query:{id:item.id,shStatus:true}}) } }, onRefreshContractor(){ From 929ca21ae459334c21c85bc1e20347642408e5ca Mon Sep 17 00:00:00 2001 From: QI_YUJIE <2878090898@qq.com> Date: Mon, 25 Sep 2023 10:58:16 +0800 Subject: [PATCH 8/8] =?UTF-8?q?=E6=89=BF=E5=8C=85=E5=90=88=E5=90=8C?= =?UTF-8?q?=E7=AD=BE=E5=AD=97=E5=AE=8C=E6=88=90=E6=95=B0=E9=87=8F=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sunVillage_info/list_contract_signature.vue | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/views/sunVillage_info/list_contract_signature.vue b/src/views/sunVillage_info/list_contract_signature.vue index 237d3a82..ae7f763a 100644 --- a/src/views/sunVillage_info/list_contract_signature.vue +++ b/src/views/sunVillage_info/list_contract_signature.vue @@ -91,7 +91,19 @@
-

已完成

+

签字完成

+

{{form.signCompletedRatio}}

+
+

{{form.signCompletedCount}}

+

批量归档 >

+ + +
+
+
+ +
+

归档完成

{{form.htywcfsbfb}}

{{form.htywcfs}}