123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path" : "pages/index/index",
- "style" :
- {
- "navigationStyle": "custom",
- "navigationBarTitleText": "",
- "enablePullDownRefresh": true
- }
- },
- {
- "path" : "pages/addExpense/addExpense",
- "style": {
- "navigationBarTitleText": "添加报销",
- "enablePullDownRefresh": true
- }
- },
- {
- "path" : "pages/liveSituation/liveSituation",
- "style" :
- {
- "navigationBarTitleText": "直播情况",
- "enablePullDownRefresh": true
- }
- },
- {
- "path" : "pages/mine/mine",
- "style" :
- {
- "navigationStyle": "custom",
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
-
- },
- {
- "path":"pages/login/login",
- "style": {
- "navigationStyle": "custom",//自定义头部
- "navigationBarTitleText": "授权登录"
- }
- }
- ,{
- "path" : "pages/dateplan/index",
- "style" :
- {
- "navigationStyle": "custom",
- "navigationBarTitleText": "直播计划",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/selfInfo/selfInfo",
- "style" :
- {
- "navigationBarTitleText": "基础报销信息",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/addExpenseForm/addExpenseForm",
- "style" :
- {
- "navigationBarTitleText": "添加直播报销",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/dateplan/editPlan",
- "style" :
- {
- "navigationBarTitleText": "编辑直播计划",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/reimbursementList/reimbursementList",
- "style" :
- {
- "navigationBarTitleText": "我的报销",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/reimbursementList/submitApply",
- "style" :
- {
- "navigationBarTitleText": "报销申请",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/reimbursementList/audit",
- "style" :
- {
- "navigationBarTitleText": "报销审核",
- "enablePullDownRefresh": false
- }
-
- } ,{
- "path" : "pages/addExpenseFormElse/addExpenseForm",
- "style" :
- {
- "navigationBarTitleText": "添加其他报销",
- "enablePullDownRefresh": false
- }
- }
- ],
- // "subPackages":[{
- // "root":"pages/subPackages",
- // "pages":[
- // {
- // "path" : "liveDetail/liveDetail",
- // "style" :{
- // "navigationBarTitleText": "",
- // "enablePullDownRefresh": false
- // }
- // }
- // ]
- // }],
- "tabBar": {
- // "custom": true,
- "color": "#AEB2B7",
- "selectedColor": "#446EF6",
- "borderStyle": "black",
- "backgroundColor": "#202020",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "/static/tabBar/home.png",
- "selectedIconPath": "/static/tabBar/home_yes.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/dateplan/index",
- "iconPath": "/static/tabBar/dateplan.png",
- "selectedIconPath": "/static/tabBar/dateplan_yes.png",
- "text": "直播计划"
- },
- {
- "pagePath": "pages/mine/mine",
- "iconPath": "/static/tabBar/wode.png",
- "selectedIconPath": "/static/tabBar/wode_yes.png",
- "text": "我的"
- }
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "问星数据-抖音版",
- "navigationBarBackgroundColor": "#333947",
- "backgroundColor": "#333947"
- }
- }
|