From 7cc362d665c997e127cfdd5e6f1655ef1068c039 Mon Sep 17 00:00:00 2001 From: liuye Date: Fri, 11 Feb 2022 17:14:41 +0800 Subject: [PATCH 1/6] bug --- src/saas/AppBackUserList/Success.vue | 2 +- src/saas/AppHealthUp/Success.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/saas/AppBackUserList/Success.vue b/src/saas/AppBackUserList/Success.vue index d5104ff6..2d6665db 100644 --- a/src/saas/AppBackUserList/Success.vue +++ b/src/saas/AppBackUserList/Success.vue @@ -3,7 +3,7 @@

{{status ? '上报成功!' : '上报失败!'}}

- + diff --git a/src/saas/AppHealthUp/Success.vue b/src/saas/AppHealthUp/Success.vue index ef5d4a65..238d8129 100644 --- a/src/saas/AppHealthUp/Success.vue +++ b/src/saas/AppHealthUp/Success.vue @@ -3,7 +3,7 @@

{{status ? '上报成功!' : '上报失败!'}}

- + From e93aec9f7d22f9f1a2d797e21533e2dcac81c563 Mon Sep 17 00:00:00 2001 From: liuye Date: Fri, 11 Feb 2022 17:19:07 +0800 Subject: [PATCH 2/6] =?UTF-8?q?=E5=88=86=E4=BA=AB=E7=A1=AE=E5=AE=9A?= =?UTF-8?q?=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/saas/AppBackUserList/Add.vue | 4 ++-- src/saas/AppBackUserList/Success.vue | 8 ++++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/saas/AppBackUserList/Add.vue b/src/saas/AppBackUserList/Add.vue index a75bb4f5..8f9d6822 100644 --- a/src/saas/AppBackUserList/Add.vue +++ b/src/saas/AppBackUserList/Add.vue @@ -551,11 +551,11 @@ export default { if (res.code == 0) { uni.$emit("update"); setTimeout(() => { - uni.navigateTo({url: './Success?status=1'}) + uni.navigateTo({url: `./Success?status=1&corpId=${this.form.corpId}`}) }, 400); } }).catch(() => { - uni.navigateTo({url: './Success?status=0'}) + uni.navigateTo({url: `./Success?status=1&corpId=${this.form.corpId}`}) }) }, }, diff --git a/src/saas/AppBackUserList/Success.vue b/src/saas/AppBackUserList/Success.vue index 2d6665db..b5dcb9a2 100644 --- a/src/saas/AppBackUserList/Success.vue +++ b/src/saas/AppBackUserList/Success.vue @@ -3,7 +3,7 @@

{{status ? '上报成功!' : '上报失败!'}}

