From 5e91aee82e1fbd1897fa6e5414f0f81f3ff36940 Mon Sep 17 00:00:00 2001 From: aixianling Date: Thu, 14 Jul 2022 18:00:07 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E5=AE=9A=E5=88=B6=E6=96=B9=E6=A1=88?= =?UTF-8?q?=E5=85=A8=E6=96=B0=E5=8D=87=E7=BA=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/oms/apps/develop/AppDeployCustom/add.vue | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/project/oms/apps/develop/AppDeployCustom/add.vue b/project/oms/apps/develop/AppDeployCustom/add.vue index fd9814f4..61b5ec83 100644 --- a/project/oms/apps/develop/AppDeployCustom/add.vue +++ b/project/oms/apps/develop/AppDeployCustom/add.vue @@ -100,10 +100,10 @@ export default { selectedColor: "#197DF0", backgroundColor: "#ffffff", list: [ - {pagePath: "pages/home/home", text: "首页", iconPath: "TabBar/home.png", selectedIconPath: "TabBar/home_selected.png"}, - {pagePath: "pages/service/service", text: "应用", iconPath: "TabBar/service.png", selectedIconPath: "TabBar/service_selected.png"}, + {pagePath: "pages/home/home", text: "首页", iconPath: "static/TabBar/home.png", selectedIconPath: "static/TabBar/home_selected.png"}, + {pagePath: "pages/service/service", text: "应用", iconPath: "static/TabBar/service.png", selectedIconPath: "static/TabBar/service_selected.png"}, v.form.customTabbar, - {pagePath: "pages/mine/my", text: "我的", iconPath: "TabBar/me.png", selectedIconPath: "TabBar/me_selected.png"} + {pagePath: "pages/mine/my", text: "我的", iconPath: "static/TabBar/me.png", selectedIconPath: "static/TabBar/me_selected.png"} ] }), customTabbar: { @@ -112,8 +112,8 @@ export default { id, pagePath: `pages/${name}/${name}`, text: label, - iconPath: `TabBar/custom.png`, - selectedIconPath: `TabBar/custom_selected.png` + iconPath: `static/TabBar/custom.png`, + selectedIconPath: `static/TabBar/custom_selected.png` } }, get() { @@ -182,8 +182,8 @@ export default { this.$set(this.form, 'customTabbar', customTabbar || { pagePath: "pages/AppEnteringVillage/AppEnteringVillage", text: "进村", - iconPath: "TabBar/village.png", - selectedIconPath: "TabBar/village_selected.png" + iconPath: "static/TabBar/custom.png", + selectedIconPath: "static/TabBar/custom_selected.png" }) } } From 83171370685f620f0d30020ef567b0a6749a887c Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Fri, 15 Jul 2022 10:40:02 +0800 Subject: [PATCH 2/3] 1 --- .../apps/Announce/AppAnnounce/AppAnnounce.vue | 5 + .../Announce/AppAnnounce/components/Add.vue | 4 +- .../AppAnnounce/components/Detail.vue | 495 +++++++++++++----- .../Announce/AppAnnounce/components/List.vue | 21 +- 4 files changed, 381 insertions(+), 144 deletions(-) diff --git a/project/sass/apps/Announce/AppAnnounce/AppAnnounce.vue b/project/sass/apps/Announce/AppAnnounce/AppAnnounce.vue index aef4e713..0019b70e 100644 --- a/project/sass/apps/Announce/AppAnnounce/AppAnnounce.vue +++ b/project/sass/apps/Announce/AppAnnounce/AppAnnounce.vue @@ -45,6 +45,11 @@ this.params = data.params } + if (data.type === 'Detail') { + this.component = 'Detail' + this.params = data.params + } + if (data.type === 'list') { this.component = 'List' this.params = data.params diff --git a/project/sass/apps/Announce/AppAnnounce/components/Add.vue b/project/sass/apps/Announce/AppAnnounce/components/Add.vue index e587b0fc..e5b13b0f 100644 --- a/project/sass/apps/Announce/AppAnnounce/components/Add.vue +++ b/project/sass/apps/Announce/AppAnnounce/components/Add.vue @@ -1,5 +1,5 @@