123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- {
- "easycom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "云帆视界"
- }
- },
- {
- "path": "pages/mine/personal",
- "style": {
- "navigationBarTitleText": "人员管理"
- }
- },
- {
- "path": "pages/mine/personalDetail",
- "style": {
- "navigationBarTitleText": "人员管理"
- }
- },
-
-
-
- {
- "path": "pages/mine/myOrder" //我的预约
- },
-
- {
- "path": "pages/order/order1" //预约界面
- },
-
-
- {
- "path":"pages/order/orderNews1"
-
- },
- {
- "path": "pages/order/orderResult1" //预约成功界面
- },
-
-
- {
- "path": "pages/index/phone" //手机号授权
- },
- {
- "path": "pages/analysis/more" //我的预约
- },
- {
- "path": "pages/analysis/studentMore" //我的预约
- },
-
- {
- "path": "pages/mine/orderDetail" //预约详情
- },
-
- {
- "path": "pages/index/authorize" //用户授权界面
- },
- {
- "path": "pages/index/clause" //条款界面
- },
- {
- "path": "pages/order/orderNews" //预约详情界面
- },
- {
- "path": "pages/order/orderResult" //预约结果界面
- },
- {
- "path": "pages/order/order" //预约界面
- },
-
-
- {
- "path": "pages/mine/mine", //我的界面
- "style": {
- // "navigationBarTitleText": "uni-app",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/mine/coupon" //优惠券
- },
- {
- "path": "pages/mine/message" //消息通知
- },
- {
- "path": "pages/mine/noticeDtail" //消息通知
- },
- {
- "path": "pages/mine/about" //关于我们
- },
- {
- "path": "pages/mine/bindBase" //基本信息绑定
- },
- {
- "path": "pages/mine/bindPhone" //手机号绑定
- },
- {
- "path": "pages/mine/students" //意向学员
- },
- {
- "path": "pages/mine/addStudent" ,//意向学员
- "style":{
- "navigationBarTitleText": "新增意向学员"
- }
-
- },
-
-
-
- //运营分析
- {
- "path": "pages/analysis/index",
- "style": {
- "navigationBarTitleText": "云帆视界"
- }
- },
- {
- "path": "pages/analysis/analysis",
- "style": {
- "navigationBarTitleText": "经营分析"
- }
- },
- {
- "path": "pages/analysis/studentDetail",
- "style": {
- "navigationBarTitleText": "学员管理"
- }
- },
-
- {
- "path": "pages/analysis/student",
- "style": {
- "navigationBarTitleText": "学员管理"
- }
- },
- {
- "path": "pages/analysis/collectionDetail",
- "style": {
- "navigationBarTitleText": "收款记录"//收款记录详情
- }
- },
- {
- "path": "pages/analysis/collection",
- "style": {
- "navigationBarTitleText": "收款记录"
- }
- },
- {
- "path": "pages/analysis/collectionMore",
- "style": {
- "navigationBarTitleText": "累计收款"
- }
- },
- {
- "path": "pages/analysis/orderList",
- "style": {
- "navigationBarTitleText": "预约记录"
- }
- }
- // {
- // "path": "pages/analysis/mine",
- // "style": {
- // "navigationBarTitleText": "我的"
- // }
- // }
-
- // {
- // "path": "pages/mine/personal"//个人信息界面
- // }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "云帆视界",
- "navigationBarBackgroundColor": "#605CFF",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- // "iconWidth":"1px",
- // "fontSize":"26px",
- "selectedColor": "#605CFF",
- "list": [{
- "pagePath": "pages/index/index",
- "text": "首页",
- "iconPath": "static/index.png",
- "selectedIconPath": "static/index-full.png"
- },
- {
- "pagePath": "pages/order/order1",
- "text": "预约",
- "iconPath": "static/order.png",
- "selectedIconPath": "./static/order-full.png"
- },
- {
- "pagePath": "pages/mine/mine",
- "text": "我的",
- "iconPath": "static/mine.png",
- "selectedIconPath": "static/mine-full.png"
- }
- ]
- }
- }
|