| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- {
- "easycom": {
- "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",//首页
- "style":{
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/gen/index",//个人资料
- "style":{
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/service/index",//客服
- "style":{
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/mine/index",//个人中心
- "style":{
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/login/index" //登录
- }
- ],
- "subPackages": [{
- "root": "pagesA",
- "pages": [{
- "path": "index/detail" //拍品详情
- },
- {
- "path": "index/confirmAuction" //确认竞拍
- },
- {
- "path": "index/auctionList" //竞拍记录
- },
- {
- "path": "gen/perfectData" //完善资料
- },
- {
- "path": "gen/myBank" //我的银行卡
- },
- {
- "path": "gen/about"//关于
- },
- {
- "path": "mine/auction" //竞拍
- },
- {
- "path": "mine/recharge" //充值
- },
- {
- "path": "mine/withdraw" //提现
- },
- {
- "path": "mine/transfer" //转账
- },
- {
- "path": "mine/addBank" //添加银行卡
- },
- {
- "path": "mine/sealAccount" //拍卖保证金账户
- },
- {
- "path": "mine/shoppingAccount" //购物宝账户
- },
- {
- "path": "mine/equityAccount" //股权账户
- },
- {
- "path": "mine/notice" //公告
- },
- {
- "path": "mine/noticeDetail" //公告详情
- },
- {
- "path": "mine/myFans" //我的粉丝
- },
- {
- "path": "mine/invite" //邀请好友
- },
- {
- "path": "mine/footList" //结算清单
- },
- {
- "path": "mine/commissionList" //提成列表
- },
- {
- "path": "mine/stepList" //级差列表
- },
- {
- "path": "mine/gratitudeList" //感恩奖列表
- }]
- }],
- "preloadRule": {
- "pages/index/index": {
- "network": "all",
- "packages": ["pagesA"]
- }
- },
- "tabBar": {
- "color": "#000000",
- "selectedColor": "#FF8A0D",
- "fontSize": "12px",
- "iconWidth": "22px",
- // "spacing": "6px",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/tab/home.png",
- "selectedIconPath": "static/tab/homeIn.png",
- "text": "首页"
- },{
- "pagePath": "pages/gen/index",
- "iconPath": "static/tab/gen.png",
- "selectedIconPath": "static/tab/genIn.png",
- "text": "个人资料"
- },{
- "pagePath": "pages/service/index",
- "iconPath": "static/tab/service.png",
- "selectedIconPath": "static/tab/serviceIn.png",
- "text": "客服"
- },{
- "pagePath": "pages/mine/index",
- "iconPath": "static/tab/mine.png",
- "selectedIconPath": "static/tab/mineIn.png",
- "text": "我的"
- }]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationStyle": "custom",
- "navigationBarTitleText": "三凌宝一部",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "condition" : { //模式配置,仅开发期间生效
- "current": 0, //当前激活的模式(list 的索引项)
- "list": [
- {
- "name": "", //模式名称
- "path": "", //启动页面,必选
- "query": "" //启动参数,在页面的onLoad函数里面得到
- }
- ]
- }
- }
|