微信小程序上传
This commit is contained in:
@@ -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',
|
||||
},
|
||||
],
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user