| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- export default defineAppConfig({
- pages: [
- 'pages/home/index',
- 'pages/explore/index',
- 'pages/profile/index',
- 'pages/login/index',
- 'pages/login/wechat-login',
- 'pages/register/index',
- 'pages/select-activity/ActivitySelectPage',
- 'pages/schedule-list/ScheduleListPage',
- 'pages/passengers/passengers',
- 'pages/passengers/add-passenger',
- 'pages/order/index',
- 'pages/pay-success/index'
- ],
- window: {
- backgroundTextStyle: 'light',
- navigationBarBackgroundColor: '#1890ff',
- navigationBarTitleText: '小程序Starter',
- navigationBarTextStyle: 'white',
- navigationStyle: 'custom'
- },
- tabBar: {
- custom: true,
- color: "#000000",
- selectedColor: "#000000",
- backgroundColor: "#000000",
- list: [
- {
- pagePath: 'pages/home/index',
- text: '首页'
- },
- {
- pagePath: 'pages/explore/index',
- text: '发现'
- },
- {
- pagePath: 'pages/profile/index',
- text: '我的'
- }
- ]
- },
- usingComponents: {}
- })
|