12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {
- "easycom": {
- "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue",
- "layout": "@/layout/index.vue"
- },
- "pages": [
- //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login",
- "style": {
- "navigationBarTitleText": "极创社剧场",
- "enablePullDownRefresh": false
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "white", // black or white
- "navigationBarTitleText": "极创社",
- "navigationBarBackgroundColor": "#151728",
- "backgroundColor": "#151728"
- },
- "tabBar": {
- "custom": true,
- "color": "#8a8a8a",
- "selectedColor": "#6EEBE8",
- "backgroundColor": "#17162B",
- "borderStyle": "black",
- "list": [
- {
- "pagePath": "pages/index/index",
- "iconPath": "static/image/tab/home.png",
- "selectedIconPath": "static/image/tab/home-HL.png",
- "text": "极创社"
- },
- {
- "pagePath": "pages/trace/index",
- "iconPath": "static/image/tab/trace.png",
- "selectedIconPath": "static/image/tab/trace-HL.png",
- "text": "极创社"
- },
- {
- "pagePath": "pages/my/index",
- "iconPath": "static/image/tab/my.png",
- "selectedIconPath": "static/image/tab/my-HL.png",
- "text": "极创社"
- }
- ]
- }
- }
|