12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "easycom": {
- "cu-(.*)": "@/colorui/components/cu-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "usingComponents": {
- "van-submit-bar": "/wxcomponents/vant/dist/submit-bar/index",
- "van-dialog": "/wxcomponents/vant/dist/dialog/index"
- }
- }
- },
- {
- "path": "pages/card/index",
- "style": {
- "usingComponents": {
- "van-empty": "/wxcomponents/vant/dist/empty/index"
- }
- }
- },
- {
- "path": "pages/login/index",
- "style": {
- "usingComponents": {
- "van-action-sheet": "/wxcomponents/vant/dist/action-sheet/index"
- }
- }
- }, {
- "path": "pages/order/index",
- "style": {
- "usingComponents": {
- "van-empty": "/wxcomponents/vant/dist/empty/index",
- "van-dialog": "/wxcomponents/vant/dist/dialog/index"
- }
- }
- },
- {
- "path": "pages/pic/index",
- "style": {}
- }
- ],
- "globalStyle": {
- "navigationBarTitleText": "自定义",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "navigationStyle": "custom",
- "navigationBarTextStyle": "white",
- "usingComponents": {
- "van-icon": "/wxcomponents/vant/dist/icon/index",
- "van-button": "/wxcomponents/vant/dist/button/index"
- }
- }
- }
|