67f66abbc4
- mine 页:我的服务宫格(报名/任务/园区/认证)+账号绑定状态卡(手机号/微信/小程序)+身份标签;pickUser 持久化 wxBound/wxMiniBound/account_type_label - 新增子页 my-bookings/my-tasks/my-park/my-cert(复用 getMyBookings/getMyTasks/getMyAdmission/getOpCertMine) - app.config 注册 4 子页;build:weapp 通过
47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
export default {
|
|
pages: [
|
|
'pages/booking/index',
|
|
'pages/index/index',
|
|
'pages/test/index',
|
|
'pages/policy/index',
|
|
'pages/plan/index',
|
|
'pages/survey/index',
|
|
'pages/mine/index',
|
|
'pages/event-detail/index',
|
|
'pages/scan/index',
|
|
'pages/park-apply/index',
|
|
'pages/cert-apply/index',
|
|
'pages/park-transfer/index',
|
|
'pages/content/index',
|
|
'pages/content-detail/index',
|
|
'pages/tasks/index',
|
|
'pages/task-detail/index',
|
|
'pages/scan-login/index',
|
|
'pages/my-bookings/index',
|
|
'pages/my-tasks/index',
|
|
'pages/my-park/index',
|
|
'pages/my-cert/index'
|
|
],
|
|
window: {
|
|
backgroundTextStyle: 'light',
|
|
navigationBarBackgroundColor: '#f7f9ff', // Soft UI 浅色,避免导航栏与页面标题间露出背景缝隙
|
|
navigationBarTitleText: '云超服OPC · 为进化而设计',
|
|
navigationBarTextStyle: 'black',
|
|
backgroundColor: '#f7f9ff'
|
|
},
|
|
tabBar: {
|
|
custom: true,
|
|
color: '#8a8a93',
|
|
selectedColor: '#6284ff',
|
|
backgroundColor: '#ffffff',
|
|
borderStyle: 'white',
|
|
list: [
|
|
{ pagePath: 'pages/booking/index', text: '活动' },
|
|
{ pagePath: 'pages/test/index', text: '测评' },
|
|
{ pagePath: 'pages/index/index', text: '首页' },
|
|
{ pagePath: 'pages/content/index', text: '资讯' },
|
|
{ pagePath: 'pages/mine/index', text: '我的' }
|
|
]
|
|
}
|
|
};
|