微信小程序上传

This commit is contained in:
2026-07-12 14:45:57 +08:00
parent d271ac5b13
commit becf91da52
45 changed files with 1815 additions and 23 deletions
+49
View File
@@ -0,0 +1,49 @@
export default defineAppConfig({
pages: [
'pages/home/index',
'pages/stores/index',
'pages/benefit/index',
'pages/mine/index',
'pages/login/index',
],
window: {
backgroundTextStyle: 'light',
navigationBarBackgroundColor: '#FAF9F7',
navigationBarTitleText: '杜康好客',
navigationBarTextStyle: 'black',
backgroundColor: '#FAF9F7',
},
tabBar: {
custom: false,
color: '#999999',
selectedColor: '#A61D24',
backgroundColor: '#FFFFFF',
borderStyle: 'black',
list: [
{
pagePath: 'pages/home/index',
text: '首页',
iconPath: 'assets/tabbar/home.png',
selectedIconPath: 'assets/tabbar/home-active.png',
},
{
pagePath: 'pages/stores/index',
text: '门店',
iconPath: 'assets/tabbar/store.png',
selectedIconPath: 'assets/tabbar/store-active.png',
},
{
pagePath: 'pages/benefit/index',
text: '好客权益',
iconPath: 'assets/tabbar/benefit.png',
selectedIconPath: 'assets/tabbar/benefit-active.png',
},
{
pagePath: 'pages/mine/index',
text: '我的',
iconPath: 'assets/tabbar/mine.png',
selectedIconPath: 'assets/tabbar/mine-active.png',
},
],
},
});