- + @@ -13,7 +13,8 @@ import { mapState } from 'vuex' export default { data() { return { - status: 1 + status: 1, + corpId: '' } }, onShow() { @@ -21,6 +22,9 @@ export default { }, onLoad(option) { this.status = option.status + if(option.corpId) { + this.corpId = option.corpId + } }, methods: { back() { From f20839083e9f22e81e3e141dcba6e9d1d17fe7a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8A=B1=E6=9C=89=E6=B8=85=E9=A6=99=E6=9C=88=E6=9C=89?= =?UTF-8?q?=E9=98=B4?= <185154740@qq.com> Date: Fri, 11 Feb 2022 17:25:55 +0800 Subject: [PATCH 3/6] bug --- src/saas/AppConflictMediation/List.vue | 25 +++- src/saas/AppConflictMediation/myReply.vue | 161 +++++++++++++++++++++- 2 files changed, 175 insertions(+), 11 deletions(-) diff --git a/src/saas/AppConflictMediation/List.vue b/src/saas/AppConflictMediation/List.vue index cf6a74ca..ee08e0a9 100644 --- a/src/saas/AppConflictMediation/List.vue +++ b/src/saas/AppConflictMediation/List.vue @@ -41,7 +41,13 @@ -
新增事件
+ +
+
我的上报
+ +
新增事件
+
+ @@ -140,7 +146,6 @@ export default { searchType: this.currentTabs == 1 ? '1' : '0', eventStatus: this.eventStatus, girdId: this.girdId, - openId: this.eventStatus == 4 ? this.user.openId : '', }, }) .then((res) => { @@ -407,9 +412,21 @@ uni-page-body { height: 120px; line-height: 120px; text-align: center; - background-color: #3975c6; font-size: 32px; - color: #ffffff; + display: flex; + align-items: center; + box-shadow: inset 0px 1px 0px 0px #dddddd; + z-index: 999; + .myreport { + background-color: #ffffff; + width: 40%; + color: #333; + } + .add { + background-color: #3975c6; + width: 60%; + color: #ffffff; + } } .pad-b120 { diff --git a/src/saas/AppConflictMediation/myReply.vue b/src/saas/AppConflictMediation/myReply.vue index 9415f77c..258dabba 100644 --- a/src/saas/AppConflictMediation/myReply.vue +++ b/src/saas/AppConflictMediation/myReply.vue @@ -1,25 +1,172 @@ From a6ee8130e57aec59f79c09ab7dcc484188c68ce3 Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Fri, 11 Feb 2022 17:27:07 +0800 Subject: [PATCH 4/6] bug --- src/saas/AppConflictMediation/AppConflictMediation.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/saas/AppConflictMediation/AppConflictMediation.vue b/src/saas/AppConflictMediation/AppConflictMediation.vue index 2a9cbd2d..0c531ad2 100644 --- a/src/saas/AppConflictMediation/AppConflictMediation.vue +++ b/src/saas/AppConflictMediation/AppConflictMediation.vue @@ -40,7 +40,7 @@ export default { this.isAdmin = false this.$http.post('/app/appgirdmemberinfo/checkLogOnUser').then((res) => { if (res?.data) { - if (res.data.appGirdInfo.checkType != '0') { + if (res.data.checkType != '0') { this.isAdmin = true } } From 77be19ddd48fcc09d8929ca2c5933dd0d7bb278c Mon Sep 17 00:00:00 2001 From: liuye Date: Fri, 11 Feb 2022 17:41:41 +0800 Subject: [PATCH 5/6] 27335 --- src/saas/AppBackUserList/AppBackUserList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/saas/AppBackUserList/AppBackUserList.vue b/src/saas/AppBackUserList/AppBackUserList.vue index 87a76d5a..19030b81 100644 --- a/src/saas/AppBackUserList/AppBackUserList.vue +++ b/src/saas/AppBackUserList/AppBackUserList.vue @@ -192,7 +192,7 @@ export default { this.wxInvoke(['shareAppMessage', { // title: this.params.title, // desc: this.params.tableExplain, - // imgUrl: this.params.headPicture, + imgUrl: 'https://cdn.cunwuyun.cn/dvcp/h5/back-user-share.png', link: location.origin + `/apps/AppBackUserList/add?corpId=${this.user.corpId}&arriveGirdId=${this.girdId}&arriveGirdName=${this.girdName}`, }]) }) @@ -202,7 +202,7 @@ export default { this.wxInvoke(['shareWechatMessage', { // title: this.params.title, // desc: this.params.tableExplain, - // imgUrl: this.params.headPicture, + imgUrl: 'https://cdn.cunwuyun.cn/dvcp/h5/back-user-share.png', link: location.origin + `/apps/AppBackUserList/add?corpId=${this.user.corpId}&arriveGirdId=${this.girdId}&arriveGirdName=${this.girdName}`, }]) }) From cf017a3ec229fdfaa68f3da2a71b0adb39f350d4 Mon Sep 17 00:00:00 2001 From: liuye Date: Fri, 11 Feb 2022 17:51:23 +0800 Subject: [PATCH 6/6] =?UTF-8?q?=E5=B1=85=E6=B0=91=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/saas/AppResidentDocument/Add.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/saas/AppResidentDocument/Add.vue b/src/saas/AppResidentDocument/Add.vue index 720f9770..49170f4f 100644 --- a/src/saas/AppResidentDocument/Add.vue +++ b/src/saas/AppResidentDocument/Add.vue @@ -173,8 +173,9 @@ export default { this.getDetail() }else { document.title = '新增居民' - this.form.type = option.type + this.form.type = options.type } + console.log(this.form.type) this.$dict.load('yesOrNo', 'sex', 'householdRelation', 'nation', 'education', 'maritalStatus', 'politicsStatus', 'militaryStatus', 'faithType') }, computed: {