| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- {
- "tabBar": {
- "color": "#000000",
- "selectedColor": "#fa2209",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [
- {
- "pagePath": "pages/index/index",
- "iconPath": "static/tabbar/home.png",
- "selectedIconPath": "static/tabbar/home-active.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/user/index",
- "iconPath": "static/tabbar/user.png",
- "selectedIconPath": "static/tabbar/user-active.png",
- "text": "我的"
- }
- ]
- },
- "pages": [
- // pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- // **信飞通官网** - static
- {
- "path": "pages/web/home/index",
- "style": {
- "navigationBarTitleText": "首页",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/web/product/index",
- "style": {
- "navigationBarTitleText": "产品",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/web/dynamic/index",
- "style": {
- "navigationBarTitleText": "最新动态",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/web/about/index",
- "style": {
- "navigationBarTitleText": "关于我们",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/web/contact/index",
- "style": {
- "navigationBarTitleText": "联系我们",
- "navigationStyle": "custom"
- }
- },
- // **信飞通官网** - end
- // **用户激活端口** - static
- {
- "path": "pages/activationcode/index",
- "style": {
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
- },
- // **用户激活端口** - end
- // **个人中心界面** - static
- {
- "path": "pages/user/index",
- "style": {
- "navigationBarTitleText": "个人中心",
- "enablePullDownRefresh": true,
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/user/realname/index",
- "style": {
- "navigationBarTitleText": "实名认证"
- }
- },
- {
- "path": "pages/user/activatorder/index",
- "style": {
- "navigationBarTitleText": "激活订单"
- }
- },
- {
- "path": "pages/user/userxieyi/index",
- "style": {
- "navigationBarTitleText": "用户协议"
- }
- }
- // **个人中心界面** - end
- ],
- "globalStyle": {
- // #ifdef H5
- // "navigationStyle": "custom",
- "maxWidth": 19200,
- "rpxCalcMaxDeviceWidth": 19200, // rpx 计算所支持的最大设备宽度,单位 px,默认值为 960
- "rpxCalcBaseDeviceWidth": 375, // rpx 计算使用的基准设备宽度,设备实际宽度超出 rpx 计算所支持的最大设备宽度时将按基准宽度计算,单位 px,默认值为 375
- "rpxCalcIncludeWidth": 750, // rpx 计算特殊处理的值,始终按实际的设备宽度计算,单位 rpx,默认值为 750
- // #endif
- "navigationBarBackgroundColor": "#ffffff",
- "navigationBarTitleText": "",
- "navigationBarTextStyle": "black",
- "backgroundTextStyle": "dark"
- },
- "easycom": {
- "autoscan": true,
- "custom": {}
- },
- "uni-app": {
- "scripts": {
- "dev": {
- "title": "build:dev",
- "env": {
- "UNI_PLATFORM": "h5",
- "H_NODE_ENV": "dev",
- "H_BASEURL": "https://hnapi.kdboss.cn",
- "H_REDIRECT": "xxx"
- }
- },
- "test": {
- "title": "build:test",
- "env": {
- "UNI_PLATFORM": "h5",
- "H_NODE_ENV": "test",
- "H_BASEURL": "https://hnapi.kdboss.cn",
- "H_REDIRECT": "xxx"
- }
- },
- "prod": {
- "title": "build:prod",
- "env": {
- "UNI_PLATFORM": "h5",
- "H_NODE_ENV": "prod",
- "H_BASEURL": "https://hnapi.kdboss.cn",
- "H_REDIRECT": "xxx"
- }
- }
- }
- }
- }
|