From 4477c8b71e6f0d7a7da62445fcf6698d09275378 Mon Sep 17 00:00:00 2001 From: youmengting <2080639302@qq.com> Date: Tue, 14 Nov 2023 16:37:26 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=AB=E7=A0=81=E6=A0=B8=E9=94=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App.vue | 9 ++- pages.json | 79 ++++++------------- .../merchant-details/merchant-details.vue | 4 +- .../index/normal-Merchant/normal-Merchant.vue | 6 +- pages/login/login.vue | 8 ++ pages/welcome/welcome.vue | 79 +++++++++++++------ .../groupVerify/groupVerify.vue | 22 ++++++ 7 files changed, 123 insertions(+), 84 deletions(-) create mode 100644 subpackages/groupBuyingConfiguration/groupVerify/groupVerify.vue diff --git a/App.vue b/App.vue index 69cc782..22be895 100644 --- a/App.vue +++ b/App.vue @@ -38,7 +38,10 @@ //接收方名称 receiverName: '', //门店地址信息 - storeAddress: '' + storeAddress: '', + accountId:'', + urlKey:'', + urlCode:'', }, onLaunch: function() { /* let that = this; @@ -61,6 +64,10 @@ this.globalData.userInfo = uni.getStorageSync("payuser") || ''; this.globalData.token = uni.getStorageSync("paytoken") || ''; this.globalData.openId = uni.getStorageSync("openId") || ''; + + this.globalData.accountId = uni.getStorageSync("accountId") || ''; + this.globalData.urlKey = uni.getStorageSync("urlKey") || ''; + this.globalData.urlCode = uni.getStorageSync("urlCode") || ''; }, onHide: function() {} } diff --git a/pages.json b/pages.json index 6ed0c08..8314c87 100644 --- a/pages.json +++ b/pages.json @@ -646,35 +646,20 @@ { "path":"groupBuyingConfiguration/groupBuyingConfiguration", "style": { - "navigationBarTitleText": "团购配置", - "enablePullDownRefresh": false, - "app-plus": { - "titleNView": false, //禁用原生导航栏 - "softinputNavBar": "none" - } + "navigationBarTitleText": "团购配置" } }, { "path":"groupBuyingConfiguration/storeImg/storeImg", "style": { - "navigationBarTitleText": "门店图片", - "enablePullDownRefresh": false, - "app-plus": { - "titleNView": false, //禁用原生导航栏 - "softinputNavBar": "none" - } + "navigationBarTitleText": "门店图片" } }, { "path":"groupBuyingConfiguration/storeImg/storeImgAdd", "style": { - "navigationBarTitleText": "添加图片", - "enablePullDownRefresh": false, - "app-plus": { - "titleNView": false, //禁用原生导航栏 - "softinputNavBar": "none" - } + "navigationBarTitleText": "添加图片" } }, @@ -682,67 +667,49 @@ "path":"groupBuyingConfiguration/storeProduct/storeProduct", "style": { - "navigationBarTitleText": "门店产品", - "enablePullDownRefresh": false, - "app-plus": { - "titleNView": false, //禁用原生导航栏 - "softinputNavBar": "none" - } + "navigationBarTitleText": "门店产品" } }, { "path":"groupBuyingConfiguration/storeProduct/storeProductAdd", "style": { - "navigationBarTitleText": "", - "enablePullDownRefresh": false, - "app-plus": { - "titleNView": false, //禁用原生导航栏 - "softinputNavBar": "none" - } + "navigationBarTitleText": "" } },{ "path":"groupBuyingConfiguration/groupProduct/groupProduct", "style": { - "navigationBarTitleText": "团购产品", - "enablePullDownRefresh": false, - "app-plus": { - "titleNView": false, //禁用原生导航栏 - "softinputNavBar": "none" - } + "navigationBarTitleText": "团购产品" } },{ "path":"groupBuyingConfiguration/groupProduct/groupProductAdd", "style": { - "navigationBarTitleText": "", - "enablePullDownRefresh": false, - "app-plus": { - "titleNView": false, //禁用原生导航栏 - "softinputNavBar": "none" - } + "navigationBarTitleText": "" } }, { "path":"groupBuyingConfiguration/storeMessage/storeMessage", "style": { - "navigationBarTitleText": "门店信息", - "enablePullDownRefresh": false, - "app-plus": { - "titleNView": false, //禁用原生导航栏 - "softinputNavBar": "none" - } - } - } - - - - - + "navigationBarTitleText": "门店信息" + } + }, + { + "path":"groupBuyingConfiguration/groupVerify/groupVerify", + "style": { + "navigationBarTitleText": "核销订单", + "enablePullDownRefresh": false + } + } + ] }], "globalStyle": { "navigationBarTextStyle": "black", "navigationBarTitleText": "uni-app", "navigationBarBackgroundColor": "#F8F8F8", - "backgroundColor": "#F8F8F8" + "backgroundColor": "#F8F8F8", + "app-plus": { + "titleNView": false, //禁用原生导航栏 + "softinputNavBar": "none" + } } } \ No newline at end of file diff --git a/pages/index/merchant-details/merchant-details.vue b/pages/index/merchant-details/merchant-details.vue index 331cbea..9939fa0 100644 --- a/pages/index/merchant-details/merchant-details.vue +++ b/pages/index/merchant-details/merchant-details.vue @@ -54,7 +54,7 @@ - + {{item.name}} {{item.updateTime | timeFormat('yyyy-mm-dd')}} @@ -93,7 +93,7 @@ - + diff --git a/pages/index/normal-Merchant/normal-Merchant.vue b/pages/index/normal-Merchant/normal-Merchant.vue index e927d93..227e2de 100644 --- a/pages/index/normal-Merchant/normal-Merchant.vue +++ b/pages/index/normal-Merchant/normal-Merchant.vue @@ -1,5 +1,5 @@