123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- var pageParam={};
- var chart=null;
- var utils=new Util();
- var searchUtil = null;
- /***
- * 初始化方法里填写标题,当前单位名称:广东电网 暂时写死。
- * 可以通过下面方法获取到当前单位名称,上系统时请改成下面这种写法:
- * var deptName = top.com.sinosoft.lz.system.user.LoginInfo.getDeptnames();
- * **/
- $(function(){
- // alert(JSON.stringify(utils.resolveUrl()));
- searchUtil = new SearchUtil();
- pageParam.style=utils.resolveUrl()["style"]||"style3";
- pageParam.title=utils.resolveUrl()["title"]||"广东电网";//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/getDrillInfo",{compId : utils.resolveUrl()["dept_id"]},function(result){
- veriColor(); //根据首页的传值判断样式
- var sArr=[
- {
- type:"bar",
- //stack:"sum",
- name:"已完成",
- data:[],
- barMaxWidth:40,
- itemStyle: {
- normal: {borderWidth: 1,
- borderColor:"tomato",
- color: pageStyle[jsonParam.style]["chartColor"][1],
- label : { show : true,
- position: "insideBottom",
- textStyle: {
- color: "rgb(255, 255, 255)",
- fontSize: 14,
- fontStyle: "normal",
- fontWeight: "bold"
- }
- }
- }}
- },
- {type:"bar",
- //stack:"sum",
- name:"未完成",
- data:[],
- 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"
- }
- }
- }
- }
-
- }
- ];
- var xAxis=[];
- var total=0;
- var max = 0;
- var untotal=0;
-
- for(var index=0,len=result.rows.length;index<len;index++){
- var item=result.rows[index];
- //alert(JSON.stringify(item));
- var sum=utils.changeQ(item["DONE"]);
- var un=utils.changeQ(item["UNDO"]);
- max = max < sum ? sum : max;
- max = max < un ? un : max;
- total+=sum;
- untotal+=un;
- sArr[1].data.push({value:sum,data:{state:"",compId:item["DEPT_ID"],number:jsonParam.number,style:jsonParam.style}});
- sArr[0].data.push({value:un,data:{state:"",compId:item["DEPT_ID"],number:jsonParam.number,style:jsonParam.style}});
- //xAxis.push(subStr(item["DEPT_NAME"],"供电局"));
- xAxis.push(subStrDept(item["DEPT_NAME"]));
-
- }
- max=(parseInt(max/10)+1)*10;
- pageParam.opParams={
- title:"已完成: "+untotal+"(启),未完成:"+total+"(启)",
- subtext:"",
- saveName:$("#i_page_head_title").find("h2").html()+searchUtil.getNowFormatDateTime(new Date),
- unit:"个",//单位
- leArr:["已完成","未完成"],//图例
- xAxis:xAxis,//x轴
- sArr:sArr,//主数据
- legendColor:legendC, //图例字体颜色
- xAxisColor:xAxisC, //X轴字体颜色
- yAxisColor:yAxisC, //Y轴字体颜色
- min:0,
- max:max,
- isVertical:true,
- fold:0
- };
- //setTitle(data,"(个)");
- chart=getEchart($("#i_page_chart"),getOption,pageParam.opParams,null);
- bindEvent();
- },"json");
- //设置标题的名称
- $("#i_page_head_title").empty();
- var title = pageParam.title == "" ? "" : pageParam.title;
- if(title=="广东电网有限责任公司"){
- title="广东电网公司";
- }
- $("#i_page_head_title").append("<h2>"+title+"演练计划统计</h2>");
- }
- /**
- * 绑定事件
- */
- function bindEvent(){
- //点击事件
- /*chart.on("click",function(params){
- ///nwyj/WebContent/page/cockpit/echart_maticView/amResource/YanLianHuiZongBt.html
- var pathStr=url["http_path"]+"page/cockpit/echart_maticView/amResource/YanLianHuiZongBt.html?" +$.param(params.data.data);
-
- alert("$.param(params.data.data):"+ JSON.stringify(params.data));
- if(params.data.name==""){
- var pathStr=url["http_path"]+"page/cockpit/echart_maticView/amResource/team.jsp?"+$.param(params.data.data);
- }else{
- alert("主网信息");
- }
- 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(jsonParam,unit){
- $("#i_page_head_title").empty();
- $("#i_page_head_subtitle").empty();
- $("#i_page_head_title").append("<h2>"+pageParam.title+"</h2>");
- $("#i_page_head_subtitle").append("<div>截止时间:"+jsonParam["APPEAR_TIME"]+"</div><div>演练计划个数:"+jsonParam["zTotal"]+unit+"</div>");
- }*/
- function subStrDept(str){
- str=str.replace("供电局","");
- str=str.replace("供电所","");
- str=str.replace("广东省输变电工程公司","省输");
- str=str.replace("广东电网有限责任公司电力调度控制中心","电力调度");
- str=str.replace("广东电网有限责任公司新闻中心","新闻中心");
- str=str.replace("广东电网有限责任公司教育培训评价中心","教育培训");
- str=str.replace("广东电网有限责任公司信息中心","信息中心");
- str=str.replace("广东电网发展研究院有限责任公司","发展研究院");
- str=str.replace("广东电网有限责任公司物流服务中心","物流服务");
- str=str.replace("广东电网有限责任公司电力科学研究院","电科院");
- str=str.replace("广东电网公司管理科学研究院","管理科学院");
- return str;
-
- }
|