f
This commit is contained in:
73
pages.config.js
Normal file
73
pages.config.js
Normal file
@@ -0,0 +1,73 @@
|
||||
import { defineUniPages } from '@uni-helper/vite-plugin-uni-pages'
|
||||
|
||||
export default defineUniPages({
|
||||
pages: [
|
||||
{ path: 'pages/index', type: 'home', layout: 'HomeLayout', style: { navigationBarTitleText: '一查查' } },
|
||||
{ path: 'pages/promote/index', layout: 'HomeLayout', style: { navigationBarTitleText: '推广' } },
|
||||
{ path: 'pages/agent/index', layout: 'HomeLayout', style: { navigationBarTitleText: '数据' } },
|
||||
{ path: 'pages/me/index', layout: 'HomeLayout', style: { navigationBarTitleText: '我的' } },
|
||||
{ path: 'pages/help/index', layout: 'PageLayout', style: { navigationBarTitleText: '帮助中心' } },
|
||||
{ path: 'pages/help/detail', layout: 'PageLayout', style: { navigationBarTitleText: '帮助详情' } },
|
||||
{ path: 'pages/help/guide', layout: 'PageLayout', style: { navigationBarTitleText: '引导指南' } },
|
||||
{ path: 'pages/register/index', layout: 'PageLayout', style: { navigationBarTitleText: '注册成为代理' } },
|
||||
{ path: 'pages/historyQuery/index', layout: 'PageLayout', style: { navigationBarTitleText: '历史查询' } },
|
||||
{ path: 'pages/report/index', layout: 'PageLayout', style: { navigationBarTitleText: '报告详情' } },
|
||||
{ path: 'pages/service/index', layout: 'PageLayout', style: { navigationBarTitleText: '客服' } },
|
||||
{ path: 'pages/agentSystemGuide/index', layout: 'PageLayout', style: { navigationBarTitleText: '代理系统指南' } },
|
||||
{ path: 'pages/userAgreement/index', layout: 'PageLayout', style: { navigationBarTitleText: '用户协议' } },
|
||||
{ path: 'pages/privacyPolicy/index', layout: 'PageLayout', style: { navigationBarTitleText: '隐私政策' } },
|
||||
{ path: 'pages/agentManageAgreement/index', layout: 'PageLayout', style: { navigationBarTitleText: '代理管理协议' } },
|
||||
{ path: 'pages/teamList/index', layout: 'PageLayout', style: { navigationBarTitleText: '我的团队' } },
|
||||
{ path: 'pages/agentUpgrade/index', layout: 'PageLayout', style: { navigationBarTitleText: '升级代理' } },
|
||||
{ path: 'pages/promoteDetails/index', layout: 'PageLayout', style: { navigationBarTitleText: '我的推广收益' } },
|
||||
{ path: 'pages/rewardsDetails/index', layout: 'PageLayout', style: { navigationBarTitleText: '下级推广收益' } },
|
||||
{ path: 'pages/invitation/index', layout: 'PageLayout', style: { navigationBarTitleText: '邀请下级代理' } },
|
||||
{ path: 'pages/promote/report', layout: 'PageLayout', style: { navigationBarTitleText: '推广报告' } },
|
||||
{ path: 'pages/withdrawDetails/index', layout: 'PageLayout', style: { navigationBarTitleText: '提现记录' } },
|
||||
// #ifdef MP-WEIXIN
|
||||
{ path: 'pages/upgradeSubordinate/index', layout: 'PageLayout', style: { navigationBarTitleText: '调整下级级别' } },
|
||||
// #endif
|
||||
],
|
||||
globalStyle: {
|
||||
backgroundColor: '@bgColor',
|
||||
backgroundColorBottom: '@bgColorBottom',
|
||||
backgroundColorTop: '@bgColorTop',
|
||||
backgroundTextStyle: '@bgTxtStyle',
|
||||
navigationBarBackgroundColor: '#000000',
|
||||
navigationBarTextStyle: '@navTxtStyle',
|
||||
navigationBarTitleText: '一查查',
|
||||
},
|
||||
tabBar: {
|
||||
color: '#999',
|
||||
selectedColor: '#1989fa',
|
||||
backgroundColor: '#fff',
|
||||
borderStyle: 'black',
|
||||
list: [
|
||||
{
|
||||
pagePath: 'pages/index',
|
||||
text: '首页',
|
||||
iconPath: '/static/homelayout/index.png',
|
||||
selectedIconPath: '/static/homelayout/index_active.png',
|
||||
},
|
||||
{
|
||||
pagePath: 'pages/promote/index',
|
||||
text: '推广',
|
||||
iconPath: '/static/homelayout/promote.png',
|
||||
selectedIconPath: '/static/homelayout/promote_active.png',
|
||||
},
|
||||
{
|
||||
pagePath: 'pages/agent/index',
|
||||
text: '数据',
|
||||
iconPath: '/static/homelayout/promote.png',
|
||||
selectedIconPath: '/static/homelayout/promote_active.png',
|
||||
},
|
||||
{
|
||||
pagePath: 'pages/me/index',
|
||||
text: '我的',
|
||||
iconPath: '/static/homelayout/me.png',
|
||||
selectedIconPath: '/static/homelayout/me_active.png',
|
||||
},
|
||||
],
|
||||
},
|
||||
subPackages: [],
|
||||
})
|
||||
Reference in New Issue
Block a user