123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- var pageParam={};
- var chart=null;
- var utils=new Util();
- var searchUtil = new SearchUtil();
- /***
- * 初始化方法里填写标题,当前单位名称:广东电网 暂时写死。
- * 可以通过下面方法获取到当前单位名称,上系统时请改成下面这种写法:
- * var deptName = top.com.sinosoft.lz.system.user.LoginInfo.getDeptnames();
- * **/
-
- var urlParams=utils.resolveUrl();
- var comeName=urlParams["dept_name"];
- var dept_id=urlParams["dept_id"];
-
- $(function(){
- pageParam.style=utils.resolveUrl()["style"]||"style1";
- pageParam.title=utils.resolveUrl()["title"]||comeName;//pageParam.title=utils.resolveUrl()["title"]||deptName + "预案修编统计";
- pageParam.number=utils.resolveUrl()["number"]||warnningnumber;
- init();
- });
-
- /**
- *初始化方法
- */
- function init(){
- loadChart(pageParam);
- }
-
- function loadChart(jsonParam){
-
- /**
- * 获取数据;
- * param :id;
- * 备注:由于不在系统框架内,获取不到登录人单位的ID,现在传入的单位ID写死。上线的时候请更改过来。
- * 用这个方法取当前登录人单位ID:
- * var deptId = top.com.sinosoft.lz.system.user.LoginInfo.getCorp_ids();
- * 将第32行代替换34行代码。
- * $.post("/nwyj//ws/PlanHuiZong/ContingencyPlanHuiZong/getPlanInfo2",{id : deptId},function(result){
- * ***/
- $.post("/nwyj/ws/SystemDataSourceChartServiceImpl/SystemDataSourceChartServiceImpl/getPressionerInfo",{compId : dept_id},function(result){
- var xAxis=[];
- var item=result.rows[result.rows.length-1];
- veriColor(); //根据首页的传值判断样式
- var sArr=[
- {
- type:"bar",
- stack:"SD_XIANLU",
- name:"输电线路",
- data:[],
- barMaxWidth:40,
- itemStyle: {
- normal: {borderWidth: 1,borderColor:"tomato",color: pageStyle[jsonParam.style]["chartColor"][0],
- label : { show : true,
- position: "top",
- textStyle: {
- color: "rgb(255, 255, 255)",
- fontSize: 14,
- fontStyle: "normal",
- fontWeight: "bold"
- }
- }
- }}
- }
-
-
- ];
-
- //初始化总数量,默认值为:0.
- /**
- * 下面的循环:index<len-1
- * 因为后台返回的数据中最后有一行:总合计。
- * 不需要在柱形图里显示,所以用获取到的对象长度减一。
- *
- * ***/
- var item=result.rows[result.rows.length-1];
- var heji=0;
- var resArr = [];
- var renshu=0;
- if(item!=undefined){
- 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}});
- resArr.push(utils.changeQ(item["SD_XIANLU"]));
- //
- 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}});
- resArr.push(utils.changeQ(item["SD_XIANLANG"]));
- 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}});
- resArr.push(utils.changeQ(item["BD_YICI"]));
- //
- 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}});
- resArr.push(utils.changeQ(item["BD_ERCI"]));
- 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}});
- resArr.push(utils.changeQ(item["PD_XIANLU"]));
- 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}});
- resArr.push(utils.changeQ(item["PD_XIANLANG"]));
- 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}});
- resArr.push(utils.changeQ(item["PD_DIANFANG"]));
- 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}});
- resArr.push(utils.changeQ(item["PD_BAODIAN"]));
- sArr[0].data.push({value:(utils.changeQ(item["TONGXING"])),data:{state:utils.changeQ(item["TONGXING"]),compId:item["TONGXING"],number:jsonParam.number,style:jsonParam.style}});
- resArr.push(utils.changeQ(item["TONGXING"]));
- sArr[0].data.push({value:utils.changeQ(item["WANGLUO"]),data:{state:utils.changeQ(item["WANGLUO"]),compId:item["WANGLUO"],number:jsonParam.number,style:jsonParam.style}});
- resArr.push(utils.changeQ(item["WANGLUO"]));
- sArr[0].data.push({value:(utils.changeQ(item["SHIYAN"])),data:{state:utils.changeQ(item["SHIYAN"]),compId:item["SHIYAN"],number:jsonParam.number,style:jsonParam.style}});
- resArr.push(utils.changeQ(item["SHIYAN"]));
- heji = item["TEAM_NUM"];
- renshu = item["TEAM_MEMBER_NUMBER"];
- }else{
- sArr[0].data.push({value:utils.changeQ(""),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
- resArr.push(utils.changeQ(""));
- //
- sArr[0].data.push({value:(utils.changeQ("")),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
- resArr.push(utils.changeQ(""));
- sArr[0].data.push({value:utils.changeQ(""),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
- resArr.push(utils.changeQ(""));
- //
- sArr[0].data.push({value:(utils.changeQ("")),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
- resArr.push(utils.changeQ(""));
- sArr[0].data.push({value:(utils.changeQ("")),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
- resArr.push(utils.changeQ(""));
- sArr[0].data.push({value:(utils.changeQ("")),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
- resArr.push(utils.changeQ(""));
- sArr[0].data.push({value:utils.changeQ(""),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
- resArr.push(utils.changeQ(""));
- sArr[0].data.push({value:utils.changeQ(""),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
- resArr.push(utils.changeQ(""));
- sArr[0].data.push({value:(utils.changeQ("")),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
- resArr.push(utils.changeQ(""));
- sArr[0].data.push({value:utils.changeQ(""),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
- resArr.push(utils.changeQ(""));
- sArr[0].data.push({value:(utils.changeQ("")),data:{state:utils.changeQ(""),compId:"",number:jsonParam.number,style:jsonParam.style}});
- resArr.push(utils.changeQ(""));
- }
-
-
- /**
- * 设置标题
- * 获取系统时间:(由于不在系统框架内,无法获取系统时间,上线时可用下面函数获取系统时间)
- * var currDate = getNowFormatDate(); YYYY-MM-DD HH:MM:SS
- *
- */
- pageParam.opParams={
- //title:"合计:"+item["TEAM_NUM"]+"支,"+item["TEAM_MEMBER_NUMBER"]+"人",
- title:"合计:"+heji+"支,"+renshu+"人",
- subtext:"",
- saveName:$("#i_page_head_title").find("h2").html()+searchUtil.getNowFormatDateTime(new Date),
- unit:"个",//单位
- leArr:[],//图例
- xAxis:["输电\n线路","输电\n线缆","变电\n一次","变电\n二次","配电\n线路","配电\n线缆","应急\n保电","低压\n电房","通信","网络","试验"],//x轴
- sArr:sArr,//主数据
- legendColor:legendC, //图例字体颜色
- xAxisColor:xAxisC, //X轴字体颜色
- yAxisColor:yAxisC, //Y轴字体颜色
- min:0,
- max:(parseInt((Math.max.apply(null, resArr))/10)+1)*10
-
- };
- //console.log(JSON.stringify(pageParam.opParams)+"-------")
- //setTitle(data,"(条)")
- chart=getEchart($("#i_page_chart"),getOption,pageParam.opParams,null);
- bindEvent();
- },"json");
- //设置标题的名称
- setTitle();
- }
- /**
- * 绑定事件
- */
- function bindEvent(){
- //点击事件
- /* chart.on("click",function(params){
-
- var pathStr=url["http_path"]+"page/cockpit/echart_maticView/amResource/team.jsp?" +$.param(params.data.data);
- utils.openIframe(pathStr);
- });*/
- //自适应
- $(window).resize(function(){
- chart.resize();
- });
- }
- /**
- * 设置标题
- * 获取系统时间:(由于不在系统框架内,无法获取系统时间,上线时可用下面函数获取系统时间)
- * var currDate = getNowFormatDate(); YYYY-MM-DD HH:MM:SS
- * 将获取的系统时间填充到下面代码:
- * $("#i_page_head_subtitle").append("<div>截止时间:"+currDate+"</div><div>修编个数:"+jsonParam["zTotal"]+unit+"</div>");
- */
- function setTitle(){
- $("#i_page_head_title").find("h2").remove();
- if(pageParam.title=="广东电网有限责任公司"){
- pageParam.title="广东电网公司";
- }
- $("#i_page_head_title").append("<h2>"+pageParam.title+"应急专业人员统计</h2>");
-
- }
|