zhengkaixin 3 years ago
parent
commit
1beea71770
3 changed files with 579 additions and 386 deletions
  1. 17 5
      large/index.html
  2. 74 14
      large/js/large.js
  3. 488 367
      pages/index/index.js

+ 17 - 5
large/index.html

@@ -14,7 +14,8 @@
     <!--[if lt IE 9]>
       <script src="https://cdn.jsdelivr.net/npm/html5shiv@3.7.3/dist/html5shiv.min.js"></script>
       <script src="https://cdn.jsdelivr.net/npm/respond.js@1.4.2/dest/respond.min.js"></script>
-    <![endif]-->
+    <![endif]-->
+	
   </head>
   
   <body >
@@ -247,14 +248,14 @@
 	
 	 <div class="tabbbbb1">
 		 <div class="modal fade" id="myModal2" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
-		 		<div class="modal-dialog" style="width:1064px;" role="document">
+		 		<div class="modal-dialog" style="width:1624px;" role="document">
 		 		  <div class="modal-content">
 		 			<div class="modal-header">
 		 			  <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">关闭</span></button>
 		 			<h4 class="modal-title" id="myModalLabel"><span>基础数据分析</span></h4>
 		 			</div>
 		 			<div class="modal-body" style="min-height: 400px;overflow: hidden;">
-		 				<div class="modal-body-left">
+		 				<div class="modal-body-left" >
 		 					<table class="table table-bordered table-hover" style="height: 845px;">
 		 					  <thead>
 		 						<tr>
@@ -353,9 +354,9 @@
 		 					  </tbody>
 		 					</table>
 		 				</div>
-		 				<div class="modal-body-right"  style="height: 845px;" >
+		 				<div class="modal-body-right"  style="height: 845px;width: 1120px;"  >
 		 					<h4>基层工会指标得分明细</h4>
-		 					<div id="container6" style="height: 845px;width: 560px;"></div>
+		 					<div id="container6" style="height: 845px;width: 1120px;"></div>
 		 					
 		 				</div>
 		 			</div>
@@ -642,6 +643,17 @@
 		 					behavior="scroll"
 		 					direction="up" onMouseOver="this.stop()">
 		 						</marquee>	 -->
+								<style>
+								 .classwarning3{
+									 color: #FF2525;
+								 }
+								 .classwarning2{
+								 		 color: #FF6200;
+								 }
+								 .classwarning1{
+								 		color: #FFCB01; 
+								 }
+								</style>
 		 					<table class="table table-bordered" >
 		 						<tbody id="errorListBody"  >
 		 							

+ 74 - 14
large/js/large.js

