From cdcf85e11c9adf4aca6a473f0ae416c0e79ae73b Mon Sep 17 00:00:00 2001 From: liuye Date: Wed, 9 Mar 2022 14:10:49 +0800 Subject: [PATCH 1/9] =?UTF-8?q?=E5=BC=82=E5=B8=B8=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/AppEpidemicSituation/UserInfo.vue | 4 ++-- src/saas/AppBackUserList/UserInfo.vue | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/apps/AppEpidemicSituation/UserInfo.vue b/src/apps/AppEpidemicSituation/UserInfo.vue index 5cef6414..e41c8ab9 100644 --- a/src/apps/AppEpidemicSituation/UserInfo.vue +++ b/src/apps/AppEpidemicSituation/UserInfo.vue @@ -102,9 +102,9 @@
-
+
异常处理情况
-
+

{{item.content}}

{{item.createTime}} diff --git a/src/saas/AppBackUserList/UserInfo.vue b/src/saas/AppBackUserList/UserInfo.vue index 299d713a..3a9080f8 100644 --- a/src/saas/AppBackUserList/UserInfo.vue +++ b/src/saas/AppBackUserList/UserInfo.vue @@ -102,9 +102,9 @@
-
+
异常处理情况
-
+

{{item.content}}

{{item.createTime}} From 4e5eda6e06e8a4c2aa9c603fc3fa8539e03ae64f Mon Sep 17 00:00:00 2001 From: changjinpeng <185154740@qq.com> Date: Wed, 9 Mar 2022 14:12:41 +0800 Subject: [PATCH 2/9] 28152 --- src/apps/AppWorkonline/Detail.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/apps/AppWorkonline/Detail.vue b/src/apps/AppWorkonline/Detail.vue index 3801a8d7..0ce435e6 100644 --- a/src/apps/AppWorkonline/Detail.vue +++ b/src/apps/AppWorkonline/Detail.vue @@ -101,7 +101,10 @@ {{ $dict.getLabel(items.dictionaryCode, items.fieldValue) }} - {{ $dict.getLabel(items.dictionaryCode, itemL) }} + + , + {{ $dict.getLabel(items.dictionaryCode, itemL) }} +
From 67663ff4bbcf1a7e54a4800c20ae16ec7fb9824c Mon Sep 17 00:00:00 2001 From: liuye Date: Wed, 9 Mar 2022 14:21:21 +0800 Subject: [PATCH 3/9] =?UTF-8?q?=E7=A7=AF=E5=88=86=E8=B6=85=E5=B8=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apps/AppSuperMarket/AppSuperMarket.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/apps/AppSuperMarket/AppSuperMarket.vue b/src/apps/AppSuperMarket/AppSuperMarket.vue index db1712eb..c3339d80 100644 --- a/src/apps/AppSuperMarket/AppSuperMarket.vue +++ b/src/apps/AppSuperMarket/AppSuperMarket.vue @@ -121,7 +121,13 @@ export default { }, onLoad() { - // this.getList() + this.areaId = this.user.areaId + if(/[^0]0{0,2}$/.test(this.areaId)) { + this.isAreaId = true + this.getList() + }else { + this.isAreaId = false + } this.areaName = this.user.areaName || '' }, onShow() { From 264b4aac7f3bb899987dcb3ffbda606e42813388 Mon Sep 17 00:00:00 2001 From: changjinpeng <185154740@qq.com> Date: Wed, 9 Mar 2022 14:24:29 +0800 Subject: [PATCH 4/9] 28157 --- src/apps/AppEpidemicSituation/UserDetail.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/AppEpidemicSituation/UserDetail.vue b/src/apps/AppEpidemicSituation/UserDetail.vue index b7c43973..970732e0 100644 --- a/src/apps/AppEpidemicSituation/UserDetail.vue +++ b/src/apps/AppEpidemicSituation/UserDetail.vue @@ -110,7 +110,7 @@
异常解除时间
-
{{ userList.releaseTime && userList.releaseTime.substring(0, 10) }}
+
{{ userList.releaseTime }}
From be97e8962d430add7f0f21e42df902d1c7af8b98 Mon Sep 17 00:00:00 2001 From: aixianling Date: Wed, 9 Mar 2022 14:39:44 +0800 Subject: [PATCH 5/9] BUG 28145 --- src/apps/AppMeetingNotice/detail.vue | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/src/apps/AppMeetingNotice/detail.vue b/src/apps/AppMeetingNotice/detail.vue index 1cad7d21..86036e41 100644 --- a/src/apps/AppMeetingNotice/detail.vue +++ b/src/apps/AppMeetingNotice/detail.vue @@ -116,6 +116,7 @@ export default { }, onLoad(opt) { this.id = opt.id; + document.title = "会议详情"; }, computed: { ...mapState(["user"]), @@ -279,23 +280,13 @@ export default { justify-content: space-between; background-color: #ffffff; box-sizing: border-box; - padding: 0 50px; + padding: 112px 50px 0; border-bottom: 1px solid #E4E5E6; .left { display: flex; align-items: center; - &:after { - content: ""; - position: absolute; - right: 0; - bottom: 0; - width: 622px; - height: 2px; - background-color: rgba(216, 221, 230, 0.5); - } - .name { font-size: 30px; font-weight: 600; From 1af5986b1be029aa1fb8c0a91c742d22cc1090d2 Mon Sep 17 00:00:00 2001 From: aixianling Date: Wed, 9 Mar 2022 14:40:40 +0800 Subject: [PATCH 6/9] =?UTF-8?q?=E5=BC=82=E5=B8=B8=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/saas/AppMeetingNotice/detail.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/saas/AppMeetingNotice/detail.vue b/src/saas/AppMeetingNotice/detail.vue index d746c2a5..6fcf8b11 100644 --- a/src/saas/AppMeetingNotice/detail.vue +++ b/src/saas/AppMeetingNotice/detail.vue @@ -235,6 +235,7 @@ export default { }, onShow() { + document.title = "会议详情"; this.$dict.load("meetStatus"); wx.hideOptionMenu(); }, From af811ab08ec91e569ed5a3234a383ee296779df3 Mon Sep 17 00:00:00 2001 From: liuye Date: Wed, 9 Mar 2022 14:44:39 +0800 Subject: [PATCH 7/9] 28158 --- src/apps/AppSuperMarket/Search.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/AppSuperMarket/Search.vue b/src/apps/AppSuperMarket/Search.vue index c7dd9bb6..9cca8c1d 100644 --- a/src/apps/AppSuperMarket/Search.vue +++ b/src/apps/AppSuperMarket/Search.vue @@ -1,7 +1,7 @@