3b1a3459d8c11a14254a265ec1026b9aa41477de.svn-base 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. var pageParam={};
  2. var chart=null;
  3. var utils=new Util();
  4. var searchUtil = new SearchUtil();
  5. /***
  6. * 初始化方法里填写标题,当前单位名称:广东电网 暂时写死。
  7. * 可以通过下面方法获取到当前单位名称,上系统时请改成下面这种写法:
  8. * var deptName = top.com.sinosoft.lz.system.user.LoginInfo.getDeptnames();
  9. * **/
  10. var urlParams=utils.resolveUrl();
  11. var comeName=urlParams["dept_name"];
  12. var dept_id=urlParams["dept_id"];
  13. $(function(){
  14. pageParam.style=utils.resolveUrl()["style"]||"style1";
  15. pageParam.title=utils.resolveUrl()["title"]||comeName;//pageParam.title=utils.resolveUrl()["title"]||deptName + "预案修编统计";
  16. pageParam.number=utils.resolveUrl()["number"]||warnningnumber;
  17. init();
  18. });
  19. /**
  20. *初始化方法
  21. */
  22. function init(){
  23. loadChart(pageParam);
  24. }
  25. function loadChart(jsonParam){
  26. /**
  27. * 获取数据;
  28. * param :id;
  29. * 备注:由于不在系统框架内,获取不到登录人单位的ID,现在传入的单位ID写死。上线的时候请更改过来。
  30. * 用这个方法取当前登录人单位ID:
  31. * var deptId = top.com.sinosoft.lz.system.user.LoginInfo.getCorp_ids();
  32. * 将第32行代替换34行代码。
  33. * $.post("/nwyj//ws/PlanHuiZong/ContingencyPlanHuiZong/getPlanInfo2",{id : deptId},function(result){
  34. * ***/
  35. $.post("/nwyj/ws/SystemDataSourceChartServiceImpl/SystemDataSourceChartServiceImpl/getPressionerInfo",{compId : dept_id},function(result){
  36. var xAxis=[];
  37. var item=result.rows[result.rows.length-1];
  38. veriColor(); //根据首页的传值判断样式
  39. var sArr=[
  40. {
  41. type:"bar",
  42. stack:"SD_XIANLU",
  43. name:"输电线路",
  44. data:[],
  45. barMaxWidth:40,
  46. itemStyle: {
  47. normal: {borderWidth: 1,borderColor:"tomato",color: pageStyle[jsonParam.style]["chartColor"][0],
  48. label : { show : true,
  49. position: "top",
  50. textStyle: {
  51. color: "rgb(255, 255, 255)",
  52. fontSize: 14,
  53. fontStyle: "normal",
  54. fontWeight: "bold"
  55. }
  56. }
  57. }}
  58. }
  59. ];
  60. //初始化总数量,默认值为:0.
  61. /**
  62. * 下面的循环:index<len-1
  63. * 因为后台返回的数据中最后有一行:总合计。
  64. * 不需要在柱形图里显示,所以用获取到的对象长度减一。
  65. *
  66. * ***/
  67. var item=result.rows[result.rows.length-1];
  68. var heji=0;
  69. var resArr = [];
  70. var renshu=0;
  71. if(item!=undefined){
  72. sArr[0].data.push({value:utils.changeQ(item["SD_XIANLU"]),data:{state:utils.changeQ(item["SD_XIANLU"]),compId:item["SD_XIANLU"],number:jsonParam.number,style:jsonParam.style}});
  73. resArr.push(utils.changeQ(item["SD_XIANLU"]));
  74. //
  75. sArr[0].data.push({value:(utils.changeQ(item["SD_XIANLANG"])),data:{state:utils.changeQ(item["SD_XIANLANG"]),compId:item["SD_XIANLANG"],number:jsonParam.number,style:jsonParam.style}});
  76. resArr.push(utils.changeQ(item["SD_XIANLANG"]));
  77. sArr[0].data.push({value:utils.changeQ(item["BD_YICI"]),data:{state:utils.changeQ(item["BD_YICI"]),compId:item["BD_YICI"],number:jsonParam.number,style:jsonParam.style}});
  78. resArr.push(utils.changeQ(item["BD_YICI"]));
  79. //
  80. sArr[0].data.push({value:(utils.changeQ(item["BD_ERCI"])),data:{state:utils.changeQ(item["BD_ERCI"]),compId:item["BD_ERCI"],number:jsonParam.number,style:jsonParam.style}});
  81. resArr.push(utils.changeQ(item["BD_ERCI"]));
  82. sArr[0].data.push({value:(utils.changeQ(item["PD_XIANLU"])),data:{state:utils.changeQ(item["PD_XIANLU"]),compId:item["PD_XIANLU"],number:jsonParam.number,style:jsonParam.style}});
  83. resArr.push(utils.changeQ(item["PD_XIANLU"]));
  84. sArr[0].data.push({value:(utils.changeQ(item["PD_XIANLANG"])),data:{state:utils.changeQ(item["PD_XIANLANG"]),compId:item["PD_XIANLANG"],number:jsonParam.number,style:jsonParam.style}});
  85. resArr.push(utils.changeQ(item["PD_XIANLANG"]));
  86. sArr[0].data.push({value:utils.changeQ(item["PD_DIANFANG"]),data:{state:utils.changeQ(item["PD_DIANFANG"]),compId:item["PD_DIANFANG"],number:jsonParam.number,style:jsonParam.style}});
  87. resArr.push(utils.changeQ(item["PD_DIANFANG"]));
  88. sArr[0].data.push({value:utils.changeQ(item["PD_BAODIAN"]),data:{state:utils.changeQ(item["PD_BAODIAN"]),compId:item["PD_BAODIAN"],number:jsonParam.number,style:jsonParam.style}});
  89. resArr.push(utils.changeQ(item["PD_BAODIAN"]));
  90. sArr[0].data.push({value:(utils.changeQ(item["TONGXING"])),data:{state:utils.changeQ(item["TONGXING"]),compId:item["TONGXING"],number:jsonParam.number,style:jsonParam.style}});
  91. resArr.push(utils.changeQ(item["TONGXING"]));
  92. sArr[0].data.push({value:utils.changeQ(item["WANGLUO"]),data:{state:utils.changeQ(item["WANGLUO"]),compId:item["WANGLUO"],number:jsonParam.number,style:jsonParam.style}});
  93. resArr.push(utils.changeQ(item["WANGLUO"]));
  94. sArr[0].data.push({value:(utils.changeQ(item["SHIYAN"])),data:{state:utils.changeQ(item["SHIYAN"]),compId:item["SHIYAN"],number:jsonParam.number,style:jsonParam.style}});
  95. resArr.push(utils.changeQ(item["SHIYAN"]));
  96. heji = item["TEAM_NUM"];
  97. renshu = item["TEAM_MEMBER_NUMBER"];
  98. }else{
  99. sArr[0].data.push({value:utils.changeQ(""),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
  100. resArr.push(utils.changeQ(""));
  101. //
  102. sArr[0].data.push({value:(utils.changeQ("")),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
  103. resArr.push(utils.changeQ(""));
  104. sArr[0].data.push({value:utils.changeQ(""),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
  105. resArr.push(utils.changeQ(""));
  106. //
  107. sArr[0].data.push({value:(utils.changeQ("")),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
  108. resArr.push(utils.changeQ(""));
  109. sArr[0].data.push({value:(utils.changeQ("")),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
  110. resArr.push(utils.changeQ(""));
  111. sArr[0].data.push({value:(utils.changeQ("")),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
  112. resArr.push(utils.changeQ(""));
  113. sArr[0].data.push({value:utils.changeQ(""),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
  114. resArr.push(utils.changeQ(""));
  115. sArr[0].data.push({value:utils.changeQ(""),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
  116. resArr.push(utils.changeQ(""));
  117. sArr[0].data.push({value:(utils.changeQ("")),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
  118. resArr.push(utils.changeQ(""));
  119. sArr[0].data.push({value:utils.changeQ(""),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
  120. resArr.push(utils.changeQ(""));
  121. sArr[0].data.push({value:(utils.changeQ("")),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
  122. resArr.push(utils.changeQ(""));
  123. }
  124. /**
  125. * 设置标题
  126. * 获取系统时间:(由于不在系统框架内,无法获取系统时间,上线时可用下面函数获取系统时间)
  127. * var currDate = getNowFormatDate(); YYYY-MM-DD HH:MM:SS
  128. *
  129. */
  130. pageParam.opParams={
  131. //title:"合计:"+item["TEAM_NUM"]+"支,"+item["TEAM_MEMBER_NUMBER"]+"人",
  132. title:"合计:"+heji+"支,"+renshu+"人",
  133. subtext:"",
  134. saveName:$("#i_page_head_title").find("h2").html()+searchUtil.getNowFormatDateTime(new Date),
  135. unit:"个",//单位
  136. leArr:[],//图例
  137. xAxis:["输电\n线路","输电\n线缆","变电\n一次","变电\n二次","配电\n线路","配电\n线缆","应急\n保电","低压\n电房","通信","网络","试验"],//x轴
  138. sArr:sArr,//主数据
  139. legendColor:legendC, //图例字体颜色
  140. xAxisColor:xAxisC, //X轴字体颜色
  141. yAxisColor:yAxisC, //Y轴字体颜色
  142. min:0,
  143. max:(parseInt((Math.max.apply(null, resArr))/10)+1)*10
  144. };
  145. //console.log(JSON.stringify(pageParam.opParams)+"-------")
  146. //setTitle(data,"(条)")
  147. chart=getEchart($("#i_page_chart"),getOption,pageParam.opParams,null);
  148. bindEvent();
  149. },"json");
  150. //设置标题的名称
  151. setTitle();
  152. }
  153. /**
  154. * 绑定事件
  155. */
  156. function bindEvent(){
  157. //点击事件
  158. /* chart.on("click",function(params){
  159. var pathStr=url["http_path"]+"page/cockpit/echart_maticView/amResource/team.jsp?" +$.param(params.data.data);
  160. utils.openIframe(pathStr);
  161. });*/
  162. //自适应
  163. $(window).resize(function(){
  164. chart.resize();
  165. });
  166. }
  167. /**
  168. * 设置标题
  169. * 获取系统时间:(由于不在系统框架内,无法获取系统时间,上线时可用下面函数获取系统时间)
  170. * var currDate = getNowFormatDate(); YYYY-MM-DD HH:MM:SS
  171. * 将获取的系统时间填充到下面代码:
  172. * $("#i_page_head_subtitle").append("<div>截止时间:"+currDate+"</div><div>修编个数:"+jsonParam["zTotal"]+unit+"</div>");
  173. */
  174. function setTitle(){
  175. $("#i_page_head_title").find("h2").remove();
  176. if(pageParam.title=="广东电网有限责任公司"){
  177. pageParam.title="广东电网公司";
  178. }
  179. $("#i_page_head_title").append("<h2>"+pageParam.title+"应急专业人员统计</h2>");
  180. }