| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- {
- "easycom": {
- "^x-(.*)": "@/components/x-$1.vue", // 匹配components目录内的vue文件
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/tabBar/home",
- "style": {
- "navigationStyle": "custom",
- "navigationBarTitleText": "首页"
- }
- }, {
- "path": "pages/tabBar/medicine",
- "style": {
- // "navigationStyle": "custom",
- "navigationBarTitleText": "购物车"
- }
- }, {
- "path": "pages/tabBar/mine",
- "style": {
- "navigationStyle": "custom",
- "navigationBarTitleText": "我的"
- }
- }, {
- "path": "pages/home/shop",
- "style": {
- "navigationStyle": "custom",
- "navigationBarTitleText": "门店"
- }
- }, {
- "path": "pages/home/certification",
- "style": {
- // "navigationStyle": "custom",
- "navigationBarTitleText": "商家资质信息"
- }
- }, {
- "path": "pages/home/productDetails",
- "style": {
- "navigationStyle": "custom",
- "navigationBarTitleText": "商品详情"
- }
- }, {
- "path": "pages/medicine/consultation",
- "style": {
- "navigationBarTitleText": "填写问诊信息"
- }
- }, {
- "path": "pages/medicine/extractionRoot",
- "style": {
- "navigationBarTitleText": "复诊开方"
- }
- }, {
- "path": "pages/medicine/inform",
- "style": {
- "navigationBarTitleText": "互联网诊疗风险告知及知情同意书"
- }
- }, {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "uni-app"
- }
- }, {
- "path": "pages/mine/address",
- "style": {
- "navigationBarTitleText": "地址管理"
- }
- }, {
- "path": "pages/mine/drugUser",
- "style": {
- "navigationBarTitleText": "用药人管理"
- }
- }, {
- "path": "pages/mine/newAddress",
- "style": {
- "navigationBarTitleText": "新增收货地址"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#ffffff",
- "backgroundColor": "#ffffff"
- },
- "tabBar": {
- "color": "#707070",
- "selectedColor": "#4CAF50",
- "borderStyle": "white",
- "spacing": "1px",
- "backgroundColor": "#fbfbfb",
- "list": [{
- "pagePath": "pages/tabBar/home",
- "iconPath": "/static/tabbar/drugstore.png",
- "selectedIconPath": "/static/tabbar/drugstoreHL.png",
- "text": "首页"
- }, {
- "pagePath": "pages/tabBar/medicine",
- "iconPath": "/static/tabbar/medicine.png",
- "selectedIconPath": "/static/tabbar/medicineHL.png",
- "text": "购物车"
- }, {
- "pagePath": "pages/tabBar/mine",
- "iconPath": "/static/tabbar/mine.png",
- "selectedIconPath": "/static/tabbar/mineHL.png",
- "text": "我的"
- }]
- }
- }
|