12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- {
- "easycom": {
- "autoscan": true,
- "custom": {
- "^wd-(.*)": "wot-design-uni/components/wd-$1/wd-$1.vue"
- }
- },
- "pages": [
- //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- // "navigationBarTitleText": "首页",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/my/index",
- "style": {
- "navigationStyle": "custom"
- }
- }
- ],
- "subPackages": [
- {
- "root": "pagesOne",
- "pages": [
- {
- "path": "winner/index",
- "style": {
- // "navigationBarTitleText": "首页",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "winner/uploadImage",
- "style": {
- "navigationBarTitleText": "批量上传照片"
- }
- },
- {
- "path": "record/winnerList",
- "style": {
- "navigationBarTitleText": "奖励记录"
- }
- }
- ]
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#A5AEC1",
- "selectedColor": "#1D212A",
- "backgroundColor": "#fff",
- "borderStyle": "white",
- "list": [
- {
- "text": "首页",
- "pagePath": "pages/index/index",
- "iconPath": "static/images/home_default.png",
- "selectedIconPath": "static/images/home_selected.png"
- },
- {
- "text": "我的",
- "pagePath": "pages/my/index",
- "iconPath": "static/images/user_default.png",
- "selectedIconPath": "static/images/user_selected.png"
- }
- ]
- }
- }
|