12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- {
- "scripts": {
- "dev": "NODE_ENV=development uni-app",
- "test": "NODE_ENV=test uni-app",
- "build": "NODE_ENV=production uni-app build"
- },
- "pages": [
- {
- "path": "pages/auth/login",
- "style": {
- "navigationBarTitleText": "登录"
- }
- }
- ,
- {
- "path": "pages/homepage/index",
- "style": {
- "navigationBarTitleText": "九银站点助手"
- }
- }
- ,
-
-
-
-
- {
- "path": "pages/auth/register",
- "style": {
- "navigationBarTitleText": "注册"
- }
- },
- {
- "path": "pages/auth/forgot",
- "style": {
- "navigationBarTitleText": "找回密码"
- }
- },
- {
- "path": "pages/personalInfo/index",
- "style": {
- "navigationBarTitleText": "九银站点助手"
- }
- }
- ],
-
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {},
- "tabBar": {
- "color": "#999",
- "selectedColor": "#007AFF",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [
- {
- "pagePath": "pages/homepage/index",
- "text": "首页",
- "iconPath": "static/tabbar/home.png",
- "selectedIconPath": "static/tabbar/home-active.png"
- },
- {
- "pagePath": "pages/personalInfo/index",
- "text": "我的",
- "iconPath": "static/tabbar/personal.png",
- "selectedIconPath": "static/tabbar/personal-active.png"
- }
- ]
- }
- }
|