benchmark.jsp 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557
  1. <%@ page language="java" contentType="text/html;charset=utf-8"%>
  2. <%@include file="/pages/includes/taglibs.jsp"%>
  3. <head>
  4. <script src="<%=request.getContextPath()%>/resource/js/jquery.min.js"
  5. type="text/javascript">
  6. </script>
  7. <script
  8. src="<%=request.getContextPath()%>/resource/js/highcharts/highcharts.js"
  9. type="text/javascript">
  10. </script>
  11. <script
  12. src="<%=request.getContextPath()%>/resource/js/highcharts/themes/grid.js"
  13. type="text/javascript">
  14. </script>
  15. <link rel="stylesheet"
  16. href="<%=request.getContextPath()%>/resource/css/ztree/zTreeStyle.css"
  17. type="text/css">
  18. <script
  19. src="<%=request.getContextPath()%>/resource/js/ztree/jquery.ztree.all.min.js"
  20. type="text/javascript">
  21. </script>
  22. <!-- dialog begin -->
  23. <link rel="stylesheet"
  24. href="<%=request.getContextPath()%>/resource/js/dialog/dialog.css"
  25. type="text/css"></link>
  26. <link rel="stylesheet"
  27. href="<%=request.getContextPath()%>/resource/js/dialog/ibutton.css"
  28. type="text/css"></link>
  29. <script type="text/javascript"
  30. src="<%=request.getContextPath()%>/resource/js/dialog/jquery.box.js">
  31. </script>
  32. <script type="text/javascript"
  33. src="<%=request.getContextPath()%>/resource/js/dialog/jquery.dialog.js">
  34. </script>
  35. <script type="text/javascript"
  36. src="<%=request.getContextPath()%>/resource/js/dialog/jquery.ibutton.js">
  37. </script>
  38. <script type="text/javascript"
  39. src="<%=request.getContextPath()%>/resource/js/dialog/jquery.ishadow.js">
  40. </script>
  41. <script type="text/javascript"
  42. src="<%=request.getContextPath()%>/resource/js/dialog/jquery.scrollbarwidth.js">
  43. </script>
  44. <!-- dialog end -->
  45. <style type="text/css">
  46. .normal {
  47. border-right-style: solid;
  48. border-bottom-style: solid;
  49. border-left-style: solid;
  50. border-top-style: solid;
  51. border-top-color: #ffffff;
  52. border-left-color: #c1c1c1;
  53. border-right-color: #c1c1c1;
  54. border-bottom-color: #c1c1c1;
  55. border-width: 1px;
  56. width: 90px;
  57. height: 28px;
  58. float: left;
  59. margin-top: -1px;
  60. cursor: pointer;
  61. text-align: center;
  62. line-height: 28px;
  63. overflow: hidden;
  64. font-weight: bold;
  65. font-size: 12px;
  66. font-family: tahoma, arial, verdana, sans-serif;
  67. }
  68. .disable {
  69. border-right-style: solid;
  70. border-bottom-style: solid;
  71. border-left-style: solid;
  72. border-top-style: solid;
  73. border-top-color: #c1c1c1;
  74. border-left-color: #c1c1c1;
  75. border-right-color: #c1c1c1;
  76. border-bottom-color: #c1c1c1;
  77. border-width: 1px;
  78. width: 90px;
  79. height: 25px;
  80. float: left;
  81. margin-top: -1px;
  82. cursor: pointer;
  83. text-align: center;
  84. background-color: #e1e1e1;
  85. line-height: 25px;
  86. overflow: hidden;
  87. font-weight: bold;
  88. font-size: 12px;
  89. font-family: tahoma, arial, verdana, sans-serif;
  90. }
  91. .panelcontainer {
  92. width: 100%;
  93. height: 50px;
  94. border-style: solid;
  95. border-color: #C1C1C1;
  96. border-width: 1px;
  97. }
  98. .panelquery {
  99. width: 100%;
  100. height: 25px;
  101. background-color: #c1c1c1;
  102. line-height: 25px;
  103. }
  104. .panelquerytext {
  105. margin-left: 3px;
  106. font-weight: bold;
  107. font-size: 12px;
  108. font-family: tahoma, arial, verdana, sans-serif;
  109. }
  110. .querycondcontainer {
  111. line-height: 39px;
  112. padding: 3px;
  113. float: left;
  114. font-size: 12px;
  115. }
  116. .textMyself {
  117. font-family: Arial, Helvetica, sans-serif;
  118. font-size: 12px;
  119. font-style: normal;
  120. color: #000;
  121. font-weight: bold;
  122. }
  123. .textMyselfContent {
  124. font-family: Arial, Helvetica, sans-serif;
  125. font-size: 12px;
  126. font-style: normal;
  127. color: #000;
  128. }
  129. .NumberText {
  130. font-size: 20px;
  131. font-weight: bolder;
  132. color: #333;
  133. }
  134. </style>
  135. <script type="text/javascript">
  136. var queryType = "qb";
  137. var wpids = "";
  138. var recordDate = '<s:property value="recordDate"/>';
  139. $(document).ready(function() {
  140. $("#recordDate").val(recordDate);
  141. });
  142. function swap(obj) {
  143. document.getElementById('qb').className = "disable";
  144. document.getElementById('fd').className = "disable";
  145. document.getElementById('gf').className = "disable";
  146. document.getElementById('MHS_FDC').className = "disable";
  147. document.getElementById('NSS_FDC').className = "disable";
  148. document.getElementById('QS_FDC').className = "disable";
  149. document.getElementById('SBQ_FDC').className = "disable";
  150. document.getElementById('DWK_GDC').className = "disable";
  151. document.getElementById('PL_GDC').className = "disable";
  152. document.getElementById('MCH_GDC').className = "disable";
  153. document.getElementById('XH_GDC').className = "disable";
  154. obj.className = "normal";
  155. //document.getElementById('xlpanel').style.display = "none";
  156. if (obj.id != "fd" && obj.id != "gf" && obj.id != "qb") {
  157. queryType = "dc";
  158. wpids = obj.id;
  159. if(obj.id=="MHS_FDC")
  160. {
  161. $("#mhsxl").css('display','');
  162. $("#mhsfq").css('display','');
  163. $("#nssxl").css('display','none');
  164. $("#nssfq").css('display','none');
  165. $("#qsxl").css('display','none');
  166. $("#qsfq").css('display','none');
  167. $("#sbqxl").css('display','none');
  168. $("#sbqfq").css('display','none');
  169. $("#dwkxl").css('display','none');
  170. $("#dwkfq").css('display','none');
  171. $("#mchxl").css('display','none');
  172. $("#mchfq").css('display','none');
  173. $("#xhxl").css('display','none');
  174. $("#xhfq").css('display','none');
  175. $("#plxl").css('display','none');
  176. $("#plfq").css('display','none');
  177. }else if(obj.id=="NSS_FDC")
  178. {
  179. $("#mhsxl").css('display','');
  180. $("#mhsfq").css('display','');
  181. $("#nssxl").css('display','none');
  182. $("#nssfq").css('display','none');
  183. $("#qsxl").css('display','none');
  184. $("#qsfq").css('display','none');
  185. $("#sbqxl").css('display','none');
  186. $("#sbqfq").css('display','none');
  187. $("#dwkxl").css('display','none');
  188. $("#dwkfq").css('display','none');
  189. $("#mchxl").css('display','none');
  190. $("#mchfq").css('display','none');
  191. $("#xhxl").css('display','none');
  192. $("#xhfq").css('display','none');
  193. $("#plxl").css('display','none');
  194. $("#plfq").css('display','none');
  195. }
  196. else if(obj.id=="QS_FDC")
  197. {
  198. $("#mhsxl").css('display','none');
  199. $("#mhsfq").css('display','none');
  200. $("#nssxl").css('display','none');
  201. $("#nssfq").css('display','none');
  202. $("#qsxl").css('display','');
  203. $("#qsfq").css('display','');
  204. $("#sbqxl").css('display','none');
  205. $("#sbqfq").css('display','none');
  206. $("#dwkxl").css('display','none');
  207. $("#dwkfq").css('display','none');
  208. $("#mchxl").css('display','none');
  209. $("#mchfq").css('display','none');
  210. $("#xhxl").css('display','none');
  211. $("#xhfq").css('display','none');
  212. $("#plxl").css('display','none');
  213. $("#plfq").css('display','none');
  214. }else if(obj.id=="SBQ_FDC")
  215. {
  216. $("#mhsxl").css('display','none');
  217. $("#mhsfq").css('display','none');
  218. $("#nssxl").css('display','none');
  219. $("#nssfq").css('display','none');
  220. $("#qsxl").css('display','none');
  221. $("#qsfq").css('display','none');
  222. $("#sbqxl").css('display','');
  223. $("#sbqfq").css('display','');
  224. $("#dwkxl").css('display','none');
  225. $("#dwkfq").css('display','none');
  226. $("#mchxl").css('display','none');
  227. $("#mchfq").css('display','none');
  228. $("#xhxl").css('display','none');
  229. $("#xhfq").css('display','none');
  230. $("#plxl").css('display','none');
  231. $("#plfq").css('display','none');
  232. }else if(obj.id=="DWK_GDC")
  233. {
  234. $("#mhsxl").css('display','none');
  235. $("#mhsfq").css('display','none');
  236. $("#nssxl").css('display','none');
  237. $("#nssfq").css('display','none');
  238. $("#qsxl").css('display','none');
  239. $("#qsfq").css('display','none');
  240. $("#sbqxl").css('display','none');
  241. $("#sbqfq").css('display','none');
  242. $("#dwkxl").css('display','');
  243. $("#dwkfq").css('display','');
  244. $("#mchxl").css('display','none');
  245. $("#mchfq").css('display','none');
  246. $("#xhxl").css('display','none');
  247. $("#xhfq").css('display','none');
  248. $("#plxl").css('display','none');
  249. $("#plfq").css('display','none');
  250. }else if(obj.id=="PL_GDC")
  251. {
  252. $("#mhsxl").css('display','none');
  253. $("#mhsfq").css('display','none');
  254. $("#nssxl").css('display','none');
  255. $("#nssfq").css('display','none');
  256. $("#qsxl").css('display','none');
  257. $("#qsfq").css('display','none');
  258. $("#sbqxl").css('display','none');
  259. $("#sbqfq").css('display','none');
  260. $("#dwkxl").css('display','none');
  261. $("#dwkfq").css('display','none');
  262. $("#mchxl").css('display','none');
  263. $("#mchfq").css('display','none');
  264. $("#xhxl").css('display','none');
  265. $("#xhfq").css('display','none');
  266. $("#plxl").css('display','');
  267. $("#plfq").css('display','');
  268. }else if(obj.id=="MCH_GDC")
  269. {
  270. $("#mhsxl").css('display','none');
  271. $("#mhsfq").css('display','none');
  272. $("#nssxl").css('display','none');
  273. $("#nssfq").css('display','none');
  274. $("#qsxl").css('display','none');
  275. $("#qsfq").css('display','none');
  276. $("#sbqxl").css('display','none');
  277. $("#sbqfq").css('display','none');
  278. $("#dwkxl").css('display','none');
  279. $("#dwkfq").css('display','none');
  280. $("#mchxl").css('display','');
  281. $("#mchfq").css('display','');
  282. $("#xhxl").css('display','none');
  283. $("#xhfq").css('display','none');
  284. $("#plxl").css('display','none');
  285. $("#plfq").css('display','none');
  286. }else if(obj.id=="XH_GDC")
  287. {
  288. $("#mhsxl").css('display','none');
  289. $("#mhsfq").css('display','none');
  290. $("#nssxl").css('display','none');
  291. $("#nssfq").css('display','none');
  292. $("#qsxl").css('display','none');
  293. $("#qsfq").css('display','none');
  294. $("#sbqxl").css('display','none');
  295. $("#sbqfq").css('display','none');
  296. $("#dwkxl").css('display','none');
  297. $("#dwkfq").css('display','none');
  298. $("#mchxl").css('display','none');
  299. $("#mchfq").css('display','none');
  300. $("#xhxl").css('display','');
  301. $("#xhfq").css('display','');
  302. $("#plxl").css('display','none');
  303. $("#plfq").css('display','none');
  304. }
  305. $(".panelcontainer").css('height','150px');
  306. // document.getElementById('xlpanel').style.display = "";
  307. } else if (obj.id == "qb") {
  308. $("#mhsxl").css('display','none');
  309. $("#mhsfq").css('display','none');
  310. $("#nssxl").css('display','none');
  311. $("#nssfq").css('display','none');
  312. $("#qsxl").css('display','none');
  313. $("#qsfq").css('display','none');
  314. $("#sbqxl").css('display','none');
  315. $("#sbqfq").css('display','none');
  316. $("#dwkxl").css('display','none');
  317. $("#dwkfq").css('display','none');
  318. $("#mchxl").css('display','none');
  319. $("#mchfq").css('display','none');
  320. $("#xhxl").css('display','none');
  321. $("#xhfq").css('display','none');
  322. $("#plxl").css('display','none');
  323. $("#plfq").css('display','none');
  324. $(".panelcontainer").css('height','50px');
  325. queryType = "qb";
  326. } else if (obj.id == "fd") {
  327. $("#mhsxl").css('display','none');
  328. $("#mhsfq").css('display','none');
  329. $("#nssxl").css('display','none');
  330. $("#nssfq").css('display','none');
  331. $("#qsxl").css('display','none');
  332. $("#qsfq").css('display','none');
  333. $("#sbqxl").css('display','none');
  334. $("#sbqfq").css('display','none');
  335. $("#dwkxl").css('display','none');
  336. $("#dwkfq").css('display','none');
  337. $("#mchxl").css('display','none');
  338. $("#mchfq").css('display','none');
  339. $("#xhxl").css('display','none');
  340. $("#xhfq").css('display','none');
  341. $("#plxl").css('display','none');
  342. $("#plfq").css('display','none');
  343. $(".panelcontainer").css('height','50px');
  344. queryType = "fd";
  345. } else if (obj.id == "gf") {
  346. $("#mhsxl").css('display','none');
  347. $("#mhsfq").css('display','none');
  348. $("#nssxl").css('display','none');
  349. $("#nssfq").css('display','none');
  350. $("#qsxl").css('display','none');
  351. $("#qsfq").css('display','none');
  352. $("#sbqxl").css('display','none');
  353. $("#sbqfq").css('display','none');
  354. $("#dwkxl").css('display','none');
  355. $("#dwkfq").css('display','none');
  356. $("#mchxl").css('display','none');
  357. $("#mchfq").css('display','none');
  358. $("#xhxl").css('display','none');
  359. $("#xhfq").css('display','none');
  360. $("#plxl").css('display','none');
  361. $("#plfq").css('display','none');
  362. $(".panelcontainer").css('height','50px');
  363. queryType = "gf";
  364. }
  365. queryApData();
  366. }
  367. function queryApData() {
  368. clearInfo();
  369. var rd = $("#recordDate").val();
  370. if (rd == "") {
  371. alert("请选择日期!");
  372. return;
  373. }
  374. $
  375. .ajax( {
  376. url : "queryAp.action?queryType=" + queryType + "&wpIds="
  377. + wpids + "&lineIds=" + lines + "&wtIds=" + wtids
  378. + "&recordDate=" + rd,
  379. type : "post",
  380. cache : false,
  381. dataType : "json",
  382. data : {},
  383. ifModified : false,
  384. success : function(res) {
  385. $("#zjts").html(res["zjts"] + "");
  386. $("#zjrl").html(res["zjrl"] + "");
  387. $("#fdljh").html(res["fdljh"] + "");
  388. $("#fdlwc").html(res["fdlwc"] + "");
  389. $("#fdltq").html(res["fdltq"] + "");
  390. $("#swdljh").html(res["swdljh"] + "");
  391. $("#swdlwc").html(res["swdlwc"] + "");
  392. $("#swdltq").html(res["swdltq"] + "");
  393. $("#lyxsjh").html(res["lyxsjh"] + "");
  394. $("#lyxswc").html(res["lyxswc"] + "");
  395. $("#lyxstq").html(res["lyxstq"] + "");
  396. $("#zhcydljh").html(res["zhcydljh"] + "");
  397. $("#zhcydlwc").html(res["zhcydlwc"] + "");
  398. $("#zhcydltq").html(res["zhcydltq"] + "");
  399. $("#sbklyljh").html(res["sbklyljh"] + "");
  400. $("#sbklylwc").html(res["sbklylwc"] + "");
  401. $("#sbklyltq").html(res["sbklyltq"] + "");
  402. $("#dxkyxsjh").html(res["dxkyxsjh"] + "");
  403. $("#dxkyxswc").html(res["dxkyxswc"] + "");
  404. $("#dxkyxstq").html(res["dxkyxstq"] + "");
  405. $("#pjfsjh").html(res["pjfsjh"] + "");
  406. $("#pjfswc").html(res["pjfswc"] + "");
  407. $("#pjfstq").html(res["pjfstq"] + "");
  408. $("#yfdljh").html(res["yfdljh"] + "");
  409. $("#yfdlwc").html(res["yfdlwc"] + "");
  410. $("#yfdltq").html(res["yfdltq"] + "");
  411. $("#yswdljh").html(res["yswdljh"] + "");
  412. $("#yswdlwc").html(res["yswdlwc"] + "");
  413. $("#yswdltq").html(res["yswdltq"] + "");
  414. $("#ylyxsjh").html(res["ylyxsjh"] + "");
  415. $("#ylyxswc").html(res["ylyxswc"] + "");
  416. $("#ylyxstq").html(res["ylyxstq"] + "");
  417. $("#yzhcydljh").html(res["yzhcydljh"] + "");
  418. $("#yzhcydlwc").html(res["yzhcydlwc"] + "");
  419. $("#yzhcydltq").html(res["yzhcydltq"] + "");
  420. $("#ysbklyljh").html(res["ysbklyljh"] + "");
  421. $("#ysbklylwc").html(res["ysbklylwc"] + "");
  422. $("#ysbklyltq").html(res["ysbklyltq"] + "");
  423. $("#ydxkyxsjh").html(res["ydxkyxsjh"] + "");
  424. $("#ydxkyxswc").html(res["ydxkyxswc"] + "");
  425. $("#ydxkyxstq").html(res["ydxkyxstq"] + "");
  426. $("#ypjfsjh").html(res["ypjfsjh"] + "");
  427. $("#ypjfswc").html(res["ypjfswc"] + "");
  428. $("#ypjfstq").html(res["ypjfstq"] + "");
  429. $("#nfdljh").html(res["nfdljh"] + "");
  430. $("#nfdlwc").html(res["nfdlwc"] + "");
  431. $("#nswdljh").html(res["nswdljh"] + "");
  432. $("#nswdlwc").html(res["nswdlwc"] + "");
  433. $("#nlyxsjh").html(res["nlyxsjh"] + "");
  434. $("#nlyxswc").html(res["nlyxswc"] + "");
  435. $("#nzhcydljh").html(res["nzhcydljh"] + "");
  436. $("#nzhcydlwc").html(res["nzhcydlwc"] + "");
  437. $("#nsbklyljh").html(res["nsbklyljh"] + "");
  438. $("#nsbklylwc").html(res["nsbklylwc"] + "");
  439. $("#ndxkyxsjh").html(res["ndxkyxsjh"] + "");
  440. $("#ndxkyxswc").html(res["ndxkyxswc"] + "");
  441. $("#npjfsjh").html(res["npjfsjh"] + "");
  442. $("#npjfswc").html(res["npjfswc"] + "");
  443. }
  444. });
  445. }
  446. function queryApData(type, obj) {
  447. clearInfo();
  448. var rd = $("#recordDate").val();
  449. var lines = "";
  450. var wtids = "";
  451. if (type == "line") {
  452. queryType = "xl";
  453. lines = obj;
  454. } else if (type == "fq") {
  455. queryType = "fq";
  456. wtids = obj;
  457. } else if (type == "all") {
  458. queryType = "dc";
  459. }
  460. if (rd == "") {
  461. alert("请选择日期!");
  462. return;
  463. }
  464. $
  465. .ajax( {
  466. url : "queryAp.action?queryType=" + queryType + "&wpIds="
  467. + wpids + "&lineIds=" + lines + "&wtIds=" + wtids
  468. + "&recordDate=" + rd,
  469. type : "post",
  470. cache : false,
  471. dataType : "json",
  472. data : {},
  473. ifModified : false,
  474. success : function(res) {
  475. $("#zjts").html(res["zjts"] + "");
  476. $("#zjrl").html(res["zjrl"] + "");
  477. $("#fdljh").html(res["fdljh"] + "");
  478. $("#fdlwc").html(res["fdlwc"] + "");
  479. $("#fdltq").html(res["fdltq"] + "");
  480. $("#swdljh").html(res["swdljh"] + "");
  481. $("#swdlwc").html(res["swdlwc"] + "");
  482. $("#swdltq").html(res["swdltq"] + "");
  483. $("#lyxsjh").html(res["lyxsjh"] + "");
  484. $("#lyxswc").html(res["lyxswc"] + "");
  485. $("#lyxstq").html(res["lyxstq"] + "");
  486. $("#zhcydljh").html(res["zhcydljh"] + "");
  487. $("#zhcydlwc").html(res["zhcydlwc"] + "");
  488. $("#zhcydltq").html(res["zhcydltq"] + "");
  489. $("#sbklyljh").html(res["sbklyljh"] + "");
  490. $("#sbklylwc").html(res["sbklylwc"] + "");
  491. $("#sbklyltq").html(res["sbklyltq"] + "");
  492. $("#dxkyxsjh").html(res["dxkyxsjh"] + "");
  493. $("#dxkyxswc").html(res["dxkyxswc"] + "");
  494. $("#dxkyxstq").html(res["dxkyxstq"] + "");
  495. $("#pjfsjh").html(res["pjfsjh"] + "");
  496. $("#pjfswc").html(res["pjfswc"] + "");
  497. $("#pjfstq").html(res["pjfstq"] + "");
  498. $("#yfdljh").html(res["yfdljh"] + "");
  499. $("#yfdlwc").html(res["yfdlwc"] + "");
  500. $("#yfdltq").html(res["yfdltq"] + "");
  501. $("#yswdljh").html(res["yswdljh"] + "");
  502. $("#yswdlwc").html(res["yswdlwc"] + "");
  503. $("#yswdltq").html(res["yswdltq"] + "");
  504. $("#ylyxsjh").html(res["ylyxsjh"] + "");
  505. $("#ylyxswc").html(res["ylyxswc"] + "");
  506. $("#ylyxstq").html(res["ylyxstq"] + "");
  507. $("#yzhcydljh").html(res["yzhcydljh"] + "");
  508. $("#yzhcydlwc").html(res["yzhcydlwc"] + "");
  509. $("#yzhcydltq").html(res["yzhcydltq"] + "");
  510. $("#ysbklyljh").html(res["ysbklyljh"] + "");
  511. $("#ysbklylwc").html(res["ysbklylwc"] + "");
  512. $("#ysbklyltq").html(res["ysbklyltq"] + "");
  513. $("#ydxkyxsjh").html(res["ydxkyxsjh"] + "");
  514. $("#ydxkyxswc").html(res["ydxkyxswc"] + "");
  515. $("#ydxkyxstq").html(res["ydxkyxstq"] + "");
  516. $("#ypjfsjh").html(res["ypjfsjh"] + "");
  517. $("#ypjfswc").html(res["ypjfswc"] + "");
  518. $("#ypjfstq").html(res["ypjfstq"] + "");
  519. $("#nfdljh").html(res["nfdljh"] + "");
  520. $("#nfdlwc").html(res["nfdlwc"] + "");
  521. $("#nswdljh").html(res["nswdljh"] + "");
  522. $("#nswdlwc").html(res["nswdlwc"] + "");
  523. $("#nlyxsjh").html(res["nlyxsjh"] + "");
  524. $("#nlyxswc").html(res["nlyxswc"] + "");
  525. $("#nzhcydljh").html(res["nzhcydljh"] + "");
  526. $("#nzhcydlwc").html(res["nzhcydlwc"] + "");
  527. $("#nsbklyljh").html(res["nsbklyljh"] + "");
  528. $("#nsbklylwc").html(res["nsbklylwc"] + "");
  529. $("#ndxkyxsjh").html(res["ndxkyxsjh"] + "");
  530. $("#ndxkyxswc").html(res["ndxkyxswc"] + "");
  531. $("#npjfsjh").html(res["npjfsjh"] + "");
  532. $("#npjfswc").html(res["npjfswc"] + "");
  533. }
  534. });
  535. }
  536. function clearInfo() {
  537. $("#zjts").html("");
  538. $("#zjrl").html("");
  539. $("#fdljh").html("");
  540. $("#fdlwc").html("");
  541. $("#fdltq").html("");
  542. $("#swdljh").html("");
  543. $("#swdlwc").html("");
  544. $("#swdltq").html("");
  545. $("#lyxsjh").html("");
  546. $("#lyxswc").html("");
  547. $("#lyxstq").html("");
  548. $("#zhcydljh").html("");
  549. $("#zhcydlwc").html("");
  550. $("#zhcydltq").html("");
  551. $("#sbklyljh").html("");
  552. $("#sbklylwc").html("");
  553. $("#sbklyltq").html("");
  554. $("#dxkyxsjh").html("");
  555. $("#dxkyxswc").html("");
  556. $("#dxkyxstq").html("");
  557. $("#pjfsjh").html("");
  558. $("#pjfswc").html("");
  559. $("#pjfstq").html("");
  560. $("#yfdljh").html("");
  561. $("#yfdlwc").html("");
  562. $("#yfdltq").html("");
  563. $("#yswdljh").html("");
  564. $("#yswdlwc").html("");
  565. $("#yswdltq").html("");
  566. $("#ylyxsjh").html("");
  567. $("#ylyxswc").html("");
  568. $("#ylyxstq").html("");
  569. $("#yzhcydljh").html("");
  570. $("#yzhcydlwc").html("");
  571. $("#yzhcydltq").html("");
  572. $("#ysbklyljh").html("");
  573. $("#ysbklylwc").html("");
  574. $("#ysbklyltq").html("");
  575. $("#ydxkyxsjh").html("");
  576. $("#ydxkyxswc").html("");
  577. $("#ydxkyxstq").html("");
  578. $("#ypjfsjh").html("");
  579. $("#ypjfswc").html("");
  580. $("#ypjfstq").html("");
  581. $("#nfdljh").html("");
  582. $("#nfdlwc").html("");
  583. $("#nswdljh").html("");
  584. $("#nswdlwc").html("");
  585. $("#nlyxsjh").html("");
  586. $("#nlyxswc").html("");
  587. $("#nzhcydljh").html("");
  588. $("#nzhcydlwc").html("");
  589. $("#nsbklyljh").html("");
  590. $("#nsbklylwc").html("");
  591. $("#ndxkyxsjh").html("");
  592. $("#ndxkyxswc").html("");
  593. $("#npjfsjh").html("");
  594. $("#npjfswc").html("");
  595. }
  596. </script>
  597. </head>
  598. <body>
  599. <form action="" method="post" id="f1">
  600. <div class="panelcontainer">
  601. <div class="querycondcontainer">
  602. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  603. <tr>
  604. <td align="left" width="20%" >
  605. 日期:
  606. <input type="text" class="Wdate"
  607. onFocus="WdatePicker({dateFmt:'yyyy-MM-dd',isShowWeek:true,readOnly:true})"
  608. id="recordDate" name="recordDate" onchange="queryApData();" />
  609. </td>
  610. </tr>
  611. </table>
  612. <!-- 麻黄山 -->
  613. <table id="mhsxl" width="100%" border="0" cellspacing="0" cellpadding="0" style="display: none">
  614. <tr>
  615. <td align="left" width="20%" >
  616. <a target="_self" onclick="queryApData('all','all')">全部</a>
  617. ||
  618. <a target="_self" onclick="queryApData('line','MHS01_XL')">麻黄山一号集电线路</a>
  619. ||
  620. <a target="_self" onclick="queryApData('line','MHS02_XL')">麻黄山二号集电线路</a>
  621. ||
  622. <a target="_self" onclick="queryApData('line','MHS03_XL')">麻黄山三号集电线路</a>
  623. </td>
  624. </tr>
  625. </table>
  626. <table id="mhsfq" width="100%" border="0" cellspacing="0" cellpadding="0" style="display: none">
  627. <tr>
  628. <td align="left" width="20%" >
  629. <a target="_self" onclick="queryApData('all','all')">全部</a>
  630. ||
  631. <a target="_self" onclick="queryApData('fq','MHS01_GC')">麻黄山一期工程</a>
  632. </td>
  633. </tr>
  634. </table>
  635. <!-- 牛首山 -->
  636. <table id="nssxl" width="100%" border="0" cellspacing="0" cellpadding="0" style="display: none">
  637. <tr>
  638. <td align="left" width="20%" >
  639. <a target="_self" onclick="queryApData('all','all')">全部</a>
  640. ||
  641. <a target="_self" onclick="queryApData('line','NSS01_XL')">牛首山一号线</a>
  642. ||
  643. <a target="_self" onclick="queryApData('line','NSS02_XL')">牛首山二号线</a>
  644. ||
  645. <a target="_self" onclick="queryApData('line','NSS03_XL')">牛首山三号线</a>
  646. ||
  647. <a target="_self" onclick="queryApData('line','NSS04_XL')">牛首山四号线</a>
  648. ||
  649. <a target="_self" onclick="queryApData('line','NSS05_XL')">牛首山五号线</a>
  650. ||
  651. <a target="_self" onclick="queryApData('line','NSS06_XL')">牛首山六号线</a>
  652. ||
  653. <a target="_self" onclick="queryApData('line','NSS07_XL')">牛首山七号线</a>
  654. ||
  655. <a target="_self" onclick="queryApData('line','NSS08_XL')">牛首山八号线</a>
  656. ||
  657. <a target="_self" onclick="queryApData('line','NSS09_XL')">牛首山九号线</a>
  658. </td>
  659. </tr>
  660. </table>
  661. <table id="nssfq" width="100%" border="0" cellspacing="0" cellpadding="0" style="display: none">
  662. <tr>
  663. <td align="left" width="20%" >
  664. <a target="_self" onclick="queryApData('all','all')">全部</a>
  665. ||
  666. <a target="_self" onclick="queryApData('fq','NSS01_GC')">牛首山一期工程</a>
  667. ||
  668. <a target="_self" onclick="queryApData('fq','NSS02_GC')">牛首山一期工程</a>
  669. ||
  670. <a target="_self" onclick="queryApData('fq','NSS03_GC')">牛首山一期工程</a>
  671. </td>
  672. </tr>
  673. </table>
  674. <!-- 青山 -->
  675. <table id="qsxl" width="100%" border="0" cellspacing="0" cellpadding="0" style="display: none">
  676. <tr>
  677. <td align="left" width="20%" >
  678. <a target="_self" onclick="queryApData('all','all')">全部</a>
  679. ||
  680. <a target="_self" onclick="queryApData('line','QS01_XL')">青山一号集电线路</a>
  681. ||
  682. <a target="_self" onclick="queryApData('line','QS02_XL')">青山二号集电线路</a>
  683. ||
  684. <a target="_self" onclick="queryApData('line','QS03_XL')">青山三号集电线路</a>
  685. ||
  686. <a target="_self" onclick="queryApData('line','QS04_XL')">青山四号集电线路</a>
  687. ||
  688. <a target="_self" onclick="queryApData('line','QS05_XL')">青山五号集电线路</a>
  689. ||
  690. <a target="_self" onclick="queryApData('line','QS06_XL')">青山六号集电线路</a>
  691. </td>
  692. </tr>
  693. </table>
  694. <table id="qsfq" width="100%" border="0" cellspacing="0" cellpadding="0" style="display: none">
  695. <tr>
  696. <td align="left" width="20%" >
  697. <a target="_self" onclick="queryApData('all','all')">全部</a>
  698. ||
  699. <a target="_self" onclick="queryApData('fq','QS01_GC')">青山一期工程</a>
  700. ||
  701. <a target="_self" onclick="queryApData('fq','QS02_GC')">青山二期工程</a>
  702. </td>
  703. </tr>
  704. </table>
  705. <!-- 石板泉 -->
  706. <table id="sbqxl" width="100%" border="0" cellspacing="0" cellpadding="0" style="display: none">
  707. <tr>
  708. <td align="left" width="20%" >
  709. <a target="_self" onclick="queryApData('all','all')">全部</a>
  710. ||
  711. <a target="_self" onclick="queryApData('line','SBQ01_XL')">石板泉一号集电线路</a>
  712. ||
  713. <a target="_self" onclick="queryApData('line','SBQ02_XL')">石板泉一号集电线路</a>
  714. ||
  715. <a target="_self" onclick="queryApData('line','SBQ03_XL')">石板泉一号集电线路</a>
  716. </td>
  717. </tr>
  718. </table>
  719. <table id="sbqfq" width="100%" border="0" cellspacing="0" cellpadding="0" style="display: none">
  720. <tr>
  721. <td align="left" width="20%" >
  722. <a target="_self" onclick="queryApData('all','all')">全部</a>
  723. ||
  724. <a target="_self" onclick="queryApData('fq','SBQ01_GC')">石板泉一期工程</a>
  725. </td>
  726. </tr>
  727. </table>
  728. <!-- 马场湖 -->
  729. <table id="mchxl" width="100%" border="0" cellspacing="0" cellpadding="0" style="display: none">
  730. <tr>
  731. <td align="left" width="20%" >
  732. <a target="_self" onclick="queryApData('all','all')">全部</a>
  733. ||
  734. <a target="_self" onclick="queryApData('line','MCH01_XL')">马场湖一号线</a>
  735. ||
  736. <a target="_self" onclick="queryApData('line','MCH02_XL')">马场湖二号线</a>
  737. ||
  738. <a target="_self" onclick="queryApData('line','MCH03_XL')">马场湖三号线</a>
  739. ||
  740. <a target="_self" onclick="queryApData('line','MCH04_XL')">马场湖四号线</a>
  741. ||
  742. <a target="_self" onclick="queryApData('line','MCH05_XL')">马场湖五号线</a>
  743. ||
  744. <a target="_self" onclick="queryApData('line','MCH06_XL')">马场湖六号线</a>
  745. ||
  746. <a target="_self" onclick="queryApData('line','MCH07_XL')">马场湖七号线</a>
  747. ||
  748. <a target="_self" onclick="queryApData('line','MCH08_XL')">马场湖八号线</a>
  749. ||
  750. <a target="_self" onclick="queryApData('line','MCH09_XL')">马场湖九号线</a>
  751. ||
  752. <a target="_self" onclick="queryApData('line','MCH10_XL')">马场湖十号线</a>
  753. </td>
  754. </tr>
  755. </table>
  756. <table id="mchfq" width="100%" border="0" cellspacing="0" cellpadding="0" style="display: none">
  757. <tr>
  758. <td align="left" width="20%" >
  759. <a target="_self" onclick="queryApData('all','all')">全部</a>
  760. ||
  761. <a target="_self" onclick="queryApData('fq','MCH01_GC')">马场湖一期工程</a>
  762. </td>
  763. </tr>
  764. </table>
  765. <!-- 宣和 -->
  766. <table id="xhxl" width="100%" border="0" cellspacing="0" cellpadding="0" style="display: none">
  767. <tr>
  768. <td align="left" width="20%" >
  769. <a target="_self" onclick="queryApData('all','all')">全部</a>
  770. ||
  771. <a target="_self" onclick="queryApData('line','XH01_XL')">宣和一号集电线路</a>
  772. ||
  773. <a target="_self" onclick="queryApData('line','XH02_XL')">宣和二号集电线路</a>
  774. ||
  775. <a target="_self" onclick="queryApData('line','XH03_XL')">宣和三号集电线路</a>
  776. ||
  777. <a target="_self" onclick="queryApData('line','XH04_XL')">宣和四号集电线路</a>
  778. </td>
  779. </tr>
  780. </table>
  781. <table id="xhfq" width="100%" border="0" cellspacing="0" cellpadding="0" style="display: none">
  782. <tr>
  783. <td align="left" width="20%" >
  784. <a target="_self" onclick="queryApData('all','all')">全部</a>
  785. ||
  786. <a target="_self" onclick="queryApData('fq','XH01_GC')">宣和一期工程</a>
  787. </td>
  788. </tr>
  789. </table>
  790. <!-- 平罗 -->
  791. <table id="plxl" width="100%" border="0" cellspacing="0" cellpadding="0" style="display: none">
  792. <tr>
  793. <td align="left" width="20%" >
  794. <a target="_self" onclick="queryApData('all','all')">全部</a>
  795. ||
  796. <a target="_self" onclick="queryApData('line','PL01_XL')">平罗一号集电线路</a>
  797. ||
  798. <a target="_self" onclick="queryApData('line','PL02_XL')">平罗二号集电线路</a>
  799. ||
  800. <a target="_self" onclick="queryApData('line','PL03_XL')">平罗三号集电线路</a>
  801. ||
  802. <a target="_self" onclick="queryApData('line','PL04_XL')">平罗四号集电线路</a>
  803. ||
  804. <a target="_self" onclick="queryApData('line','PL05_XL')">平罗五号集电线路</a>
  805. ||
  806. <a target="_self" onclick="queryApData('line','PL06_XL')">平罗六号集电线路</a>
  807. ||
  808. <a target="_self" onclick="queryApData('line','PL07_XL')">平罗七号集电线路</a>
  809. </td>
  810. </tr>
  811. </table>
  812. <table id="plfq" width="100%" border="0" cellspacing="0" cellpadding="0" style="display: none">
  813. <tr>
  814. <td align="left" width="20%" >
  815. <a target="_self" onclick="queryApData('all','all')">全部</a>
  816. ||
  817. <a target="_self" onclick="queryApData('fq','PL01_GC')">平罗一期工程</a>
  818. ||
  819. <a target="_self" onclick="queryApData('fq','PL02_GC')">平罗二期工程</a>
  820. </td>
  821. </tr>
  822. </table>
  823. <!-- 大武口 -->
  824. <table id="dwkxl" width="100%" border="0" cellspacing="0" cellpadding="0" style="display: none">
  825. <tr>
  826. <td align="left" width="20%" >
  827. <a target="_self" onclick="queryApData('all','all')">全部</a>
  828. ||
  829. <a target="_self" onclick="queryApData('line','DWK01_XL')">大武口一号集电线路</a>
  830. ||
  831. <a target="_self" onclick="queryApData('line','DWK02_XL')">大武口二号集电线路</a>
  832. </td>
  833. </tr>
  834. </table>
  835. <table id="dwkfq" width="100%" border="0" cellspacing="0" cellpadding="0" style="display: none">
  836. <tr>
  837. <td align="left" width="20%" >
  838. <a target="_self" onclick="queryApData('all','all')">全部</a>
  839. ||
  840. <a target="_self" onclick="queryApData('fq','DWK01_GC')">大武口一期工程</a>
  841. </td>
  842. </tr>
  843. </table>
  844. </div>
  845. </div>
  846. <div id="qb" onclick="swap(this);" class="normal">
  847. 全部
  848. </div>
  849. <div id="fd" onclick="swap(this);" class="disable">
  850. 风电
  851. </div>
  852. <div id="gf" onclick="swap(this);" class="disable">
  853. 光伏
  854. </div>
  855. <div id="MHS_FDC" onclick="swap(this);" class="disable">
  856. 麻黄山
  857. </div>
  858. <div id="NSS_FDC" onclick="swap(this);" class="disable">
  859. 牛首山
  860. </div>
  861. <div id="QS_FDC" onclick="swap(this);" class="disable">
  862. 青山
  863. </div>
  864. <div id="SBQ_FDC" onclick="swap(this);" class="disable">
  865. 石板泉
  866. </div>
  867. <div id="DWK_GDC" onclick="swap(this);" class="disable">
  868. 大武口
  869. </div>
  870. <div id="PL_GDC" onclick="swap(this);" class="disable">
  871. 平罗
  872. </div>
  873. <div id="MCH_GDC" onclick="swap(this);" class="disable">
  874. 马场湖
  875. </div>
  876. <div id="XH_GDC" onclick="swap(this);" class="disable">
  877. 宣和
  878. </div>
  879. <div style="width: 100%" id="chartContainer">
  880. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  881. <tr>
  882. <td align="left" width="20%" bgcolor="#D2F0FF" colspan="3">
  883. <table width="100%" border="0" cellspacing="1" cellpadding="0"
  884. bgcolor="#FFFFFF">
  885. <tr>
  886. <td align="left" width="20%" bgcolor="#FFFFD0" height="30">
  887. &nbsp;&nbsp;
  888. <span class="textMyselfContent">装机台数:</span><span class=""><span
  889. id="zjts"></span>
  890. </span>
  891. </td>
  892. <td align="left" width="20%" bgcolor="#FFFFD0" colspan="3">
  893. &nbsp;&nbsp;
  894. <span class="textMyselfContent">装机容量:</span><span class=""><span
  895. id="zjrl"></span>
  896. </span>
  897. </td>
  898. </tr>
  899. <tr>
  900. <td colspan="5">
  901. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  902. <tr>
  903. <td width="35%" align="center">
  904. <table width="99%" border="0" bgcolor="#CCCCCC"
  905. cellspacing="1" cellpadding="0">
  906. 日信息
  907. <tr>
  908. <td width="20%" height="40" align="center"
  909. bgcolor="#FFFFFF">
  910. &nbsp;
  911. <span class="textMyself">指标名称</span>
  912. </td>
  913. <td width="20%" height="40" align="center"
  914. bgcolor="#FFFFFF">
  915. &nbsp;
  916. <span class="textMyself">单位</span>
  917. </td>
  918. <td width="20%" height="40" align="center"
  919. bgcolor="#FFFFFF">
  920. &nbsp;
  921. <span class="textMyself">计划值</span>
  922. </td>
  923. <td width="20%" height="40" align="center"
  924. bgcolor="#FFFFFF">
  925. &nbsp;
  926. <span class="textMyself">完成值</span>
  927. </td>
  928. <td width="20%" height="40" align="center"
  929. bgcolor="#FFFFFF">
  930. &nbsp;
  931. <span class="textMyself">同比完成值</span>
  932. </td>
  933. </tr>
  934. <tr>
  935. <td bgcolor="#FFFFFF" width="20%" height="40"
  936. align="center">
  937. &nbsp;
  938. <span class="textMyselfContent">发电量</span>
  939. </td>
  940. <td bgcolor="#FFFFFF" width="20%" height="40">
  941. <span class=""><span id="fdl">万千瓦时</span>
  942. </span>
  943. </td>
  944. <td bgcolor="#FFFFFF" width="20%" height="40">
  945. <span class=""><span id="fdljh"></span>
  946. </span>
  947. </td>
  948. <td bgcolor="#FFFFFF" width="20%" height="40">
  949. <span class=""><span id="fdlwc"></span>
  950. </span>
  951. </td>
  952. <td bgcolor="#FFFFFF" width="20%" height="40">
  953. <span class=""><span id="fdltq"></span>
  954. </span>
  955. </td>
  956. </tr>
  957. <tr>
  958. <td bgcolor="#FFFFFF" width="20%" height="40"
  959. align="center">
  960. &nbsp;
  961. <span class="textMyselfContent">上网电量</span>
  962. </td>
  963. <td bgcolor="#FFFFFF" width="20%" height="40">
  964. <span class=""><span id="swdl">万千瓦时</span>
  965. </span>
  966. </td>
  967. <td bgcolor="#FFFFFF" width="20%" height="40">
  968. <span class=""><span id="swdljh"></span>
  969. </span>
  970. </td>
  971. <td bgcolor="#FFFFFF" width="20%" height="40">
  972. <span class=""><span id="swdlwc"></span>
  973. </span>
  974. </td>
  975. <td bgcolor="#FFFFFF" width="20%" height="40">
  976. <span class=""><span id="swdltq"></span>
  977. </span>
  978. </td>
  979. </tr>
  980. <tr>
  981. <td bgcolor="#FFFFFF" width="20%" height="40"
  982. align="center">
  983. &nbsp;
  984. <span class="textMyselfContent">利用小时数</span>
  985. </td>
  986. <td bgcolor="#FFFFFF" width="20%" height="40">
  987. <span class=""><span id="lyxs">小时</span>
  988. </span>
  989. </td>
  990. <td bgcolor="#FFFFFF" width="20%" height="40">
  991. <span class=""><span id="lyxsjh"></span>
  992. </span>
  993. </td>
  994. <td bgcolor="#FFFFFF" width="20%" height="40">
  995. <span class=""><span id="lyxswc"></span>
  996. </span>
  997. </td>
  998. <td bgcolor="#FFFFFF" width="20%" height="40">
  999. <span class=""><span id="lyxstq"></span>
  1000. </span>
  1001. </td>
  1002. </tr>
  1003. <tr>
  1004. <td bgcolor="#FFFFFF" width="20%" height="40"
  1005. align="center">
  1006. &nbsp;
  1007. <span class="textMyselfContent">综合厂用电率</span>
  1008. </td>
  1009. <td bgcolor="#FFFFFF" width="20%" height="40">
  1010. <span class=""><span id="zhcydl">%</span>
  1011. </span>
  1012. </td>
  1013. <td bgcolor="#FFFFFF" width="20%" height="40">
  1014. <span class=""><span id="zhcydljh"></span>
  1015. </span>
  1016. </td>
  1017. <td bgcolor="#FFFFFF" width="20%" height="40">
  1018. <span class=""><span id="zhcydlwc"></span>
  1019. </span>
  1020. </td>
  1021. <td bgcolor="#FFFFFF" width="20%" height="40">
  1022. <span class=""><span id="zhcydltq"></span>
  1023. </span>
  1024. </td>
  1025. </tr>
  1026. <tr>
  1027. <td bgcolor="#FFFFFF" width="20%" height="40"
  1028. align="center">
  1029. &nbsp;
  1030. <span class="textMyselfContent">设备可利用率</span>
  1031. </td>
  1032. <td bgcolor="#FFFFFF" width="20%" height="40">
  1033. <span class=""><span id="sbklyl">%</span>
  1034. </span>
  1035. </td>
  1036. <td bgcolor="#FFFFFF" width="20%" height="40">
  1037. <span class=""><span id="sbklyljh"></span>
  1038. </span>
  1039. </td>
  1040. <td bgcolor="#FFFFFF" width="20%" height="40">
  1041. <span class=""><span id="sbklylwc"></span>
  1042. </span>
  1043. </td>
  1044. <td bgcolor="#FFFFFF" width="20%" height="40">
  1045. <span class=""><span id="sbklyltq"></span>
  1046. </span>
  1047. </td>
  1048. </tr>
  1049. <tr>
  1050. <td bgcolor="#FFFFFF" width="20%" height="40"
  1051. align="center">
  1052. &nbsp;
  1053. <span class="textMyselfContent">等效可用系数</span>
  1054. </td>
  1055. <td bgcolor="#FFFFFF" width="20%" height="40">
  1056. <span class=""><span id="dxkyxs">%</span>
  1057. </span>
  1058. </td>
  1059. <td bgcolor="#FFFFFF" width="20%" height="40">
  1060. <span class=""><span id="dxkyxsjh"></span>
  1061. </span>
  1062. </td>
  1063. <td bgcolor="#FFFFFF" width="20%" height="40">
  1064. <span class=""><span id="dxkyxswc"></span>
  1065. </span>
  1066. </td>
  1067. <td bgcolor="#FFFFFF" width="20%" height="40">
  1068. <span class=""><span id="dxkyxstq"></span>
  1069. </span>
  1070. </td>
  1071. </tr>
  1072. <tr>
  1073. <td bgcolor="#FFFFFF" height="40" align="center">
  1074. &nbsp;
  1075. <span class="textMyselfContent">平均风速/累计辐射总量</span>
  1076. </td>
  1077. <td bgcolor="#FFFFFF" width="20%" height="40">
  1078. <span class=""><span id="pjfs">m/s</span>
  1079. </span>
  1080. </td>
  1081. <td bgcolor="#FFFFFF" width="20%" height="40">
  1082. <span class=""><span id="pjfsjh"></span>
  1083. </span>
  1084. </td>
  1085. <td bgcolor="#FFFFFF" width="20%" height="40">
  1086. <span class=""><span id="pjfswc"></span>
  1087. </span>
  1088. </td>
  1089. <td bgcolor="#FFFFFF" width="20%" height="40">
  1090. <span class=""><span id="pjfstq"></span>
  1091. </span>
  1092. </td>
  1093. </tr>
  1094. </table>
  1095. </td>
  1096. <td width="35%" align="center">
  1097. <table width="99%" border="0" bgcolor="#CCCCCC"
  1098. cellspacing="1" cellpadding="0">
  1099. 月信息
  1100. <tr>
  1101. <td width="20%" height="40" align="center"
  1102. bgcolor="#FFFFFF">
  1103. &nbsp;
  1104. <span class="textMyself">指标名称</span>
  1105. </td>
  1106. <td width="20%" height="40" align="center"
  1107. bgcolor="#FFFFFF">
  1108. &nbsp;
  1109. <span class="textMyself">单位</span>
  1110. </td>
  1111. <td width="20%" height="40" align="center"
  1112. bgcolor="#FFFFFF">
  1113. &nbsp;
  1114. <span class="textMyself">计划值</span>
  1115. </td>
  1116. <td width="20%" height="40" align="center"
  1117. bgcolor="#FFFFFF">
  1118. &nbsp;
  1119. <span class="textMyself">完成值</span>
  1120. </td>
  1121. <td width="20%" height="40" align="center"
  1122. bgcolor="#FFFFFF">
  1123. &nbsp;
  1124. <span class="textMyself">同比完成值</span>
  1125. </td>
  1126. </tr>
  1127. <tr>
  1128. <td bgcolor="#FFFFFF" width="20%" height="40"
  1129. align="center">
  1130. &nbsp;
  1131. <span class="textMyselfContent">发电量</span>
  1132. </td>
  1133. <td bgcolor="#FFFFFF" width="20%" height="40">
  1134. <span class=""><span id="yfdl">万千瓦时</span>
  1135. </span>
  1136. </td>
  1137. <td bgcolor="#FFFFFF" width="20%" height="40">
  1138. <span class=""><span id="yfdljh"></span>
  1139. </span>
  1140. </td>
  1141. <td bgcolor="#FFFFFF" width="20%" height="40">
  1142. <span class=""><span id="yfdlwc"></span>
  1143. </span>
  1144. </td>
  1145. <td bgcolor="#FFFFFF" width="20%" height="40">
  1146. <span class=""><span id="yfdltq"></span>
  1147. </span>
  1148. </td>
  1149. </tr>
  1150. <tr>
  1151. <td bgcolor="#FFFFFF" width="20%" height="40"
  1152. align="center">
  1153. &nbsp;
  1154. <span class="textMyselfContent">上网电量</span>
  1155. </td>
  1156. <td bgcolor="#FFFFFF" width="20%" height="40">
  1157. <span class=""><span id="yswdl">万千瓦时</span>
  1158. </span>
  1159. </td>
  1160. <td bgcolor="#FFFFFF" width="20%" height="40">
  1161. <span class=""><span id="yswdljh"></span>
  1162. </span>
  1163. </td>
  1164. <td bgcolor="#FFFFFF" width="20%" height="40">
  1165. <span class=""><span id="yswdlwc"></span>
  1166. </span>
  1167. </td>
  1168. <td bgcolor="#FFFFFF" width="20%" height="40">
  1169. <span class=""><span id="yswdltq"></span>
  1170. </span>
  1171. </td>
  1172. </tr>
  1173. <tr>
  1174. <td bgcolor="#FFFFFF" width="20%" height="40"
  1175. align="center">
  1176. &nbsp;
  1177. <span class="textMyselfContent">利用小时数</span>
  1178. </td>
  1179. <td bgcolor="#FFFFFF" width="20%" height="40">
  1180. <span class=""><span id="ylyxs">小时</span>
  1181. </span>
  1182. </td>
  1183. <td bgcolor="#FFFFFF" width="20%" height="40">
  1184. <span class=""><span id="ylyxsjh"></span>
  1185. </span>
  1186. </td>
  1187. <td bgcolor="#FFFFFF" width="20%" height="40">
  1188. <span class=""><span id="ylyxswc"></span>
  1189. </span>
  1190. </td>
  1191. <td bgcolor="#FFFFFF" width="20%" height="40">
  1192. <span class=""><span id="ylyxstq"></span>
  1193. </span>
  1194. </td>
  1195. </tr>
  1196. <tr>
  1197. <td bgcolor="#FFFFFF" width="20%" height="40"
  1198. align="center">
  1199. &nbsp;
  1200. <span class="textMyselfContent">综合厂用电率</span>
  1201. </td>
  1202. <td bgcolor="#FFFFFF" width="20%" height="40">
  1203. <span class=""><span id="yzhcydl">%</span>
  1204. </span>
  1205. </td>
  1206. <td bgcolor="#FFFFFF" width="20%" height="40">
  1207. <span class=""><span id="yzhcydljh"></span>
  1208. </span>
  1209. </td>
  1210. <td bgcolor="#FFFFFF" width="20%" height="40">
  1211. <span class=""><span id="yzhcydlwc"></span>
  1212. </span>
  1213. </td>
  1214. <td bgcolor="#FFFFFF" width="20%" height="40">
  1215. <span class=""><span id="yzhcydltq"></span>
  1216. </span>
  1217. </td>
  1218. </tr>
  1219. <tr>
  1220. <td bgcolor="#FFFFFF" width="20%" height="40"
  1221. align="center">
  1222. &nbsp;
  1223. <span class="textMyselfContent">设备可利用率</span>
  1224. </td>
  1225. <td bgcolor="#FFFFFF" width="20%" height="40">
  1226. <span class=""><span id="ysbklyl">%</span>
  1227. </span>
  1228. </td>
  1229. <td bgcolor="#FFFFFF" width="20%" height="40">
  1230. <span class=""><span id="ysbklyljh"></span>
  1231. </span>
  1232. </td>
  1233. <td bgcolor="#FFFFFF" width="20%" height="40">
  1234. <span class=""><span id="ysbklylwc"></span>
  1235. </span>
  1236. </td>
  1237. <td bgcolor="#FFFFFF" width="20%" height="40">
  1238. <span class=""><span id="ysbklyltq"></span>
  1239. </span>
  1240. </td>
  1241. </tr>
  1242. <tr>
  1243. <td bgcolor="#FFFFFF" width="20%" height="40"
  1244. align="center">
  1245. &nbsp;
  1246. <span class="textMyselfContent">等效可用系数</span>
  1247. </td>
  1248. <td bgcolor="#FFFFFF" width="20%" height="40">
  1249. <span class=""><span id="ydxkyxs">%</span>
  1250. </span>
  1251. </td>
  1252. <td bgcolor="#FFFFFF" width="20%" height="40">
  1253. <span class=""><span id="ydxkyxsjh"></span>
  1254. </span>
  1255. </td>
  1256. <td bgcolor="#FFFFFF" width="20%" height="40">
  1257. <span class=""><span id="ydxkyxswc"></span>
  1258. </span>
  1259. </td>
  1260. <td bgcolor="#FFFFFF" width="20%" height="40">
  1261. <span class=""><span id="ydxkyxstq"></span>
  1262. </span>
  1263. </td>
  1264. </tr>
  1265. <tr>
  1266. <td bgcolor="#FFFFFF" height="40" align="center">
  1267. &nbsp;
  1268. <span class="textMyselfContent">平均风速/累计辐射总量</span>
  1269. </td>
  1270. <td bgcolor="#FFFFFF" width="20%" height="40">
  1271. <span class=""><span id="ypjfs">m/s</span>
  1272. </span>
  1273. </td>
  1274. <td bgcolor="#FFFFFF" width="20%" height="40">
  1275. <span class=""><span id="ypjfsjh"></span>
  1276. </span>
  1277. </td>
  1278. <td bgcolor="#FFFFFF" width="20%" height="40">
  1279. <span class=""><span id="ypjfswc"></span>
  1280. </span>
  1281. </td>
  1282. <td bgcolor="#FFFFFF" width="20%" height="40">
  1283. <span class=""><span id="ypjfstq"></span>
  1284. </span>
  1285. </td>
  1286. </tr>
  1287. </table>
  1288. </td>
  1289. <td width="30%" align="center">
  1290. <table width="99%" border="0" bgcolor="#CCCCCC"
  1291. cellspacing="1" cellpadding="0">
  1292. 年信息
  1293. <tr>
  1294. <td width="20%" height="40" align="center"
  1295. bgcolor="#FFFFFF">
  1296. &nbsp;
  1297. <span class="textMyself">指标名称</span>
  1298. </td>
  1299. <td width="20%" height="40" align="center"
  1300. bgcolor="#FFFFFF">
  1301. &nbsp;
  1302. <span class="textMyself">单位</span>
  1303. </td>
  1304. <td width="20%" height="40" align="center"
  1305. bgcolor="#FFFFFF">
  1306. &nbsp;
  1307. <span class="textMyself">计划值</span>
  1308. </td>
  1309. <td width="20%" height="40" align="center"
  1310. bgcolor="#FFFFFF">
  1311. &nbsp;
  1312. <span class="textMyself">完成值</span>
  1313. </td>
  1314. </tr>
  1315. <tr>
  1316. <td bgcolor="#FFFFFF" width="20%" height="40"
  1317. align="center">
  1318. &nbsp;
  1319. <span class="textMyselfContent">发电量</span>
  1320. </td>
  1321. <td bgcolor="#FFFFFF" width="20%" height="40">
  1322. <span class=""><span id="nfdl">万千瓦时</span>
  1323. </span>
  1324. </td>
  1325. <td bgcolor="#FFFFFF" width="20%" height="40">
  1326. <span class=""><span id="nfdljh"></span>
  1327. </span>
  1328. </td>
  1329. <td bgcolor="#FFFFFF" width="20%" height="40">
  1330. <span class=""><span id="nfdlwc"></span>
  1331. </span>
  1332. </td>
  1333. </tr>
  1334. <tr>
  1335. <td bgcolor="#FFFFFF" width="20%" height="40"
  1336. align="center">
  1337. &nbsp;
  1338. <span class="textMyselfContent">上网电量</span>
  1339. </td>
  1340. <td bgcolor="#FFFFFF" width="20%" height="40">
  1341. <span class=""><span id="nswdl">万千瓦时</span>
  1342. </span>
  1343. </td>
  1344. <td bgcolor="#FFFFFF" width="20%" height="40">
  1345. <span class=""><span id="nswdljh"></span>
  1346. </span>
  1347. </td>
  1348. <td bgcolor="#FFFFFF" width="20%" height="40">
  1349. <span class=""><span id="nswdlwc"></span>
  1350. </span>
  1351. </td>
  1352. </tr>
  1353. <tr>
  1354. <td bgcolor="#FFFFFF" width="20%" height="40"
  1355. align="center">
  1356. &nbsp;
  1357. <span class="textMyselfContent">利用小时数</span>
  1358. </td>
  1359. <td bgcolor="#FFFFFF" width="20%" height="40">
  1360. <span class=""><span id="nlyxs">小时</span>
  1361. </span>
  1362. </td>
  1363. <td bgcolor="#FFFFFF" width="20%" height="40">
  1364. <span class=""><span id="nlyxsjh"></span>
  1365. </span>
  1366. </td>
  1367. <td bgcolor="#FFFFFF" width="20%" height="40">
  1368. <span class=""><span id="nlyxswc"></span>
  1369. </span>
  1370. </td>
  1371. </tr>
  1372. <tr>
  1373. <td bgcolor="#FFFFFF" width="20%" height="40"
  1374. align="center">
  1375. &nbsp;
  1376. <span class="textMyselfContent">综合厂用电率</span>
  1377. </td>
  1378. <td bgcolor="#FFFFFF" width="20%" height="40">
  1379. <span class=""><span id="nzhcydl">%</span>
  1380. </span>
  1381. </td>
  1382. <td bgcolor="#FFFFFF" width="20%" height="40">
  1383. <span class=""><span id="nzhcydljh"></span>
  1384. </span>
  1385. </td>
  1386. <td bgcolor="#FFFFFF" width="20%" height="40">
  1387. <span class=""><span id="nzhcydlwc"></span>
  1388. </span>
  1389. </td>
  1390. </tr>
  1391. <tr>
  1392. <td bgcolor="#FFFFFF" width="20%" height="40"
  1393. align="center">
  1394. &nbsp;
  1395. <span class="textMyselfContent">设备可利用率</span>
  1396. </td>
  1397. <td bgcolor="#FFFFFF" width="20%" height="40">
  1398. <span class=""><span id="nsbklyl">%</span>
  1399. </span>
  1400. </td>
  1401. <td bgcolor="#FFFFFF" width="20%" height="40">
  1402. <span class=""><span id="nsbklyljh"></span>
  1403. </span>
  1404. </td>
  1405. <td bgcolor="#FFFFFF" width="20%" height="40">
  1406. <span class=""><span id="nsbklylwc"></span>
  1407. </span>
  1408. </td>
  1409. </tr>
  1410. <tr>
  1411. <td bgcolor="#FFFFFF" width="20%" height="40"
  1412. align="center">
  1413. &nbsp;
  1414. <span class="textMyselfContent">等效可用系数</span>
  1415. </td>
  1416. <td bgcolor="#FFFFFF" width="20%" height="40">
  1417. <span class=""><span id="ndxkyxs">%</span>
  1418. </span>
  1419. </td>
  1420. <td bgcolor="#FFFFFF" width="20%" height="40">
  1421. <span class=""><span id="ndxkyxsjh"></span>
  1422. </span>
  1423. </td>
  1424. <td bgcolor="#FFFFFF" width="20%" height="40">
  1425. <span class=""><span id="ndxkyxswc"></span>
  1426. </span>
  1427. </td>
  1428. </tr>
  1429. <tr>
  1430. <td bgcolor="#FFFFFF" height="40" align="center">
  1431. &nbsp;
  1432. <span class="textMyselfContent">平均风速/累计辐射总量</span>
  1433. </td>
  1434. <td bgcolor="#FFFFFF" width="20%" height="40">
  1435. <span class=""><span id="npjfs">m/s</span>
  1436. </span>
  1437. </td>
  1438. <td bgcolor="#FFFFFF" width="20%" height="40">
  1439. <span class=""><span id="npjfsjh"></span>
  1440. </span>
  1441. </td>
  1442. <td bgcolor="#FFFFFF" width="20%" height="40">
  1443. <span class=""><span id="npjfswc"></span>
  1444. </span>
  1445. </td>
  1446. </tr>
  1447. </table>
  1448. </td>
  1449. </tr>
  1450. </table>
  1451. </td>
  1452. </tr>
  1453. </table>
  1454. </td>
  1455. </tr>
  1456. </table>
  1457. </div>
  1458. </form>
  1459. </body>