From 7bf303d2d3656f31654145dcbf77be479f8fdbd2 Mon Sep 17 00:00:00 2001 From: gongfuxiang Date: Thu, 21 Apr 2022 12:07:36 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E9=97=A8=E5=BA=97=E8=AF=A6?= =?UTF-8?q?=E6=83=85=E9=A1=B6=E9=83=A8=E8=BF=94=E5=9B=9E=E6=8C=89=E9=92=AE?= =?UTF-8?q?=E5=BC=80=E5=85=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App.vue | 4 +++- pages/plugins/realstore/detail/detail.vue | 8 +++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/App.vue b/App.vue index 5f92a17d..1e6666bd 100644 --- a/App.vue +++ b/App.vue @@ -36,7 +36,9 @@ // 分享及转发使用页面设置的默认图片及系统默认图片(0 否, 1 是) is_share_use_image: 1, // 商品详情页底部导航是否开启购物车功能(0 否, 1 是) - is_goods_bottom_opt_cart: 1, + is_goods_bottom_opt_cart: 1, + // 门店详情顶部导航返回按钮(0 否, 1 是) + is_realstore_top_nav_back: 1, // tabbar页面 tabbar_pages: [ "/pages/index/index", diff --git a/pages/plugins/realstore/detail/detail.vue b/pages/plugins/realstore/detail/detail.vue index ede75d82..9c76bc67 100644 --- a/pages/plugins/realstore/detail/detail.vue +++ b/pages/plugins/realstore/detail/detail.vue @@ -8,12 +8,12 @@ - + - + @@ -255,7 +255,9 @@ // 自定义分享信息 share_info: {}, // 是否单页预览 - is_single_page: app.globalData.is_current_single_page() || 0 + is_single_page: app.globalData.is_current_single_page() || 0, + // 顶部导航返回按钮 + is_realstore_top_nav_back: app.globalData.data.is_realstore_top_nav_back || 0, }; },