From cfc7bf33079d6b97659e9471885a36f822edb542 Mon Sep 17 00:00:00 2001 From: liuye Date: Wed, 26 Jun 2024 15:48:44 +0800 Subject: [PATCH] =?UTF-8?q?=E9=97=A8=E5=BA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/mods/publicity/AppNotice/AppNotice.vue | 29 +-- src/project/fengdu/AppHome/AppHome.vue | 9 +- src/project/fengdu/AppMine/myStoreList.vue | 11 +- src/project/fengdu/AppMine/storeForm.vue | 16 +- src/project/fengdu/AppNotice/AppNotice.vue | 149 ++++++++++++++++ src/project/fengdu/AppStore/AppStore.vue | 7 +- src/project/fengdu/AppStore/EvaluateForm.vue | 165 ++++++------------ src/project/fengdu/AppStore/StoreDetail.vue | 18 +- .../fengdu/AppStore/components/Situation.vue | 18 +- 9 files changed, 260 insertions(+), 162 deletions(-) create mode 100644 src/project/fengdu/AppNotice/AppNotice.vue diff --git a/src/mods/publicity/AppNotice/AppNotice.vue b/src/mods/publicity/AppNotice/AppNotice.vue index 60b8caf..bbc4ccc 100644 --- a/src/mods/publicity/AppNotice/AppNotice.vue +++ b/src/mods/publicity/AppNotice/AppNotice.vue @@ -13,9 +13,6 @@
- @@ -57,9 +54,6 @@ export default { this.$hideLoading() }) }, - toAppStore() { - uni.navigateTo({url: '/pages/AppStore/AppStore'}) - } }, } @@ -113,27 +107,6 @@ export default { margin-top: 32px; } } - .footer { - position: fixed; - bottom: 0; - left: 0; - width: 100%; - padding: 20px 32px 88px 32px; - box-sizing: border-box; - background: #FFF; - z-index: 999; - .btn { - width: 100%; - height: 80px; - background: #2D7DFF; - border-radius: 40px; - font-family: PingFangSC-Medium; - font-weight: 500; - font-size: 34px; - color: #FFF; - text-align: center; - line-height: 80px; - } - } + } diff --git a/src/project/fengdu/AppHome/AppHome.vue b/src/project/fengdu/AppHome/AppHome.vue index bc469ab..4eeb2bc 100644 --- a/src/project/fengdu/AppHome/AppHome.vue +++ b/src/project/fengdu/AppHome/AppHome.vue @@ -81,7 +81,7 @@ export default { }, noticeList() { let {notices} = this - return notices?.length > 0 ? notices?.map(e => e.title) || ['暂无公告'] : ['暂无公告'] + return notices?.length > 0 ? notices?.map(e => e.taskName) || ['暂无公告'] : ['暂无公告'] } }, onReady() { @@ -97,17 +97,18 @@ export default { methods: { ...mapActions(['autoLogin', 'authCheck']), clickNotice(val) { + console.log(val) const id = this.notices[val]["id"]; if (id) { uni.navigateTo({ - url: "/mods/AppNotice/AppNotice?id=" + id + url: "../AppNotice/AppNotice?id=" + id }) } }, getNotice() { - this.$instance.post("/app/appmininotice/list", null, { + this.noticesTextList = [] + this.$instance.post("/app/apptaskmanage/list", null, { params: {size: 999}, - withoutToken: true }).then(res => { if (res?.data) { this.notices = res.data.records; diff --git a/src/project/fengdu/AppMine/myStoreList.vue b/src/project/fengdu/AppMine/myStoreList.vue index 463ad6e..4479562 100644 --- a/src/project/fengdu/AppMine/myStoreList.vue +++ b/src/project/fengdu/AppMine/myStoreList.vue @@ -12,7 +12,7 @@ + + diff --git a/src/project/fengdu/AppStore/AppStore.vue b/src/project/fengdu/AppStore/AppStore.vue index 54a8acf..d988ad8 100644 --- a/src/project/fengdu/AppStore/AppStore.vue +++ b/src/project/fengdu/AppStore/AppStore.vue @@ -19,7 +19,7 @@ export default { data() { return { tabList: [{name: '门店情况'}, {name: '我要评价'}], - tabIndex: 1, + tabIndex: 0, barStyle: { 'width': '20px', 'height': '3px', @@ -29,7 +29,10 @@ export default { } } }, - onLoad() { + onLoad(e) { + if(e.tabIndex) { + this.tabIndex = e.tabIndex + } }, methods: { change(e) { diff --git a/src/project/fengdu/AppStore/EvaluateForm.vue b/src/project/fengdu/AppStore/EvaluateForm.vue index 1b27ffe..dcb1d93 100644 --- a/src/project/fengdu/AppStore/EvaluateForm.vue +++ b/src/project/fengdu/AppStore/EvaluateForm.vue @@ -26,117 +26,42 @@
评价清单
一、正面清单
-
-
(1)、门店整洁美观
+
+
({{index+1}})、{{item.listType}}
-
- +
+
-
- +
+
-
-
(2)、有绿植安放
-
-
- - - 是 -
-
- - - 否 -
-
-
-
-
(3)、其他
-
-
- - - 是 -
-
- - - 否 -
-
-
二、负面清单
-
-
(1)、车辆乱停
+
+
({{index+1}})、{{item.listType}}
-
- +
+ - 是 + 是
-
- - +
+ +
-
-
-
-
(2)、门头凌乱
-
-
- - - 是 -
-
- - - 否 -
-
-
-
-
(3)、垃圾凌乱
-
-
- - - 是 -
-
- - - 否 -
-
-
-
-
(4)、其他
-
-
- - - 是 -
-
- - - 否 -
-
+
请填写评语…
+ placeholder-style="color: #999;font-size: 15px;"/>

0/300

@@ -156,7 +81,7 @@