From c02e7a8fe42de2a5796e95e573f9e6b6735e4d0d Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期二, 25 三月 2025 17:06:43 +0800 Subject: [PATCH] fix: 四期需求 --- apps/taro/src/app.config.ts | 47 +++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 45 insertions(+), 2 deletions(-) diff --git a/apps/taro/src/app.config.ts b/apps/taro/src/app.config.ts index c23c86c..e1768bf 100644 --- a/apps/taro/src/app.config.ts +++ b/apps/taro/src/app.config.ts @@ -1,3 +1,32 @@ +console.log('process.env.TARO_ENV', process.env.TARO_ENV); + +const tabberConifg = + process.env.TARO_ENV === 'h5' + ? ({} as any) + : { + tabBar: { + list: [ + { + pagePath: 'pages/home/index', + iconPath: 'assets/tabbar/icon-home.png', + selectedIconPath: 'assets/tabbar/icon-home-active.png', + text: '棣栭〉', + }, + { + pagePath: 'pages/mine/index', + iconPath: 'assets/tabbar/icon-mine.png', + selectedIconPath: 'assets/tabbar/icon-mine-active.png', + text: '鎴戠殑', + }, + ], + color: '#333', + selectedColor: '#3a71ff', + backgroundColor: '#fff', + borderStyle: 'black', + custom: true, + }, + }; + export default defineAppConfig({ entryPagePath: 'pages/home/index', pages: ['pages/home/index', 'pages/mine/index'], @@ -60,15 +89,29 @@ 'selectPayType/selectPayType', 'rechargeResult/rechargeResult', 'rechargeElectricResult/rechargeElectricResult', + 'rechargeGasResult/rechargeGasResult', ], }, { root: 'subpackages/order', - pages: ['order/order', 'orderApplyRefund/orderApplyRefund'], + pages: [ + 'order/order', + 'orderApplyRefund/orderApplyRefund', + 'orderRefundResult/orderRefundResult', + ], }, { root: 'subpackages/userAccount', - pages: ['userAccountList/userAccountList'], + pages: [ + 'userAccountList/userAccountList', + 'editGasUserAccount/editGasUserAccount', + 'editPhoneUserAccount/editPhoneUserAccount', + 'editElectricUserAccount/editElectricUserAccount', + ], + }, + { + root: 'subpackages/my', + pages: ['shareQrcode/shareQrcode', 'dashboard/dashboard'], }, ], // preloadRule: { -- Gitblit v1.9.1