Blame view

稻城亚丁小程序/uniapp/src/pages.json 2.89 KB
bc518174   王天杨   提交两个项目文件
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
  {
    "pages": [
      {
        "path": "pages/home/home",
        "style": {
          "navigationStyle": "custom",
          "navigationBarTitleText": "首页",
          "disableScroll": true
        }
      },
      {
        "path": "pages/login/login",
        "style": {
          "navigationStyle": "custom",
          "navigationBarTitleText": "账号登录",
          "disableScroll": true
        }
      },
      {
        "path": "pages/register/register",
        "style": {
          "navigationStyle": "custom",
          "navigationBarTitleText": "注册",
          "disableScroll": true
        }
      },
      {
        "path": "pages/upload/upload",
        "style": {
          "navigationStyle": "custom",
          "navigationBarTitleText": "上传作品"
        }
      },
      {
        "path": "pages/user/user",
        "style": {
          "navigationStyle": "custom",
          "navigationBarTitleText": "我的"
        }
      },
      {
        "path": "pages/my-works/my-works",
        "style": {
          "navigationStyle": "custom",
          "navigationBarTitleText": "我的作品"
        }
      },
      {
        "path": "pages/user-profile/user-profile",
        "style": {
          "navigationBarTitleText": "个人资料",
          "navigationBarBackgroundColor": "#ffffff",
          "navigationBarTextStyle": "black"
        }
      },
      {
4598017b   王天杨   feat(profile): 添加...
57
58
59
60
61
62
63
64
        "path": "pages/profile-setup/profile-setup",
        "style": {
          "navigationBarTitleText": "完善资料",
          "navigationBarBackgroundColor": "#ffffff",
          "navigationBarTextStyle": "black"
        }
      },
      {
bc518174   王天杨   提交两个项目文件
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
        "path": "pages/photo-detail/photo-detail",
        "style": {
          "navigationBarTitleText": "作品详情",
          "navigationStyle": "custom"
        }
      },
      {
        "path": "pages/map/map",
        "style": {
          "navigationBarTitleText": "景点地图",
          "navigationStyle": "custom"
        }
      },
      {
        "path": "pages/admin/admin",
        "style": {
          "navigationBarTitleText": "管理后台",
          "navigationBarBackgroundColor": "#4A90E2",
          "navigationBarTextStyle": "white"
        }
      }
    ],
    "globalStyle": {
      "navigationBarTextStyle": "black",
      "navigationBarTitleText": "稻城亚丁",
      "navigationBarBackgroundColor": "#ffffff",
      "backgroundColor": "#F9FAFB"
    },
    "tabBar": {
      "color": "#6B7280",
      "selectedColor": "#4A90E2",
      "borderStyle": "white",
      "backgroundColor": "#ffffff",
      "list": [
        {
          "pagePath": "pages/home/home",
          "text": "首页",
          "iconPath": "static/tabbar/home.png",
          "selectedIconPath": "static/tabbar/home_on.png"
        },
        {
          "pagePath": "pages/upload/upload",
          "text": "上传",
          "iconPath": "static/tabbar/up.png",
          "selectedIconPath": "static/tabbar/up_on.png"
        },
        {
          "pagePath": "pages/user/user",
          "text": "我的",
          "iconPath": "static/tabbar/my.png",
          "selectedIconPath": "static/tabbar/my_on.png"
        }
      ]
    }
  }