From 604621b9c51ecfe8843bd7ddc564ea0161e93b44 Mon Sep 17 00:00:00 2001
From: xiebin <123456>
Date: Thu, 29 Sep 2022 11:36:33 +0800
Subject: [PATCH] 新增任务详情页面

---
 pages.json |  159 +++++++++++++++++++++++++++-------------------------
 1 files changed, 83 insertions(+), 76 deletions(-)

diff --git a/pages.json b/pages.json
index 8288740..6645942 100644
--- a/pages.json
+++ b/pages.json
@@ -1,78 +1,85 @@
 {
-    "easycom" : {
-        "^u-(.*)" : "@/uview-ui/components/u-$1/u-$1.vue"
-    },
-    "pages" : [
-        //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
-        {
-            "path" : "pages/login/login-account",
-            "style" : {
-                "navigationBarTitleText" : "登录",
-                "enablePullDownRefresh" : false,
-                "navigationStyle" : "custom"
-            }
-        },
-        {
-            "path" : "pages/service/service",
-            "style" : {
-                "navigationBarTitleText" : "首页",
-                "enablePullDownRefresh" : false,
-                "navigationStyle" : "custom"
-            }
-        },
-        {
-            "path" : "pages/taskinfo/list",
-            "style" : {
-                "navigationBarTitleText" : "任务列表",
-                "enablePullDownRefresh" : false
-            }
-        },
-        {
-            "path" : "pages/home/home",
-            "style" : {}
-        }
-    ],
-    "globalStyle" : {
-        "navigationBarTextStyle" : "black",
-        "navigationBarTitleText" : "",
-        "navigationBarBackgroundColor" : "#fff",
-        "backgroundColor" : "#F7F7F7"
-    },
-    "tabBar" : {
-        "color" : "#A6ABB5",
-        "selectedColor" : "#0BB9C8",
-        "borderStyle" : "white",
-        "backgroundColor" : "#ffffff",
-        "list" : [
-            {
-                "pagePath" : "pages/service/service",
-                "iconPath" : "static/images/tabbar/home.png",
-                "selectedIconPath" : "static/images/tabbar/home_selected.png",
-                "text" : "首页"
-            },
-            {
-                "pagePath" : "pages/demo/demo",
-                "iconPath" : "static/images/tabbar/demo.png",
-                "selectedIconPath" : "static/images/tabbar/demo_selected.png",
-                "text" : "示例"
-            },
-            {
-                "pagePath" : "pages/user/center",
-                "iconPath" : "static/images/tabbar/user.png",
-                "selectedIconPath" : "static/images/tabbar/user_selected.png",
-                "text" : "我的"
-            }
-        ]
-    },
-    "condition" : {
-        //模式配置,仅开发期间生效
-        "current" : 0, //当前激活的模式(list 的索引项)
-        "list" : [
-            {
-                "name" : "", //模式名称
-                "path" : "", //启动页面,必选
-                "query" : "" //启动参数,在页面的onLoad函数里面得到
-            }
-        ]
-    }
+	"easycom": {
+		"^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
+	},
+	"pages": [
+		//pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
+		{
+			"path": "pages/login/login-account",
+			"style": {
+				"navigationBarTitleText": "登录",
+				"enablePullDownRefresh": false,
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/service/service",
+			"style": {
+				"navigationBarTitleText": "首页",
+				"enablePullDownRefresh": false,
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/taskinfo/list",
+			"style": {
+				"navigationBarTitleText": "任务列表",
+				"enablePullDownRefresh": false
+			}
+		},
+		{
+			"path": "pages/home/home",
+			"style": {
+				"navigationBarTitleText": "主页",
+				"enablePullDownRefresh": false
+			}
+		}, {
+			"path": "pages/taskinfo/detail",
+			"style": {
+				"navigationBarTitleText": "任务详情",
+				"enablePullDownRefresh": false
+			}
+
+		}
+	],
+	"globalStyle": {
+		"navigationBarTextStyle": "black",
+		"navigationBarTitleText": "",
+		"navigationBarBackgroundColor": "#fff",
+		"backgroundColor": "#F7F7F7"
+	},
+	"tabBar": {
+		"color": "#A6ABB5",
+		"selectedColor": "#0BB9C8",
+		"borderStyle": "white",
+		"backgroundColor": "#ffffff",
+		"list": [{
+				"pagePath": "pages/service/service",
+				"iconPath": "static/images/tabbar/home.png",
+				"selectedIconPath": "static/images/tabbar/home_selected.png",
+				"text": "首页"
+			},
+			{
+				"pagePath": "pages/demo/demo",
+				"iconPath": "static/images/tabbar/demo.png",
+				"selectedIconPath": "static/images/tabbar/demo_selected.png",
+				"text": "示例"
+			},
+			{
+				"pagePath": "pages/user/center",
+				"iconPath": "static/images/tabbar/user.png",
+				"selectedIconPath": "static/images/tabbar/user_selected.png",
+				"text": "我的"
+			}
+		]
+	},
+	"condition": {
+		//模式配置,仅开发期间生效
+		"current": 0, //当前激活的模式(list 的索引项)
+		"list": [{
+			"name": "", //模式名称
+			"path": "", //启动页面,必选
+			"query": "" //启动参数,在页面的onLoad函数里面得到
+		}]
+	}
 }

--
Gitblit v1.9.3