@@ -699,7 +699,10 @@ $(function() { // 初始化内容
 		
 		for(var i in  obj.list){
 			var numm= obj.list[i]
-			$("#new332 tr:eq("+i+")").find("td").eq(5).html(numm+"分")
+			var test =$("#new332 tr:eq("+i+")").find("td").eq(2).html()
+			
+			$("#new332 tr:eq("+i+")").find("td").eq(5).html(numm+"分"==test?
+			"<b style='color:#07bc2d'>"+numm+"分</b>":"<b style='color:red'>"+numm+"分</b>")
 		}
 		$("#myModalLabelqqq").html("<span>所属工会:</span>"+obj.orgName)
 		
@@ -707,7 +710,9 @@ $(function() { // 初始化内容
 		$("#myModal4").modal("show")
 	})
 
-	function createBar6(data) {
+	function createBar6(data) {
+		
+		
 		var dom = document.getElementById("container6");
 		var myChart = echarts.init(dom);
 		
@@ -717,8 +722,29 @@ $(function() { // 初始化内容
 		var names=list.map(function(item){
 			return item.orgName
 		})
+		
 		var values=list.map(function(item){
 			return item.list[i]
+		})
+		var values2=[];
+		var map = new Map();
+		for(var i1 in values){
+			var k=values[i1];
+			var obj=map.get(k);
+			if(obj){
+				obj.value+=1;
+				
+			}else{
+				obj={
+					name:k+"分",
+					value:1
+				}
+				values2.push(obj);
+			}
+			map.set(k,obj);
+		}
+		var values2=values2.sort(function(a,b){
+			return b.value-a.value
 		})
 		myChart.setOption({
 			darkMode:true,
@@ -726,19 +752,37 @@ $(function() { // 初始化内容
 					color:"#FFFFFF"
 			},
 			tooltip: {
-				trigger: 'axis',
+				trigger: 'item',
 				axisPointer: {
 					type: 'shadow'
-				}
+				},
+					formatter: function(params){
+							       	console.log(params)
+									if(params.seriesIndex==0){
+										return params.name + '<br />' + '共有'+params.value+'个工会<br/>占比'+params.percent+ '%'
+									}
+									if(params.seriesIndex==1){
+										return params.data +"分"
+									}
+								}
 			},
 
-			grid: {
-				  top: '1%',
-				left: '3%',
-				right: '4%',
-				bottom: '3%',
-				containLabel: true
-			},
+			grid: [
+				{
+					width: '50%',
+					  top: '1%',
+					left: '3%',
+					right: '4%',
+					bottom: '3%',
+					containLabel: true
+				}, {
+                top: 100,
+                width: '50%',
+                bottom: 10,
+                left: 800,
+                containLabel: true
+            }
+			],
 			xAxis: {
 				type: 'value',
 				boundaryGap: [0, 0.01]
@@ -747,10 +791,26 @@ $(function() { // 初始化内容
 				type: 'category',
 				data: names
 			},
-			series: [{
+			series: [{
+					name: 'a',
+					type: 'pie',
+					radius: '55%',
+					data:values2,
+					center: ['75%','50%'],
+				},{
 				name: '数据',
 				type: 'bar',
-				data:values
+				data:values,
+					itemStyle: {
+										normal: {
+											color: function(params) {
+												//var colorList =colors;
+												return "#4175c2";//colorList[params.dataIndex]
+				
+											},
+											 
+										},
+									}
 			}]
 		});
 
@@ -784,7 +844,7 @@ $(function() { // 初始化内容
 
 
 		$("#errorListBody").append(
-			$("<tr num='"+i+"'> <td>" + obj.name + " </td> <td style='width: 100px;'>" + map.get(obj.level) +
+			$("<tr num='"+i+"'> <td>" + obj.name + " </td> <td style='width: 100px;' class='class"+obj.level+"'>" + map.get(obj.level) +
 				" </td><td style='width: 80px;'>" + map.get(obj.type) + " </td><td style='width: 120px;'>" +
 				date+ " </td></tr>")
 		);

+ 488 - 367
pages/index/index.js

@@ -6,373 +6,494 @@ export default {
 		return {
 			list: [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages	
 
-				{
-					"name": "IndexIndex",
-					"path": "pages/index/index",
-					"style": {
-
-						//"navigationStyle": "custom" // 隐藏系统导航栏
-					}
-				}
-
-
-				, { //微信登录
-					"path": "pages/login/wxLogin/wxLogin",
-					"style": {
-						"navigationBarTitleText": "微信登录",
-
-					}
-
-				}, { //手机号登录
-					"path": "pages/login/phoneLogin/phoneLogin",
-					"style": {
-						"navigationBarTitleText": "手机号登录",
-
-					}
-
-				}, { //填写验证码
-					"path": "pages/login/vCode/vCode",
-					"style": {
-						"navigationBarTitleText": "填写验证码",
-
-					}
-
-				}, { //密码登录
-					"path": "pages/login/passwordLogin/passwordLogin",
-					"style": {
-						"navigationBarTitleText": "密码登录",
-
-					}
-
-				}
-
-				, {
-					"path": "pages/job/index/index",
-					"style": {
-						"navigationBarTitleText": "求职主页",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/index/recruitInfo/recruitInfo",
-					"style": {
-						"navigationBarTitleText": "招聘详情",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/index/companyInfo/companyInfo",
-					"style": {
-						"navigationBarTitleText": "企业详情",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/query/query",
-					"style": {
-						"navigationBarTitleText": "搜索",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/query/queryResult/queryResult",
-					"style": {
-						"navigationBarTitleText": "搜索结果",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/newsIndex/newsIndex",
-					"style": {
-						"navigationBarTitleText": "分类消息",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/newsIndex/newsList/newsList",
-					"style": {
-						"navigationBarTitleText": "消息列表",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/newsIndex/newsRecommend/newsRecommend",
-					"style": {
-						"navigationBarTitleText": "推荐职位",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/newsIndex/newsInvitationPhone/newsInvitationPhone",
-					"style": {
-						"navigationBarTitleText": "沟通邀请通知",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/newsIndex/newsInvitationBefore/newsInvitationBefore",
-					"style": {
-						"navigationBarTitleText": "面试邀请通知",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/newsIndex/newsEntry/newsEntry",
-					"style": {
-						"navigationBarTitleText": "录用意向书详情",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/personal/personal",
-					"style": {
-						"navigationBarTitleText": "个人中心",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/personal/my/my",
-					"style": {
-						"navigationBarTitleText": "我的",
-						"enablePullDownRefresh": false
-					}
-
-				}
-
-				, {
-					"path": "pages/job/personal/my/resumeMy/resumeMy",
-					"style": {
-						"navigationBarTitleText": "我的简历",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/personal/my/resumeAdd/resumeAdd",
-					"style": {
-						"navigationBarTitleText": "创建简历",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/personal/my/resumeAdd/resumeSelect/resumeSelect",
-					"style": {
-						"navigationBarTitleText": "选择职位输入",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/personal/my/resumeAdd/resumeEdit/resumeEdit",
-					"style": {
-						"navigationBarTitleText": "编辑自我介绍",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/personal/my/resumeAdd/resumeSucc/resumeSucc",
-					"style": {
-						"navigationBarTitleText": "简历提交成功",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/personal/my/resumeList/resumeList",
-					"style": {
-						"navigationBarTitleText": "投递记录",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/personal/my/resumeLook/resumeLook",
-					"style": {
-						"navigationBarTitleText": "看过的职位",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/personal/my/resumeCollect/resumeCollect",
-					"style": {
-						"navigationBarTitleText": "职位收藏",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/personal/my/resumeAuth/resumeAuth",
-					"style": {
-						"navigationBarTitleText": "个人认证",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/personal/install/install",
-					"style": {
-						"navigationBarTitleText": "设置",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/personal/install/myInfo/myInfo",
-					"style": {
-						"navigationBarTitleText": "个人信息",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/personal/install/account/account",
-					"style": {
-						"navigationBarTitleText": "账号管理",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/personal/install/account/passwordA/passwordA",
-					"style": {
-						"navigationBarTitleText": "忘记密码",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/personal/install/account/passwordB/passwordB",
-					"style": {
-						"navigationBarTitleText": "验证码找回",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/personal/install/account/passwordC/passwordC",
-					"style": {
-						"navigationBarTitleText": "重设密码",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/personal/install/account/phoneA/phoneA",
-					"style": {
-						"navigationBarTitleText": "填写验证码",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/personal/install/account/phoneB/phoneB",
-					"style": {
-						"navigationBarTitleText": "绑定手机号",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/personal/install/account/phoneC/phoneC",
-					"style": {
-						"navigationBarTitleText": "绑定验证码 Copy",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/job/personal/about/about",
-					"style": {
-						"navigationBarTitleText": "关于我们",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/hr/index/index",
-					"style": {
-						"navigationBarTitleText": "招聘主页",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/hr/index/resumeInfo/resumeInfo",
-					"style": {
-						"navigationBarTitleText": "简历详情",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/hr/query/query",
-					"style": {
-						"navigationBarTitleText": "搜索",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/hr/query/queryResult/queryResult",
-					"style": {
-						"navigationBarTitleText": "搜索结果",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/hr/newsIndex/newsIndex",
-					"style": {
-						"navigationBarTitleText": "消息分类",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/hr/newsIndex/newsList/newsList",
-					"style": {
-						"navigationBarTitleText": "消息列表",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/hr/newsIndex/newsRecommend/newsRecommend",
-					"style": {
-						"navigationBarTitleText": "推荐简历",
-						"enablePullDownRefresh": false
-					}
-
-				}
-
-				, {
-					"path": "pages/hr/newsIndex/servicesList/servicesList",
-					"style": {
-						"navigationBarTitleText": "劳务对接列表",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/hr/newsIndex/servicesInfo/servicesInfo",
-					"style": {
-						"navigationBarTitleText": "劳务对接详情",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/hr/my/my",
-					"style": {
-						"navigationBarTitleText": "我的",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/hr/my/position/position",
-					"style": {
-						"navigationBarTitleText": "职位管理",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/hr/my/follow/follow",
-					"style": {
-						"navigationBarTitleText": "对您感兴趣",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/hr/my/enroll/enroll",
-					"style": {
-						"navigationBarTitleText": "求职管理",
-						"enablePullDownRefresh": false
-					}
-
-				}, {
-					"path": "pages/hr/my/collection/collection",
-					"style": {
-						"navigationBarTitleText": "收藏简历",
-						"enablePullDownRefresh": false
-					}
-
-				}
+				 {
+				 	"name":"IndexIndex",
+				 	"path": "pages/index/index",
+				 	"style": {
+				 	
+				 		//"navigationStyle": "custom" // 隐藏系统导航栏
+				 	}
+				 }
+				 
+				       
+				 ,{//微信登录
+				     "path" : "pages/login/wxLogin/wxLogin",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "微信登录"
+				         
+				     }
+				     
+				 }
+				 ,{//手机号登录
+				     "path" : "pages/login/phoneLogin/phoneLogin",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "手机号登录"
+				         
+				     }
+				     
+				 }
+				 ,{//填写验证码
+				     "path" : "pages/login/vCode/vCode",
+				     "style" :                                                                                    
+				     {           
+				         "navigationBarTitleText": "填写验证码"
+				         
+				     }
+				     
+				 }
+				 ,{//密码登录
+				     "path" : "pages/login/passwordLogin/passwordLogin",
+				     "style" :                                                                                    
+				     {              
+				         "navigationBarTitleText": "密码登录"
+				         
+				     }
+				     
+				 }
+				       
+				 ,{
+				     "path" : "pages/job/index/index",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "求职主页",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/index/recruitInfo/recruitInfo",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "招聘详情",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/hr/index/recruitInfo/recruitInfo",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "招聘详情",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/index/companyInfo/companyInfo",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "企业详情",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/query/query",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "搜索",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/query/queryResult/queryResult",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "搜索结果",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/newsIndex/newsIndex",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "分类消息",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/newsIndex/newsList/newsList",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "消息列表",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/newsIndex/newsRecommend/newsRecommend",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "推荐职位",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/newsIndex/newsInvitationPhone/newsInvitationPhone",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "沟通邀请通知",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/newsIndex/newsInvitationBefore/newsInvitationBefore",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "面试邀请通知",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/newsIndex/newsEntry/newsEntry",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "录用意向书详情",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/personal/personal",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "个人中心",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/personal/my/my",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "我的",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				      
+				 ,{
+				     "path" : "pages/job/personal/my/resumeMy/resumeMy",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "我的简历",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/personal/my/resumeAdd/resumeAdd",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "创建简历",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/personal/my/resumeAdd/resumeSelect/resumeSelect",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "选择职位输入",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/personal/my/resumeAdd/resumeEdit/resumeEdit",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "编辑自我介绍",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/personal/my/resumeAdd/resumeSucc/resumeSucc",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "简历提交成功",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/personal/my/resumeList/resumeList",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "投递记录",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/personal/my/resumeLook/resumeLook",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "看过的职位",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/personal/my/resumeCollect/resumeCollect",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "职位收藏",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/personal/my/resumeAuth/resumeAuth",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "个人认证",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/personal/install/install",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "设置",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/personal/install/myInfo/myInfo",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "个人信息",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/personal/install/account/account",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "账号管理",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/personal/install/account/passwordA/passwordA",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "忘记密码",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/personal/install/account/passwordB/passwordB",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "验证码找回",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/personal/install/account/passwordC/passwordC",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "重设密码",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/personal/install/account/phoneA/phoneA",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "填写验证码",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/personal/install/account/phoneB/phoneB",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "绑定手机号",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/personal/install/account/phoneC/phoneC",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "绑定验证码 Copy",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/job/personal/about/about",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "关于我们",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 },{
+				     "path" : "pages/job/personal/install/resume/resume",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "我的简历",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 },{
+				     "path" : "pages/job/personal/install/addResume/addResume",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "创建简历",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/hr/index/index",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "招聘主页",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/hr/index/resumeInfo/resumeInfo",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "简历详情",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/hr/query/query",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "搜索",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/hr/query/queryResult/queryResult",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "搜索结果",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/hr/newsIndex/newsIndex",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "消息分类",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/hr/newsIndex/newsList/newsList",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "消息列表",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/hr/newsIndex/newsRecommend/newsRecommend",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "推荐简历",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				        
+				 ,{
+				     "path" : "pages/hr/newsIndex/servicesList/servicesList",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "劳务对接列表",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/hr/newsIndex/servicesInfo/servicesInfo",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "劳务对接详情",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/hr/my/my",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "我的",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/hr/my/position/position",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "职位管理",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/hr/my/follow/follow",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "对您感兴趣",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/hr/my/enroll/enroll",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "求职管理",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
+				 ,{
+				     "path" : "pages/hr/my/collection/collection",
+				     "style" :                                                                                    
+				     {
+				         "navigationBarTitleText": "收藏简历",
+				         "enablePullDownRefresh": false
+				     }
+				     
+				 }
 			],
 			isReady: false,
 		}