35e87889db
- 小程序:新增 pages/cert-apply(OPC认证)、pages/park-transfer(转园);utils/profile.js 封装 /opc/certification/apply|mine、/opc/park-transfer/apply|mine;app.config 注册;首页/我的加入口 - 网站:新增 services/opcProfile.js、user/CertApply.jsx、user/ParkTransfer.jsx;App.jsx 路由 + Home.jsx 申请区入口 - 登录门复用 auth(phoneLogin/bindPhone/isAuthed);重复提交/已认证前端禁用;build:weapp + website build 通过 - 至此 申请入驻/OPC认证/转园 三条流:C端发起 → 园区端|平台端审核 → 回填用户 全链路打通 Co-Authored-By: Claude <noreply@anthropic.com>
40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
export default {
|
|
pages: [
|
|
'pages/index/index',
|
|
'pages/booking/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/scan-login/index'
|
|
],
|
|
window: {
|
|
backgroundTextStyle: 'light',
|
|
navigationBarBackgroundColor: '#05060d', // 与页面背景一致,避免导航栏与页面标题间露出背景缝隙
|
|
navigationBarTitleText: '云超服OPC · 为进化而设计',
|
|
navigationBarTextStyle: 'white',
|
|
backgroundColor: '#05060d'
|
|
},
|
|
tabBar: {
|
|
custom: true,
|
|
color: '#8a8a93',
|
|
selectedColor: '#ffd28a',
|
|
backgroundColor: '#000000',
|
|
borderStyle: 'black',
|
|
list: [
|
|
{ pagePath: 'pages/booking/index', text: '活动' },
|
|
{ pagePath: 'pages/test/index', text: '测评' },
|
|
{ pagePath: 'pages/index/index', text: '首页' },
|
|
{ pagePath: 'pages/policy/index', text: '政策' },
|
|
// { pagePath: 'pages/plan/index', text: '流程' },
|
|
{ pagePath: 'pages/mine/index', text: '我的' }
|
|
]
|
|
}
|
|
};
|