Blame view

pages.json 3.26 KB
4b045f7c   刘淇   江阴初始化项目
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
  {
    "leftWindow": {
      "path": "windows/left-window.vue",
      "style": {
        "width": "350px"
      }
    },
    "topWindow": {
      "path": "windows/top-window.vue",
      "style": {
        "height": "60px"
      }
    },
    "pages": [
      // pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
      {
        "path": "pages/businessCard/businessCard",
        "style": {
          "navigationBarTitleText": "商户卡券"
        }
      },
      {
        "path": "pages/parkRecordList/recordDetail",
        "style": {
          "navigationBarTitleText": "订单详情"
        }
      },
      {
        "path": "pages/parkRecordList/parkRecordList",
        "style": {
          "navigationBarTitleText": "停车记录"
        }
      },
      {
        "path": "pages/parkPay/parkPay",
        "style": {
          "navigationBarTitleText": "支付"
        }
      },
      {
        "path": "pages/inputCarNumber/inputCarNumber",
        "style": {
          "navigationBarTitleText": "停车缴费"
        }
      },
      {
        "path": "pages/moneyRecharge/moneyRecharge",
        "style": {
          "navigationBarTitleText": "钱包充值"
        }
      },
      {
        "path": "pages/tabBar/component/component",
        "style": {
          "navigationBarTitleText": "内置组件",
          "app-plus": {
            "bounce": "vertical",
            "titleNView": {
              "buttons": [
                {
                  "text": "\ue534",
                  "fontSrc": "/static/uni.ttf",
                  "fontSize": "22px",
                  "color": "#FFFFFF"
                }
              ]
            }
          }
        }
      },
      {
        "path": "pages/tabBar/extUI/extUI",
        "style": {
          "navigationBarTitleText": "扩展组件",
          "app-plus": {
            "titleNView": {
              "buttons": [
                {
                  "text": "\ue534",
                  "fontSrc": "/static/uni.ttf",
                  "fontSize": "22px",
                  "color": "#FFFFFF"
                }
              ]
            }
          }
        }
      },
      {
        "path": "pages/rechargeDetail/rechargeDetail",
        "style": {
          "navigationBarTitleText": "充值明细"
        }
      },
      {
        "path": "pages/rechargeDetail/outDetail",
        "style": {
          "navigationBarTitleText": "账单详情"
        }
      }
    ],
    "globalStyle": {
      "pageOrientation": "portrait",
      "navigationBarTitleText": "Hello uniapp",
      "navigationBarTextStyle": "white",
      "navigationBarBackgroundColor": "#007AFF",
      "backgroundColor": "#F8F8F8",
      "backgroundColorTop": "#F4F5F6",
      "backgroundColorBottom": "#F4F5F6",
      "mp-360": {
        "navigationStyle": "custom"
      },
      "h5": {
        "maxWidth": 1190,
        "navigationBarTextStyle": "black",
        "navigationBarBackgroundColor": "#F1F1F1"
      }
    },
    "tabBar": {
      "color": "#7A7E83",
      "selectedColor": "#007AFF",
      "borderStyle": "black",
      "backgroundColor": "#F8F8F8",
      "list": [
        {
          "pagePath": "pages/tabBar/component/component",
          "iconPath": "static/component.png",
          "selectedIconPath": "static/componentHL.png",
          "text": "内置组件"
        },
        {
          "pagePath": "pages/tabBar/extUI/extUI",
          "iconPath": "static/extui.png",
          "selectedIconPath": "static/extuiHL.png",
          "text": "扩展组件"
        }
      ]
    }
237535d0   刘淇   江阴初始化项目
139
  }