nssstation2.jsp 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379
  1. <%@ page language="java" contentType="text/html;charset=utf-8"%>
  2. <%@include file="/pages/includes/taglibs.jsp"%>
  3. <html>
  4. <head>
  5. <script src="<%=request.getContextPath() %>/resource/js/jquery-1.8.3.js" type="text/javascript"></script>
  6. <link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/resource/plugin/jqueryui/css/custom-theme/jquery-ui-1.9.2.custom.css" />
  7. <script src="<%=request.getContextPath() %>/resource/plugin/jqueryui/js/jquery-ui-1.9.2.custom.js" type="text/javascript"></script>
  8. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  9. <style type="text/css">
  10. body {
  11. margin-left: 0px;
  12. margin-top: 0px;
  13. margin-right: 0px;
  14. margin-bottom: 0px;
  15. }
  16. .value_Name {
  17. font-family: "Times New Roman", Times, serif;
  18. font-size: 14px;
  19. font-weight: bolder;
  20. color: #666;
  21. }
  22. .station_Name {
  23. font-family: "Times New Roman", Times, serif;
  24. font-size: 14px;
  25. font-weight: bolder;
  26. color: #666;
  27. }
  28. @font-face {
  29. font-family: 'fontNameRegular';
  30. src:
  31. url('<%=request.getContextPath()%>/resource/fonts/DS-DIGIT-webfont.eot')
  32. ;
  33. src: local('<%=request.getContextPath()%>/resource/fonts/DS-DIGIT-webfont Regular'
  34. ),
  35. local('<%=request.getContextPath()%>/resource/fonts/DS-DIGIT-webfont'),
  36. url('<%=request.getContextPath()%>/resource/fonts/DS-DIGIT-webfont.woff')
  37. format('woff'),
  38. url('<%=request.getContextPath()%>/resource/fonts/DS-DIGIT-webfont.ttf')
  39. format('truetype'),
  40. url('<%=request.getContextPath()%>/resource/fonts/DS-DIGIT-webfont.svg#fontName')
  41. format('svg');
  42. font-size: 36px;
  43. font-weight: bolder;
  44. }
  45. .item_Name { font-family: Arial, Helvetica, sans-serif;
  46. font-size: 12px;
  47. font-weight: bolder;
  48. color: #fff;
  49. }
  50. .unit_Name { font-family: Arial, Helvetica, sans-serif;
  51. font-size: 12px;
  52. color: #fff;
  53. font-weight: bolder;
  54. }
  55. #apDiv1 {
  56. position: absolute;
  57. width: 22px;
  58. height: 12px;
  59. z-index: 1;
  60. left: 741px;
  61. top: 467px;
  62. }
  63. #apDiv2 {
  64. position: absolute;
  65. width: 22px;
  66. height: 12px;
  67. z-index: 2;
  68. left: 606px;
  69. top: 307px;
  70. }
  71. #apDiv3 {
  72. position: absolute;
  73. left: 524px;
  74. top: 375px;
  75. width: 22px;
  76. height: 12px;
  77. z-index: 3;
  78. }
  79. #apDiv4 {
  80. position: absolute;
  81. left: 676px;
  82. top: 376px;
  83. width: 22px;
  84. height: 12px;
  85. z-index: 4;
  86. }
  87. #apDiv5 {
  88. position: absolute;
  89. left: 265px;
  90. top: 398px;
  91. width: 22px;
  92. height: 12px;
  93. z-index: 5;
  94. }
  95. #apDiv6 {
  96. position: absolute;
  97. left: 313px;
  98. top: 460px;
  99. width: 22px;
  100. height: 12px;
  101. z-index: 6;
  102. }
  103. #apDiv7 {
  104. position: absolute;
  105. left: 438px;
  106. top: 451px;
  107. width: 22px;
  108. height: 12px;
  109. z-index: 7;
  110. }
  111. #apDiv8 {
  112. position: absolute;
  113. left: 266px;
  114. top: 605px;
  115. width: 22px;
  116. height: 12px;
  117. z-index: 8;
  118. }
  119. #apDiv9 {
  120. position: absolute;
  121. left: 325px;
  122. top: 667px;
  123. width: 22px;
  124. height: 12px;
  125. z-index: 9;
  126. }
  127. #apDiv10 {
  128. position: absolute;
  129. left: 432px;
  130. top: 576px;
  131. width: 22px;
  132. height: 12px;
  133. z-index: 10;
  134. }
  135. #apDiv11 {
  136. position: absolute;
  137. left: 467px;
  138. top: 522px;
  139. width: 22px;
  140. height: 12px;
  141. z-index: 11;
  142. }
  143. #apDiv12 {
  144. position: absolute;
  145. left: 439px;
  146. top: 661px;
  147. width: 22px;
  148. height: 12px;
  149. z-index: 12;
  150. }
  151. #apDiv13 {
  152. position: absolute;
  153. left: 595px;
  154. top: 570px;
  155. width: 22px;
  156. height: 12px;
  157. z-index: 13;
  158. }
  159. #apDiv14 {
  160. position: absolute;
  161. left: 1302px;
  162. top: 297px;
  163. width: 22px;
  164. height: 12px;
  165. z-index: 14;
  166. }
  167. #apDiv15 {
  168. position: absolute;
  169. left: 702px;
  170. top: 520px;
  171. width: 22px;
  172. height: 12px;
  173. z-index: 15;
  174. }
  175. #apDiv16 {
  176. position: absolute;
  177. left: 731px;
  178. top: 451px;
  179. width: 22px;
  180. height: 12px;
  181. z-index: 16;
  182. }
  183. #apDiv17 {
  184. position: absolute;
  185. left: 830px;
  186. top: 407px;
  187. width: 22px;
  188. height: 12px;
  189. z-index: 17;
  190. }
  191. .project_text {
  192. font-family: "宋体";
  193. font-size: 12px;
  194. font-weight: bolder;
  195. color: #FFF;
  196. text-decoration: none;
  197. }
  198. #apDiv18 {
  199. position: absolute;
  200. left: 844px;
  201. top: 490px;
  202. width: 87px;
  203. height: 19px;
  204. z-index: 18;
  205. }
  206. #apDiv19 {
  207. position: absolute;
  208. left: 1025px;
  209. top: 472px;
  210. width: 90px;
  211. height: 21px;
  212. z-index: 19;
  213. }
  214. #apDiv20 {
  215. position: absolute;
  216. left: 1080px;
  217. top: 407px;
  218. width: 89px;
  219. height: 21px;
  220. z-index: 20;
  221. }
  222. #apDiv21 {
  223. position: absolute;
  224. left: 972px;
  225. top: 205px;
  226. width: 88px;
  227. height: 48px;
  228. z-index: 18;
  229. }
  230. #apDiv22 {
  231. position: absolute;
  232. left: 1053px;
  233. top: 295px;
  234. width: 86px;
  235. height: 45px;
  236. z-index: 19;
  237. }
  238. #apDiv23 {
  239. position: absolute;
  240. left: 1157px;
  241. top: 250px;
  242. width: 87px;
  243. height: 45px;
  244. z-index: 20;
  245. }
  246. #apDiv24 {
  247. position: absolute;
  248. left: 1280px;
  249. top: 215px;
  250. width: 98px;
  251. height: 26px;
  252. z-index: 21;
  253. }
  254. #apDiv25 {
  255. position: absolute;
  256. left: 1191px;
  257. top: 335px;
  258. width: 97px;
  259. height: 23px;
  260. z-index: 22;
  261. }
  262. #apDiv26 {
  263. position: absolute;
  264. left: 1261px;
  265. top: 373px;
  266. width: 96px;
  267. height: 27px;
  268. z-index: 23;
  269. }
  270. #apDiv27 {
  271. position: absolute;
  272. left: 547px;
  273. top: 457px;
  274. width: 37px;
  275. height: 50px;
  276. z-index: 24;
  277. }
  278. #apDiv28 {
  279. position: absolute;
  280. left: 1346px;
  281. top: 351px;
  282. width: 39px;
  283. height: 52px;
  284. z-index: 25;
  285. }
  286. #apDiv29 {
  287. position: absolute;
  288. left: 1460px;
  289. top: 419px;
  290. width: 36px;
  291. height: 51px;
  292. z-index: 26;
  293. }
  294. #apDiv30 {
  295. position: absolute;
  296. left: 1586px;
  297. top: 482px;
  298. width: 41px;
  299. height: 52px;
  300. z-index: 27;
  301. }
  302. #apDiv31 {
  303. position: absolute;
  304. left: 1667px;
  305. top: 408px;
  306. width: 35px;
  307. height: 49px;
  308. z-index: 28;
  309. }
  310. #apDiv32 {
  311. position: absolute;
  312. left: 1789px;
  313. top: 360px;
  314. width: 39px;
  315. height: 52px;
  316. z-index: 29;
  317. }
  318. #apDiv33 {
  319. position: absolute;
  320. left: 1112px;
  321. top: 541px;
  322. width: 89px;
  323. height: 21px;
  324. z-index: 20;
  325. }
  326. #apDiv34 {
  327. position: absolute;
  328. left: 345px;
  329. top: 527px;
  330. width: 40px;
  331. height: 53px;
  332. z-index: 31;
  333. }
  334. #apDiv35 {
  335. position: absolute;
  336. left: 311px;
  337. top: 588px;
  338. width: 38px;
  339. height: 53px;
  340. z-index: 32;
  341. }
  342. #apDiv36 {
  343. position: absolute;
  344. left: 344px;
  345. top: 660px;
  346. width: 40px;
  347. height: 51px;
  348. z-index: 33;
  349. }
  350. #apDiv37 {
  351. position: absolute;
  352. left: 334px;
  353. top: 749px;
  354. width: 40px;
  355. height: 45px;
  356. z-index: 34;
  357. }
  358. #apDiv38 {
  359. position: absolute;
  360. left: 390px;
  361. top: 117px;
  362. width: 34px;
  363. height: 46px;
  364. z-index: 35;
  365. }
  366. #apDiv39 {
  367. position: absolute;
  368. left: 445px;
  369. top: 126px;
  370. width: 33px;
  371. height: 49px;
  372. z-index: 36;
  373. }
  374. #apDiv40 {
  375. position: absolute;
  376. left: 456px;
  377. top: 193px;
  378. width: 33px;
  379. height: 48px;
  380. z-index: 37;
  381. }
  382. #apDiv41 {
  383. position: absolute;
  384. left: 403px;
  385. top: 198px;
  386. width: 37px;
  387. height: 54px;
  388. z-index: 38;
  389. }
  390. #apDiv42 {
  391. position: absolute;
  392. left: 338px;
  393. top: 216px;
  394. width: 38px;
  395. height: 50px;
  396. z-index: 39;
  397. }
  398. #apDiv43 {
  399. position: absolute;
  400. left: 368px;
  401. top: 258px;
  402. width: 38px;
  403. height: 52px;
  404. z-index: 40;
  405. }
  406. #apDiv44 {
  407. position: absolute;
  408. left: 322px;
  409. top: 311px;
  410. width: 35px;
  411. height: 48px;
  412. z-index: 41;
  413. }
  414. #apDiv45 {
  415. position: absolute;
  416. left: 294px;
  417. top: 379px;
  418. width: 38px;
  419. height: 52px;
  420. z-index: 42;
  421. }
  422. #apDiv46 {
  423. position: absolute;
  424. left: 233px;
  425. top: 459px;
  426. width: 35px;
  427. height: 48px;
  428. z-index: 43;
  429. }
  430. #apDiv47 {
  431. position: absolute;
  432. left: 216px;
  433. top: 545px;
  434. width: 36px;
  435. height: 48px;
  436. z-index: 44;
  437. }
  438. #apDiv48 {
  439. position: absolute;
  440. left: 227px;
  441. top: 625px;
  442. width: 36px;
  443. height: 49px;
  444. z-index: 45;
  445. }
  446. #apDiv49 {
  447. position: absolute;
  448. left: 257px;
  449. top: 715px;
  450. width: 42px;
  451. height: 53px;
  452. z-index: 46;
  453. }
  454. #apDiv50 {
  455. position: absolute;
  456. left: 247px;
  457. top: 189px;
  458. width: 36px;
  459. height: 51px;
  460. z-index: 47;
  461. }
  462. #apDiv51 {
  463. position: absolute;
  464. left: 212px;
  465. top: 226px;
  466. width: 36px;
  467. height: 52px;
  468. z-index: 48;
  469. }
  470. #apDiv52 {
  471. position: absolute;
  472. left: 208px;
  473. top: 305px;
  474. width: 42px;
  475. height: 52px;
  476. z-index: 49;
  477. }
  478. #apDiv53 {
  479. position: absolute;
  480. left: 162px;
  481. top: 340px;
  482. width: 34px;
  483. height: 51px;
  484. z-index: 50;
  485. }
  486. #apDiv54 {
  487. position: absolute;
  488. left: 100px;
  489. top: 346px;
  490. width: 38px;
  491. height: 50px;
  492. z-index: 51;
  493. }
  494. #apDiv55 {
  495. position: absolute;
  496. left: 138px;
  497. top: 404px;
  498. width: 36px;
  499. height: 50px;
  500. z-index: 52;
  501. }
  502. #apDiv56 {
  503. position: absolute;
  504. left: 113px;
  505. top: 472px;
  506. width: 36px;
  507. height: 49px;
  508. z-index: 53;
  509. }
  510. #apDiv57 {
  511. position: absolute;
  512. left: 121px;
  513. top: 529px;
  514. width: 38px;
  515. height: 51px;
  516. z-index: 54;
  517. }
  518. #apDiv58 {
  519. position: absolute;
  520. left: 136px;
  521. top: 591px;
  522. width: 36px;
  523. height: 51px;
  524. z-index: 55;
  525. }
  526. #apDiv59 {
  527. position: absolute;
  528. left: 161px;
  529. top: 664px;
  530. width: 38px;
  531. height: 56px;
  532. z-index: 56;
  533. }
  534. #apDiv60 {
  535. position: absolute;
  536. left: 51px;
  537. top: 522px;
  538. width: 32px;
  539. height: 53px;
  540. z-index: 1;
  541. }
  542. #apDiv61 {
  543. position: absolute;
  544. left: 104px;
  545. top: 499px;
  546. width: 30px;
  547. height: 51px;
  548. z-index: 2;
  549. }
  550. #apDiv62 {
  551. position: absolute;
  552. left: 136px;
  553. top: 557px;
  554. width: 34px;
  555. height: 48px;
  556. z-index: 3;
  557. }
  558. #apDiv63 {
  559. position: absolute;
  560. left: 187px;
  561. top: 605px;
  562. width: 32px;
  563. height: 49px;
  564. z-index: 4;
  565. }
  566. #apDiv64 {
  567. position: absolute;
  568. left: 265px;
  569. top: 546px;
  570. width: 30px;
  571. height: 47px;
  572. z-index: 5;
  573. }
  574. #apDiv65 {
  575. position: absolute;
  576. left: 196px;
  577. top: 532px;
  578. width: 31px;
  579. height: 49px;
  580. z-index: 6;
  581. }
  582. #apDiv66 {
  583. position: absolute;
  584. left: 220px;
  585. top: 478px;
  586. width: 32px;
  587. height: 50px;
  588. z-index: 7;
  589. }
  590. #apDiv67 {
  591. position: absolute;
  592. left: 217px;
  593. top: 426px;
  594. width: 31px;
  595. height: 47px;
  596. z-index: 8;
  597. }
  598. #apDiv68 {
  599. position: absolute;
  600. left: 221px;
  601. top: 357px;
  602. width: 38px;
  603. height: 55px;
  604. z-index: 9;
  605. }
  606. #apDiv69 {
  607. position: absolute;
  608. left: 255px;
  609. top: 420px;
  610. width: 31px;
  611. height: 46px;
  612. z-index: 10;
  613. }
  614. #apDiv70 {
  615. position: absolute;
  616. left: 285px;
  617. top: 481px;
  618. width: 33px;
  619. height: 48px;
  620. z-index: 11;
  621. }
  622. #apDiv71 {
  623. position: absolute;
  624. left: 358px;
  625. top: 504px;
  626. width: 31px;
  627. height: 48px;
  628. z-index: 12;
  629. }
  630. #apDiv72 {
  631. position: absolute;
  632. left: 408px;
  633. top: 416px;
  634. width: 30px;
  635. height: 41px;
  636. z-index: 13;
  637. }
  638. #apDiv73 {
  639. position: absolute;
  640. left: 380px;
  641. top: 337px;
  642. width: 32px;
  643. height: 46px;
  644. z-index: 14;
  645. }
  646. #apDiv74 {
  647. position: absolute;
  648. left: 464px;
  649. top: 370px;
  650. width: 31px;
  651. height: 39px;
  652. z-index: 15;
  653. }
  654. #apDiv75 {
  655. position: absolute;
  656. left: 511px;
  657. top: 346px;
  658. width: 31px;
  659. height: 44px;
  660. z-index: 16;
  661. }
  662. #apDiv76 {
  663. position: absolute;
  664. left: 473px;
  665. top: 445px;
  666. width: 29px;
  667. height: 42px;
  668. z-index: 17;
  669. }
  670. #apDiv77 {
  671. position: absolute;
  672. left: 493px;
  673. top: 485px;
  674. width: 33px;
  675. height: 51px;
  676. z-index: 18;
  677. }
  678. #apDiv78 {
  679. position: absolute;
  680. left: 521px;
  681. top: 416px;
  682. width: 33px;
  683. height: 51px;
  684. z-index: 19;
  685. }
  686. #apDiv79 {
  687. position: absolute;
  688. left: 542px;
  689. top: 443px;
  690. width: 28px;
  691. height: 45px;
  692. z-index: 20;
  693. }
  694. #apDiv80 {
  695. position: absolute;
  696. left: 564px;
  697. top: 480px;
  698. width: 29px;
  699. height: 47px;
  700. z-index: 21;
  701. }
  702. #apDiv81 {
  703. position: absolute;
  704. left: 592px;
  705. top: 515px;
  706. width: 31px;
  707. height: 43px;
  708. z-index: 22;
  709. }
  710. #apDiv82 {
  711. position: absolute;
  712. left: 630px;
  713. top: 495px;
  714. width: 31px;
  715. height: 46px;
  716. z-index: 23;
  717. }
  718. #apDiv83 {
  719. position: absolute;
  720. left: 664px;
  721. top: 475px;
  722. width: 32px;
  723. height: 44px;
  724. z-index: 24;
  725. }
  726. #apDiv84 {
  727. position: absolute;
  728. left: 103px;
  729. top: 670px;
  730. width: 30px;
  731. height: 46px;
  732. z-index: 25;
  733. }
  734. #apDiv85 {
  735. position: absolute;
  736. left: 137px;
  737. top: 728px;
  738. width: 32px;
  739. height: 43px;
  740. z-index: 26;
  741. }
  742. #apDiv86 {
  743. position: absolute;
  744. left: 201px;
  745. top: 724px;
  746. width: 32px;
  747. height: 46px;
  748. z-index: 27;
  749. }
  750. #apDiv87 {
  751. position: absolute;
  752. left: 189px;
  753. top: 662px;
  754. width: 36px;
  755. height: 47px;
  756. z-index: 28;
  757. }
  758. #apDiv88 {
  759. position: absolute;
  760. left: 253px;
  761. top: 647px;
  762. width: 37px;
  763. height: 55px;
  764. z-index: 29;
  765. }
  766. #apDiv89 {
  767. position: absolute;
  768. left: 299px;
  769. top: 623px;
  770. width: 35px;
  771. height: 50px;
  772. z-index: 30;
  773. }
  774. #apDiv90 {
  775. position: absolute;
  776. left: 317px;
  777. top: 549px;
  778. width: 36px;
  779. height: 50px;
  780. z-index: 31;
  781. }
  782. #apDiv91 {
  783. position: absolute;
  784. left: 385px;
  785. top: 578px;
  786. width: 36px;
  787. height: 50px;
  788. z-index: 32;
  789. }
  790. #apDiv92 {
  791. position: absolute;
  792. left: 453px;
  793. top: 510px;
  794. width: 35px;
  795. height: 50px;
  796. z-index: 33;
  797. }
  798. #apDiv93 {
  799. position: absolute;
  800. left: 453px;
  801. top: 581px;
  802. width: 35px;
  803. height: 54px;
  804. z-index: 34;
  805. }
  806. #apDiv94 {
  807. position: absolute;
  808. left: 505px;
  809. top: 617px;
  810. width: 36px;
  811. height: 56px;
  812. z-index: 35;
  813. }
  814. #apDiv95 {
  815. position: absolute;
  816. left: 680px;
  817. top: 557px;
  818. width: 39px;
  819. height: 52px;
  820. z-index: 36;
  821. }
  822. #apDiv96 {
  823. position: absolute;
  824. left: 681px;
  825. top: 458px;
  826. width: 27px;
  827. height: 44px;
  828. z-index: 37;
  829. }
  830. #apDiv97 {
  831. position: absolute;
  832. left: 697px;
  833. top: 409px;
  834. width: 30px;
  835. height: 44px;
  836. z-index: 38;
  837. }
  838. #apDiv98 {
  839. position: absolute;
  840. left: 742px;
  841. top: 398px;
  842. width: 34px;
  843. height: 52px;
  844. z-index: 39;
  845. }
  846. #apDiv99 {
  847. position: absolute;
  848. left: 756px;
  849. top: 457px;
  850. width: 31px;
  851. height: 46px;
  852. z-index: 40;
  853. }
  854. #apDiv100 {
  855. position: absolute;
  856. left: 778px;
  857. top: 500px;
  858. width: 35px;
  859. height: 49px;
  860. z-index: 41;
  861. }
  862. #apDiv101 {
  863. position: absolute;
  864. left: 818px;
  865. top: 468px;
  866. width: 34px;
  867. height: 51px;
  868. z-index: 42;
  869. }
  870. #apDiv102 {
  871. position: absolute;
  872. left: 865px;
  873. top: 529px;
  874. width: 34px;
  875. height: 44px;
  876. z-index: 43;
  877. }
  878. #apDiv103 {
  879. position: absolute;
  880. left: 919px;
  881. top: 540px;
  882. width: 35px;
  883. height: 44px;
  884. z-index: 44;
  885. }
  886. #apDiv104 {
  887. position: absolute;
  888. left: 969px;
  889. top: 576px;
  890. width: 34px;
  891. height: 46px;
  892. z-index: 45;
  893. }
  894. #apDiv105 {
  895. position: absolute;
  896. left: 1206px;
  897. top: 579px;
  898. width: 34px;
  899. height: 47px;
  900. z-index: 46;
  901. }
  902. #apDiv106 {
  903. position: absolute;
  904. left: 1146px;
  905. top: 595px;
  906. width: 38px;
  907. height: 47px;
  908. z-index: 47;
  909. }
  910. #apDiv107 {
  911. position: absolute;
  912. left: 1067px;
  913. top: 610px;
  914. width: 36px;
  915. height: 47px;
  916. z-index: 48;
  917. }
  918. #apDiv108 {
  919. position: absolute;
  920. left: 992px;
  921. top: 335px;
  922. width: 35px;
  923. height: 51px;
  924. z-index: 49;
  925. }
  926. #apDiv109 {
  927. position: absolute;
  928. left: 973px;
  929. top: 390px;
  930. width: 34px;
  931. height: 46px;
  932. z-index: 50;
  933. }
  934. #apDiv110 {
  935. position: absolute;
  936. left: 942px;
  937. top: 429px;
  938. width: 33px;
  939. height: 49px;
  940. z-index: 51;
  941. }
  942. #apDiv111 {
  943. position: absolute;
  944. left: 892px;
  945. top: 439px;
  946. width: 35px;
  947. height: 49px;
  948. z-index: 52;
  949. }
  950. #apDiv112 {
  951. position: absolute;
  952. left: 925px;
  953. top: 484px;
  954. width: 37px;
  955. height: 48px;
  956. z-index: 53;
  957. }
  958. #apDiv113 {
  959. position: absolute;
  960. left: 978px;
  961. top: 476px;
  962. width: 36px;
  963. height: 46px;
  964. z-index: 54;
  965. }
  966. #apDiv114 {
  967. position: absolute;
  968. left: 1020px;
  969. top: 540px;
  970. width: 37px;
  971. height: 50px;
  972. z-index: 55;
  973. }
  974. #apDiv115 {
  975. position: absolute;
  976. left: 1053px;
  977. top: 512px;
  978. width: 37px;
  979. height: 52px;
  980. z-index: 56;
  981. }
  982. #apDiv116 {
  983. position: absolute;
  984. left: 1108px;
  985. top: 539px;
  986. width: 35px;
  987. height: 46px;
  988. z-index: 57;
  989. }
  990. #apDiv117 {
  991. position: absolute;
  992. left: 1172px;
  993. top: 515px;
  994. width: 39px;
  995. height: 47px;
  996. z-index: 58;
  997. }
  998. #apDiv118 {
  999. position: absolute;
  1000. left: 1240px;
  1001. top: 528px;
  1002. width: 38px;
  1003. height: 51px;
  1004. z-index: 59;
  1005. }
  1006. #apDiv119 {
  1007. position: absolute;
  1008. left: 778px;
  1009. top: 558px;
  1010. width: 33px;
  1011. height: 47px;
  1012. z-index: 60;
  1013. }
  1014. #apDiv120 {
  1015. position: absolute;
  1016. left: 820px;
  1017. top: 593px;
  1018. width: 37px;
  1019. height: 49px;
  1020. z-index: 61;
  1021. }
  1022. #apDiv121 {
  1023. position: absolute;
  1024. left: 875px;
  1025. top: 594px;
  1026. width: 39px;
  1027. height: 49px;
  1028. z-index: 62;
  1029. }
  1030. #apDiv122 {
  1031. position: absolute;
  1032. left: 905px;
  1033. top: 634px;
  1034. width: 36px;
  1035. height: 50px;
  1036. z-index: 63;
  1037. }
  1038. #apDiv123 {
  1039. position: absolute;
  1040. left: 915px;
  1041. top: 688px;
  1042. width: 40px;
  1043. height: 50px;
  1044. z-index: 64;
  1045. }
  1046. #apDiv124 {
  1047. position: absolute;
  1048. left: 971px;
  1049. top: 657px;
  1050. width: 40px;
  1051. height: 53px;
  1052. z-index: 65;
  1053. }
  1054. #apDiv125 {
  1055. position: absolute;
  1056. left: 1019px;
  1057. top: 679px;
  1058. width: 40px;
  1059. height: 51px;
  1060. z-index: 66;
  1061. }
  1062. #apDiv126 {
  1063. position: absolute;
  1064. left: 1076px;
  1065. top: 668px;
  1066. width: 42px;
  1067. height: 49px;
  1068. z-index: 67;
  1069. }
  1070. #apDiv127 {
  1071. position: absolute;
  1072. left: 1126px;
  1073. top: 653px;
  1074. width: 41px;
  1075. height: 51px;
  1076. z-index: 68;
  1077. }
  1078. #apDiv128 {
  1079. position: absolute;
  1080. left: 1189px;
  1081. top: 635px;
  1082. width: 40px;
  1083. height: 52px;
  1084. z-index: 69;
  1085. }
  1086. #apDiv129 {
  1087. position: absolute;
  1088. left: 722px;
  1089. top: 597px;
  1090. width: 30px;
  1091. height: 45px;
  1092. z-index: 70;
  1093. }
  1094. #apDiv130 {
  1095. position: absolute;
  1096. left: 778px;
  1097. top: 607px;
  1098. width: 30px;
  1099. height: 43px;
  1100. z-index: 71;
  1101. }
  1102. #apDiv131 {
  1103. position: absolute;
  1104. left: 809px;
  1105. top: 749px;
  1106. width: 30px;
  1107. height: 43px;
  1108. z-index: 72;
  1109. }
  1110. #apDiv132 {
  1111. position: absolute;
  1112. left: 814px;
  1113. top: 692px;
  1114. width: 31px;
  1115. height: 41px;
  1116. z-index: 73;
  1117. }
  1118. #apDiv133 {
  1119. position: absolute;
  1120. left: 853px;
  1121. top: 655px;
  1122. width: 35px;
  1123. height: 50px;
  1124. z-index: 74;
  1125. }
  1126. #apDiv134 {
  1127. position: absolute;
  1128. left: 864px;
  1129. top: 706px;
  1130. width: 32px;
  1131. height: 43px;
  1132. z-index: 75;
  1133. }
  1134. #apDiv135 {
  1135. position: absolute;
  1136. left: 905px;
  1137. top: 757px;
  1138. width: 36px;
  1139. height: 49px;
  1140. z-index: 76;
  1141. }
  1142. #apDiv136 {
  1143. position: absolute;
  1144. left: 954px;
  1145. top: 747px;
  1146. width: 33px;
  1147. height: 47px;
  1148. z-index: 77;
  1149. }
  1150. #apDiv137 {
  1151. position: absolute;
  1152. left: 995px;
  1153. top: 736px;
  1154. width: 33px;
  1155. height: 45px;
  1156. z-index: 78;
  1157. }
  1158. #apDiv138 {
  1159. position: absolute;
  1160. left: 1055px;
  1161. top: 728px;
  1162. width: 35px;
  1163. height: 46px;
  1164. z-index: 79;
  1165. }
  1166. #apDiv139 {
  1167. position: absolute;
  1168. left: 1299px;
  1169. top: 611px;
  1170. width: 34px;
  1171. height: 44px;
  1172. z-index: 80;
  1173. }
  1174. #apDiv140 {
  1175. position: absolute;
  1176. left: 1422px;
  1177. top: 369px;
  1178. width: 39px;
  1179. height: 51px;
  1180. z-index: 81;
  1181. }
  1182. #apDiv141 {
  1183. position: absolute;
  1184. left: 1472px;
  1185. top: 326px;
  1186. width: 37px;
  1187. height: 49px;
  1188. z-index: 82;
  1189. }
  1190. #apDiv142 {
  1191. position: absolute;
  1192. left: 1493px;
  1193. top: 253px;
  1194. width: 34px;
  1195. height: 47px;
  1196. z-index: 83;
  1197. }
  1198. #apDiv143 {
  1199. position: absolute;
  1200. left: 1548px;
  1201. top: 216px;
  1202. width: 35px;
  1203. height: 52px;
  1204. z-index: 84;
  1205. }
  1206. #apDiv144 {
  1207. position: absolute;
  1208. left: 1619px;
  1209. top: 184px;
  1210. width: 37px;
  1211. height: 51px;
  1212. z-index: 85;
  1213. }
  1214. #apDiv145 {
  1215. position: absolute;
  1216. left: 1722px;
  1217. top: 153px;
  1218. width: 35px;
  1219. height: 47px;
  1220. z-index: 86;
  1221. }
  1222. #apDiv146 {
  1223. position: absolute;
  1224. left: 1702px;
  1225. top: 235px;
  1226. width: 34px;
  1227. height: 49px;
  1228. z-index: 87;
  1229. }
  1230. #apDiv147 {
  1231. position: absolute;
  1232. left: 1646px;
  1233. top: 261px;
  1234. width: 33px;
  1235. height: 50px;
  1236. z-index: 88;
  1237. }
  1238. #apDiv148 {
  1239. position: absolute;
  1240. left: 1582px;
  1241. top: 265px;
  1242. width: 32px;
  1243. height: 46px;
  1244. z-index: 89;
  1245. }
  1246. #apDiv149 {
  1247. position: absolute;
  1248. left: 1530px;
  1249. top: 302px;
  1250. width: 36px;
  1251. height: 48px;
  1252. z-index: 90;
  1253. }
  1254. #apDiv150 {
  1255. position: absolute;
  1256. left: 1373px;
  1257. top: 554px;
  1258. width: 35px;
  1259. height: 48px;
  1260. z-index: 91;
  1261. }
  1262. #apDiv151 {
  1263. position: absolute;
  1264. left: 1410px;
  1265. top: 505px;
  1266. width: 37px;
  1267. height: 47px;
  1268. z-index: 92;
  1269. }
  1270. #apDiv152 {
  1271. position: absolute;
  1272. left: 1468px;
  1273. top: 486px;
  1274. width: 37px;
  1275. height: 49px;
  1276. z-index: 93;
  1277. }
  1278. #apDiv153 {
  1279. position: absolute;
  1280. left: 1500px;
  1281. top: 431px;
  1282. width: 40px;
  1283. height: 53px;
  1284. z-index: 94;
  1285. }
  1286. #apDiv154 {
  1287. position: absolute;
  1288. left: 1551px;
  1289. top: 460px;
  1290. width: 37px;
  1291. height: 49px;
  1292. z-index: 95;
  1293. }
  1294. #apDiv155 {
  1295. position: absolute;
  1296. left: 1628px;
  1297. top: 397px;
  1298. width: 36px;
  1299. height: 51px;
  1300. z-index: 96;
  1301. }
  1302. #apDiv156 {
  1303. position: absolute;
  1304. left: 1683px;
  1305. top: 383px;
  1306. width: 35px;
  1307. height: 51px;
  1308. z-index: 97;
  1309. }
  1310. #apDiv157 {
  1311. position: absolute;
  1312. left: 1730px;
  1313. top: 355px;
  1314. width: 39px;
  1315. height: 48px;
  1316. z-index: 98;
  1317. }
  1318. #apDiv158 {
  1319. position: absolute;
  1320. left: 1774px;
  1321. top: 312px;
  1322. width: 42px;
  1323. height: 53px;
  1324. z-index: 99;
  1325. }
  1326. #apDiv159 {
  1327. position: absolute;
  1328. left: 1821px;
  1329. top: 262px;
  1330. width: 41px;
  1331. height: 53px;
  1332. z-index: 100;
  1333. }
  1334. #apDiv160 {
  1335. position: absolute;
  1336. left: 1822px;
  1337. top: 365px;
  1338. width: 38px;
  1339. height: 49px;
  1340. z-index: 101;
  1341. }
  1342. #apDiv162 {
  1343. position: absolute;
  1344. left: 516px;
  1345. top: 221px;
  1346. width: 73px;
  1347. height: 48px;
  1348. z-index: 1;
  1349. }
  1350. #apDiv {
  1351. position: absolute;
  1352. left: 503px;
  1353. top: 291px;
  1354. width: 73px;
  1355. height: 48px;
  1356. z-index: 1;
  1357. }
  1358. #apDiv161 { position: absolute;
  1359. left: 201px;
  1360. top: 153px;
  1361. width: 73px;
  1362. height: 48px;
  1363. z-index: 1;
  1364. }
  1365. #apDiv163 { position: absolute;
  1366. left: 201px;
  1367. top: 153px;
  1368. width: 73px;
  1369. height: 48px;
  1370. z-index: 1;
  1371. }
  1372. #apDiv164 { position: absolute;
  1373. left: 201px;
  1374. top: 153px;
  1375. width: 73px;
  1376. height: 48px;
  1377. z-index: 1;
  1378. }
  1379. #apDiv165 { position: absolute;
  1380. left: 201px;
  1381. top: 153px;
  1382. width: 73px;
  1383. height: 48px;
  1384. z-index: 1;
  1385. }
  1386. #apDiv166 { position: absolute;
  1387. left: 201px;
  1388. top: 153px;
  1389. width: 73px;
  1390. height: 48px;
  1391. z-index: 1;
  1392. }
  1393. #apDiv167 { position: absolute;
  1394. left: 201px;
  1395. top: 153px;
  1396. width: 73px;
  1397. height: 48px;
  1398. z-index: 1;
  1399. }
  1400. #apDiv168 { position: absolute;
  1401. left: 201px;
  1402. top: 153px;
  1403. width: 73px;
  1404. height: 48px;
  1405. z-index: 1;
  1406. }
  1407. #apDiv169 { position: absolute;
  1408. left: 201px;
  1409. top: 153px;
  1410. width: 73px;
  1411. height: 48px;
  1412. z-index: 1;
  1413. }
  1414. #apDiv170 { position: absolute;
  1415. left: 201px;
  1416. top: 153px;
  1417. width: 73px;
  1418. height: 48px;
  1419. z-index: 1;
  1420. }
  1421. #apDiv171 { position: absolute;
  1422. left: 201px;
  1423. top: 153px;
  1424. width: 73px;
  1425. height: 48px;
  1426. z-index: 1;
  1427. }
  1428. #apDiv172 { position: absolute;
  1429. left: 201px;
  1430. top: 153px;
  1431. width: 73px;
  1432. height: 48px;
  1433. z-index: 1;
  1434. }
  1435. #apDiv173 { position: absolute;
  1436. left: 201px;
  1437. top: 153px;
  1438. width: 73px;
  1439. height: 48px;
  1440. z-index: 1;
  1441. }
  1442. #apDiv174 { position: absolute;
  1443. left: 201px;
  1444. top: 153px;
  1445. width: 73px;
  1446. height: 48px;
  1447. z-index: 1;
  1448. }
  1449. #apDiv175 { position: absolute;
  1450. left: 201px;
  1451. top: 153px;
  1452. width: 73px;
  1453. height: 48px;
  1454. z-index: 1;
  1455. }
  1456. #apDiv176 { position: absolute;
  1457. left: 201px;
  1458. top: 153px;
  1459. width: 73px;
  1460. height: 48px;
  1461. z-index: 1;
  1462. }
  1463. #apDiv177 { position: absolute;
  1464. left: 201px;
  1465. top: 153px;
  1466. width: 73px;
  1467. height: 48px;
  1468. z-index: 1;
  1469. }
  1470. #apDiv178 { position: absolute;
  1471. left: 201px;
  1472. top: 153px;
  1473. width: 73px;
  1474. height: 48px;
  1475. z-index: 1;
  1476. }
  1477. #apDiv179 { position: absolute;
  1478. left: 201px;
  1479. top: 153px;
  1480. width: 73px;
  1481. height: 48px;
  1482. z-index: 1;
  1483. }
  1484. #apDiv180 { position: absolute;
  1485. left: 201px;
  1486. top: 153px;
  1487. width: 73px;
  1488. height: 48px;
  1489. z-index: 1;
  1490. }
  1491. #apDiv181 { position: absolute;
  1492. left: 201px;
  1493. top: 153px;
  1494. width: 73px;
  1495. height: 48px;
  1496. z-index: 1;
  1497. }
  1498. #apDiv182 { position: absolute;
  1499. left: 972px;
  1500. top: 205px;
  1501. width: 88px;
  1502. height: 48px;
  1503. z-index: 18;
  1504. }
  1505. #apDiv183 { position: absolute;
  1506. left: 972px;
  1507. top: 205px;
  1508. width: 88px;
  1509. height: 48px;
  1510. z-index: 18;
  1511. }
  1512. #apDiv184 { position: absolute;
  1513. left: 972px;
  1514. top: 205px;
  1515. width: 88px;
  1516. height: 48px;
  1517. z-index: 18;
  1518. }
  1519. #apDiv185 { position: absolute;
  1520. left: 972px;
  1521. top: 205px;
  1522. width: 88px;
  1523. height: 48px;
  1524. z-index: 18;
  1525. }
  1526. #apDiv186 { position: absolute;
  1527. left: 972px;
  1528. top: 205px;
  1529. width: 88px;
  1530. height: 48px;
  1531. z-index: 18;
  1532. }
  1533. #apDiv187 { position: absolute;
  1534. left: 972px;
  1535. top: 205px;
  1536. width: 88px;
  1537. height: 48px;
  1538. z-index: 18;
  1539. }
  1540. #apDiv188 { position: absolute;
  1541. left: 972px;
  1542. top: 205px;
  1543. width: 88px;
  1544. height: 48px;
  1545. z-index: 18;
  1546. }
  1547. #apDiv189 { position: absolute;
  1548. left: 972px;
  1549. top: 205px;
  1550. width: 88px;
  1551. height: 48px;
  1552. z-index: 18;
  1553. }
  1554. #apDiv190 { position: absolute;
  1555. left: 972px;
  1556. top: 205px;
  1557. width: 88px;
  1558. height: 48px;
  1559. z-index: 18;
  1560. }
  1561. #apDiv191 { position: absolute;
  1562. left: 972px;
  1563. top: 205px;
  1564. width: 88px;
  1565. height: 48px;
  1566. z-index: 18;
  1567. }
  1568. #apDiv192 { position: absolute;
  1569. left: 972px;
  1570. top: 205px;
  1571. width: 88px;
  1572. height: 48px;
  1573. z-index: 18;
  1574. }
  1575. </style>
  1576. <script type="text/javascript">
  1577. $(document).ready(function() {
  1578. wpaction();
  1579. //window.setInterval(wpaction, 60000);
  1580. });
  1581. function goback()
  1582. {
  1583. $("#f1").attr("action","/matrix/monitormainIndex.action").submit();
  1584. }
  1585. function wpaction()
  1586. {
  1587. wpAllInfoAjax();
  1588. wtvalueinfo();
  1589. }
  1590. function wtvalueinfo() {
  1591. $.ajax({
  1592. url : "wtStationInfo.action?wfName=NSS02_GC",
  1593. type : "post",
  1594. cache : false,
  1595. dataType : "json",
  1596. data : {},
  1597. ifModified : false,
  1598. success : function(res) {
  1599. /******************赋值**********************/
  1600. $("#NG01_24gl").html(res["NG01_24gl"] + "kw");
  1601. $("#NG01_25gl").html(res["NG01_25gl"] + "kw");
  1602. $("#NG01_26gl").html(res["NG01_26gl"] + "kw");
  1603. $("#NG01_27gl").html(res["NG01_27gl"] + "kw");
  1604. $("#NG01_28gl").html(res["NG01_28gl"] + "kw");
  1605. $("#NG01_29gl").html(res["NG01_29gl"] + "kw");
  1606. $("#NG01_30gl").html(res["NG01_30gl"] + "kw");
  1607. $("#NG01_31gl").html(res["NG01_31gl"] + "kw");
  1608. $("#NG01_32gl").html(res["NG01_32gl"] + "kw");
  1609. $("#NG01_33gl").html(res["NG01_33gl"] + "kw");
  1610. $("#NG01_56gl").html(res["NG01_56gl"] + "kw");
  1611. $("#NG01_57gl").html(res["NG01_57gl"] + "kw");
  1612. $("#NG01_58gl").html(res["NG01_58gl"] + "kw");
  1613. $("#NG01_59gl").html(res["NG01_59gl"] + "kw");
  1614. $("#NG01_60gl").html(res["NG01_60gl"] + "kw");
  1615. $("#NG01_61gl").html(res["NG01_61gl"] + "kw");
  1616. $("#NG01_62gl").html(res["NG01_62gl"] + "kw");
  1617. $("#NG01_63gl").html(res["NG01_63gl"] + "kw");
  1618. $("#NG01_64gl").html(res["NG01_64gl"] + "kw");
  1619. $("#NG01_65gl").html(res["NG01_65gl"] + "kw");
  1620. $("#NG01_66gl").html(res["NG01_66gl"] + "kw");
  1621. $("#NG01_67gl").html(res["NG01_67gl"] + "kw");
  1622. $("#NG01_68gl").html(res["NG01_68gl"] + "kw");
  1623. $("#NG01_69gl").html(res["NG01_69gl"] + "kw");
  1624. $("#NG01_70gl").html(res["NG01_70gl"] + "kw");
  1625. $("#NG01_71gl").html(res["NG01_71gl"] + "kw");
  1626. $("#NG01_72gl").html(res["NG01_72gl"] + "kw");
  1627. $("#NG01_73gl").html(res["NG01_73gl"] + "kw");
  1628. $("#NG01_74gl").html(res["NG01_74gl"] + "kw");
  1629. $("#NG01_75gl").html(res["NG01_75gl"] + "kw");
  1630. $("#NG01_76gl").html(res["NG01_76gl"] + "kw");
  1631. $("#NG01_77gl").html(res["NG01_77gl"] + "kw");
  1632. $("#NG01_78gl").html(res["NG01_78gl"] + "kw");
  1633. $("#NG01_79gl").html(res["NG01_79gl"] + "kw");
  1634. /*****************************************************/
  1635. $("#NG01_24fs").html(res["NG01_24fs"] + "m/s");
  1636. $("#NG01_25fs").html(res["NG01_25fs"] + "m/s");
  1637. $("#NG01_26fs").html(res["NG01_26fs"] + "m/s");
  1638. $("#NG01_27fs").html(res["NG01_27fs"] + "m/s");
  1639. $("#NG01_28fs").html(res["NG01_28fs"] + "m/s");
  1640. $("#NG01_29fs").html(res["NG01_29fs"] + "m/s");
  1641. $("#NG01_30fs").html(res["NG01_30fs"] + "m/s");
  1642. $("#NG01_31fs").html(res["NG01_31fs"] + "m/s");
  1643. $("#NG01_32fs").html(res["NG01_32fs"] + "m/s");
  1644. $("#NG01_33fs").html(res["NG01_33fs"] + "m/s");
  1645. $("#NG01_56fs").html(res["NG01_56fs"] + "m/s");
  1646. $("#NG01_57fs").html(res["NG01_57fs"] + "m/s");
  1647. $("#NG01_58fs").html(res["NG01_58fs"] + "m/s");
  1648. $("#NG01_59fs").html(res["NG01_59fs"] + "m/s");
  1649. $("#NG01_60fs").html(res["NG01_60fs"] + "m/s");
  1650. $("#NG01_61fs").html(res["NG01_61fs"] + "m/s");
  1651. $("#NG01_62fs").html(res["NG01_62fs"] + "m/s");
  1652. $("#NG01_63fs").html(res["NG01_63fs"] + "m/s");
  1653. $("#NG01_64fs").html(res["NG01_64fs"] + "m/s");
  1654. $("#NG01_65fs").html(res["NG01_65fs"] + "m/s");
  1655. $("#NG01_66fs").html(res["NG01_66fs"] + "m/s");
  1656. $("#NG01_67fs").html(res["NG01_67fs"] + "m/s");
  1657. $("#NG01_68fs").html(res["NG01_68fs"] + "m/s");
  1658. $("#NG01_69fs").html(res["NG01_69fs"] + "m/s");
  1659. $("#NG01_70fs").html(res["NG01_70fs"] + "m/s");
  1660. $("#NG01_71fs").html(res["NG01_71fs"] + "m/s");
  1661. $("#NG01_72fs").html(res["NG01_72fs"] + "m/s");
  1662. $("#NG01_73fs").html(res["NG01_73fs"] + "m/s");
  1663. $("#NG01_74fs").html(res["NG01_74fs"] + "m/s");
  1664. $("#NG01_75fs").html(res["NG01_75fs"] + "m/s");
  1665. $("#NG01_76fs").html(res["NG01_76fs"] + "m/s");
  1666. $("#NG01_77fs").html(res["NG01_77fs"] + "m/s");
  1667. $("#NG01_78fs").html(res["NG01_78fs"] + "m/s");
  1668. $("#NG01_79fs").html(res["NG01_79fs"] + "m/s");
  1669. /*****************************************************/
  1670. $("#NG01_24").html(state(res["NG01_24"]) + "");
  1671. $("#NG01_25").html(state(res["NG01_25"]) + "");
  1672. $("#NG01_26").html(state(res["NG01_26"]) + "");
  1673. $("#NG01_27").html(state(res["NG01_27"]) + "");
  1674. $("#NG01_28").html(state(res["NG01_28"]) + "");
  1675. $("#NG01_29").html(state(res["NG01_29"]) + "");
  1676. $("#NG01_30").html(state(res["NG01_30"]) + "");
  1677. $("#NG01_31").html(state(res["NG01_31"]) + "");
  1678. $("#NG01_32").html(state(res["NG01_32"]) + "");
  1679. $("#NG01_33").html(state(res["NG01_33"]) + "");
  1680. $("#NG01_56").html(state(res["NG01_56"]) + "");
  1681. $("#NG01_57").html(state(res["NG01_57"]) + "");
  1682. $("#NG01_58").html(state(res["NG01_58"]) + "");
  1683. $("#NG01_59").html(state(res["NG01_59"]) + "");
  1684. $("#NG01_60").html(state(res["NG01_60"]) + "");
  1685. $("#NG01_61").html(state(res["NG01_61"]) + "");
  1686. $("#NG01_62").html(state(res["NG01_62"]) + "");
  1687. $("#NG01_63").html(state(res["NG01_63"]) + "");
  1688. $("#NG01_64").html(state(res["NG01_64"]) + "");
  1689. $("#NG01_65").html(state(res["NG01_65"]) + "");
  1690. $("#NG01_66").html(state(res["NG01_66"]) + "");
  1691. $("#NG01_67").html(state(res["NG01_67"]) + "");
  1692. $("#NG01_68").html(state(res["NG01_68"]) + "");
  1693. $("#NG01_69").html(state(res["NG01_69"]) + "");
  1694. $("#NG01_70").html(state(res["NG01_70"]) + "");
  1695. $("#NG01_71").html(state(res["NG01_71"]) + "");
  1696. $("#NG01_72").html(state(res["NG01_72"]) + "");
  1697. $("#NG01_73").html(state(res["NG01_73"]) + "");
  1698. $("#NG01_74").html(state(res["NG01_74"]) + "");
  1699. $("#NG01_75").html(state(res["NG01_75"]) + "");
  1700. $("#NG01_76").html(state(res["NG01_76"]) + "");
  1701. $("#NG01_77").html(state(res["NG01_77"]) + "");
  1702. $("#NG01_78").html(state(res["NG01_78"]) + "");
  1703. $("#NG01_79").html(state(res["NG01_79"]) + "");
  1704. /*****************************************************/
  1705. }
  1706. });
  1707. }
  1708. function wpAllInfoAjax() {
  1709. $.ajax( {
  1710. url : "/windfarm/windfarmrealtimeinfo.action?wfName=NSS02_GC",
  1711. type : "post",
  1712. cache : false,
  1713. dataType : "json",
  1714. data : {},
  1715. ifModified : false,
  1716. success : function(res) {
  1717. $("#zjrl").html(res["zjrl"] + "");
  1718. $("#zgl").html(res["zgl"] + "");
  1719. $("#pjfs").html(res["pjfs"] + "");
  1720. $("#rfdl").html(res["rfdl"] + "");
  1721. $("#yfdl").html(res["yfdl"] + "");
  1722. $("#nfdl").html(res["nfdl"] + "");
  1723. $("#yxts").html(res["yxts"] + "");
  1724. $("#djts").html(res["djts"] + "");
  1725. $("#whts").html(res["whts"] + "");
  1726. $("#gzts").html(res["gzts"] + "");
  1727. $("#lxts").html(res["lxts"] + "");
  1728. $("#xdts").html(res["xdts"] + "");
  1729. $("#jrts").html(res["jrts"] + "");
  1730. $("#wd").html(res["wd"] + "");
  1731. }
  1732. });
  1733. }
  1734. function state(state)
  1735. {
  1736. var temp;
  1737. switch(state){
  1738. case 1:
  1739. temp=" <img src='<%=request.getContextPath()%>/resource/images/system/pictures/run_Icon.gif' width='33' height='45' />";
  1740. break;
  1741. case 0:
  1742. temp=" <img src='<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png' width='33' height='45' />";
  1743. break;
  1744. case 4:
  1745. temp=" <img src='<%=request.getContextPath()%>/resource/images/system/pictures/repair_Icon.fw.png' width='33' height='45' />";
  1746. break;
  1747. case 2:
  1748. temp=" <img src='<%=request.getContextPath()%>/resource/images/system/pictures/stop_Icon.fw.png' width='33' height='45' />";
  1749. break;
  1750. case 3:
  1751. temp=" <img src='<%=request.getContextPath()%>/resource/images/system/pictures/interrupt_Icon.fw.png' width='33' height='45' />";
  1752. break;
  1753. case 5:
  1754. temp=" <img src='<%=request.getContextPath()%>/resource/images/system/pictures/limit_Icon.gif' width='33' height='45' />";
  1755. break;
  1756. }
  1757. return temp;
  1758. }
  1759. function windfarm()
  1760. {
  1761. $("#f1").attr("action","/windfarm/nssindex.action?wfName=NSS_FDC").submit();
  1762. }
  1763. function fjpb()
  1764. {
  1765. $("#f1").attr("action","/windfarm/nssstation1.action?wfName=NSS01_GC").submit();
  1766. }
  1767. function tower()
  1768. {
  1769. $("#f1").attr("action","/windfarm/nsswindtower.action?windfarm=NSS_FDC").submit();
  1770. }
  1771. function powerfirst()
  1772. {
  1773. $("#f1").attr("action","/windfarm/nsspowerfirst.action?wfName=NSS_FDC").submit();
  1774. }
  1775. function wtinfo()
  1776. {
  1777. $("#f1").attr("action","/windfarm/wtindex.action?wfName=NSS_FDC").submit();
  1778. }
  1779. function power()
  1780. {
  1781. $("#f1").attr("action","/windfarm/powerindex.action?wfName=NSS_FDC").submit();
  1782. }
  1783. function project1()
  1784. {
  1785. $("#f1").attr("action","/windfarm/nssstation1.action?wfName=NSS01_GC").submit();
  1786. }
  1787. function project2()
  1788. {
  1789. $("#f1").attr("action","/windfarm/nssstation2.action?wfName=NSS02_GC").submit();
  1790. }
  1791. function project3()
  1792. {
  1793. $("#f1").attr("action","/windfarm/nssstation3.action?wfName=NSS03_GC").submit();
  1794. }
  1795. function gowt(wtName)
  1796. {
  1797. $("#f1").attr("action","/windfarm/wtindex.action?wfName=NSS_FDC&wtName="+wtName).submit();
  1798. }
  1799. </script>
  1800. </head>
  1801. <body>
  1802. <form action="" id="f1" method="post" style="width: 1883px">
  1803. <table width="1880" border="0" align="center" cellpadding="0" cellspacing="0">
  1804. <tr>
  1805. <td height="58" colspan="5" background="<%=request.getContextPath()%>/resource/images/system/pictures/station_Top.jpg"><table width="1880" border="0" cellspacing="0" cellpadding="0" height="58">
  1806. <tr>
  1807. <td width="36" height="25">&nbsp;</td>
  1808. <td width="64" rowspan="2" align="center">&nbsp;</td>
  1809. <td width="125" align="center" valign="bottom" class="station_Name">装机容量</td>
  1810. <td width="123"align="center" valign="bottom" class="station_Name">总功率</td>
  1811. <td width="125"align="center" valign="bottom" class="station_Name">日发电量</td>
  1812. <td width="124"align="center" valign="bottom" class="station_Name">月发电量</td>
  1813. <td width="124"align="center" valign="bottom" class="station_Name">年发电量</td>
  1814. <td width="123"align="center" valign="bottom" class="station_Name">温度</td>
  1815. <td width="123"align="center" valign="bottom" class="station_Name">平均风速</td>
  1816. <td width="127"align="center" valign="bottom" class="station_Name">接入台数</td>
  1817. <td width="121"align="center" valign="bottom" class="station_Name">运行台数</td>
  1818. <td width="125"align="center" valign="bottom" class="station_Name">待机台数</td>
  1819. <td width="123"align="center" valign="bottom" class="station_Name">故障台数</td>
  1820. <td width="126"align="center" valign="bottom" class="station_Name">维护台数</td>
  1821. <td width="124"align="center" valign="bottom" class="station_Name">离线台数</td>
  1822. <td width="124"align="center" valign="bottom" class="station_Name">限电台数</td>
  1823. <td width="43"align="center" valign="bottom" class="station_Name" style='cursor: pointer;' onclick="goback()"></td>
  1824. </tr>
  1825. <tr>
  1826. <td height="28">&nbsp;</td>
  1827. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="zjrl"></span></td>
  1828. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="zgl" ></span></td>
  1829. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="rfdl" ></span></td>
  1830. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="yfdl" ></span></td>
  1831. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="nfdl" ></span></td>
  1832. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="wd" ></span></td>
  1833. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="pjfs" ></span></td>
  1834. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="jrts" ></span></td>
  1835. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="yxts" ></span></td>
  1836. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="djts" ></span></td>
  1837. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="gzts" ></span></td>
  1838. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="whts" ></span></td>
  1839. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="lxts" ></span></td>
  1840. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="xdts" ></span></td>
  1841. <td align="center" style='cursor: pointer;' onclick="goback()"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/back_icon.fw.png" width="18" height="19" /></td>
  1842. </tr>
  1843. </table>
  1844. <tr>
  1845. <td width="17" rowspan="2" valign="top">
  1846. <table width="35" border="0" cellspacing="0" cellpadding="0">
  1847. <tr>
  1848. <td><img src="<%=request.getContextPath()%>/resource/images/system/pictures/station_zm_Button_link.jpg" width="35" height="80" onclick="windfarm()" style='cursor: pointer;'/></td>
  1849. </tr>
  1850. <tr>
  1851. <td align="center" valign="top"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/station_fjpb_button_selected.jpg" width="35" height="80" onclick="fjpb()" /></td>
  1852. </tr>
  1853. <tr>
  1854. <td align="center" valign="top"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/station_fjinfo_button_link.jpg" width="35" height="80" onclick="wtinfo()" style='cursor: pointer;'/></td>
  1855. </tr>
  1856. <tr>
  1857. <td align="center" valign="top"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/station_syz_button_link.jpg" width="35" onclick="powerfirst()" style='cursor: pointer;'/></td>
  1858. </tr>
  1859. <tr>
  1860. <td align="center" valign="top"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/station_line_button_link.jpg" width="35" height="80" onclick="power()" style='cursor: pointer;'/></td>
  1861. </tr>
  1862. <tr>
  1863. <td align="center" valign="top"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/station_cft_button_link.jpg" width="35" height="80" onclick="tower()" style='cursor: pointer;'/></td>
  1864. </tr>
  1865. </table></td>
  1866. <td width="1863" height="30" valign="top"><div id="apDiv162">
  1867. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_61')">
  1868. <tr>
  1869. <td width="39" height="50" rowspan="3"><div id="NG01_61"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  1870. <td width="41" height="15"><span class="unit_Name">61号</span></td>
  1871. </tr>
  1872. <tr>
  1873. <td height="15"><span class="unit_Name" id="NG01_61gl">4888.5kw</span></td>
  1874. </tr>
  1875. <tr>
  1876. <td height="15"><span class="unit_Name" id="NG01_61fs">7.39m/s</span></td>
  1877. </tr>
  1878. </table>
  1879. </div>
  1880. <div id="apDiv">
  1881. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_62')">
  1882. <tr>
  1883. <td width="39" height="50" rowspan="3"><div id="NG01_62"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  1884. <td width="41" height="15"><span class="unit_Name">62号</span></td>
  1885. </tr>
  1886. <tr>
  1887. <td height="15"><span class="unit_Name" id="NG01_62gl">4888.5kw</span></td>
  1888. </tr>
  1889. <tr>
  1890. <td height="15"><span class="unit_Name" id="NG01_62fs">7.39m/s</span></td>
  1891. </tr>
  1892. </table>
  1893. </div>
  1894. <div id="apDiv2">
  1895. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_60')">
  1896. <tr>
  1897. <td width="39" height="50" rowspan="3"><div id="NG01_60"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  1898. <td width="41" height="15"><span class="unit_Name">60号</span></td>
  1899. </tr>
  1900. <tr>
  1901. <td height="15"><span class="unit_Name" id="NG01_60gl">4888.5kw</span></td>
  1902. </tr>
  1903. <tr>
  1904. <td height="15"><span class="unit_Name" id="NG01_60fs">7.39m/s</span></td>
  1905. </tr>
  1906. </table>
  1907. </div>
  1908. <div id="apDiv3">
  1909. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_63')">
  1910. <tr>
  1911. <td width="39" height="50" rowspan="3"><div id="NG01_63"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  1912. <td width="41" height="15"><span class="unit_Name">63号</span></td>
  1913. </tr>
  1914. <tr>
  1915. <td height="15"><span class="unit_Name" id="NG01_63gl">4888.5kw</span></td>
  1916. </tr>
  1917. <tr>
  1918. <td height="15"><span class="unit_Name" id="NG01_63fs">7.39m/s</span></td>
  1919. </tr>
  1920. </table>
  1921. </div>
  1922. <div id="apDiv4">
  1923. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_59')">
  1924. <tr>
  1925. <td width="39" height="50" rowspan="3"><div id="NG01_59"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  1926. <td width="41" height="15"><span class="unit_Name">59号</span></td>
  1927. </tr>
  1928. <tr>
  1929. <td height="15"><span class="unit_Name" id="NG01_59gl">4888.5kw</span></td>
  1930. </tr>
  1931. <tr>
  1932. <td height="15"><span class="unit_Name" id="NG01_59fs">7.39m/s</span></td>
  1933. </tr>
  1934. </table>
  1935. </div>
  1936. <div id="apDiv5">
  1937. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_68')">
  1938. <tr>
  1939. <td width="39" height="50" rowspan="3"><div id="NG01_68"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  1940. <td width="41" height="15"><span class="unit_Name">68号</span></td>
  1941. </tr>
  1942. <tr>
  1943. <td height="15"><span class="unit_Name" id="NG01_68gl">4888.5kw</span></td>
  1944. </tr>
  1945. <tr>
  1946. <td height="15"><span class="unit_Name" id="NG01_68fs">7.39m/s</span></td>
  1947. </tr>
  1948. </table>
  1949. </div>
  1950. <div id="apDiv6">
  1951. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_67')">
  1952. <tr>
  1953. <td width="39" height="50" rowspan="3"><div id="NG01_67"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  1954. <td width="41" height="15"><span class="unit_Name">67号</span></td>
  1955. </tr>
  1956. <tr>
  1957. <td height="15"><span class="unit_Name" id="NG01_67gl">4888.5kw</span></td>
  1958. </tr>
  1959. <tr>
  1960. <td height="15"><span class="unit_Name" id="NG01_67fs">7.39m/s</span></td>
  1961. </tr>
  1962. </table>
  1963. </div>
  1964. <div id="apDiv7">
  1965. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_64')">
  1966. <tr>
  1967. <td width="39" height="50" rowspan="3"><div id="NG01_64"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  1968. <td width="41" height="15"><span class="unit_Name">64号</span></td>
  1969. </tr>
  1970. <tr>
  1971. <td height="15"><span class="unit_Name" id="NG01_64gl">4888.5kw</span></td>
  1972. </tr>
  1973. <tr>
  1974. <td height="15"><span class="unit_Name" id="NG01_64fs">7.39m/s</span></td>
  1975. </tr>
  1976. </table>
  1977. </div>
  1978. <div id="apDiv8">
  1979. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_79')">
  1980. <tr>
  1981. <td width="39" height="50" rowspan="3"><div id="NG01_79"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  1982. <td width="41" height="15"><span class="unit_Name">79号</span></td>
  1983. </tr>
  1984. <tr>
  1985. <td height="15"><span class="unit_Name" id="NG01_79gl">4888.5kw</span></td>
  1986. </tr>
  1987. <tr>
  1988. <td height="15"><span class="unit_Name" id="NG01_79fs">7.39m/s</span></td>
  1989. </tr>
  1990. </table>
  1991. </div>
  1992. <div id="apDiv9">
  1993. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_78')">
  1994. <tr>
  1995. <td width="39" height="50" rowspan="3"><div id="NG01_78"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  1996. <td width="41" height="15"><span class="unit_Name">78号</span></td>
  1997. </tr>
  1998. <tr>
  1999. <td height="15"><span class="unit_Name" id="NG01_78gl">4888.5kw</span></td>
  2000. </tr>
  2001. <tr>
  2002. <td height="15"><span class="unit_Name" id="NG01_78fs">7.39m/s</span></td>
  2003. </tr>
  2004. </table>
  2005. </div>
  2006. <div id="apDiv10">
  2007. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_76')">
  2008. <tr>
  2009. <td width="39" height="50" rowspan="3"><div id="NG01_76"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2010. <td width="41" height="15"><span class="unit_Name">76号</span></td>
  2011. </tr>
  2012. <tr>
  2013. <td height="15"><span class="unit_Name" id="NG01_76gl">4888.5kw</span></td>
  2014. </tr>
  2015. <tr>
  2016. <td height="15"><span class="unit_Name" id="NG01_76fs">7.39m/s</span></td>
  2017. </tr>
  2018. </table>
  2019. </div>
  2020. <div id="apDiv11">
  2021. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_66')">
  2022. <tr>
  2023. <td width="39" height="50" rowspan="3"><div id="NG01_66"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2024. <td width="41" height="15"><span class="unit_Name">66号</span></td>
  2025. </tr>
  2026. <tr>
  2027. <td height="15"><span class="unit_Name" id="NG01_66gl">4888.5kw</span></td>
  2028. </tr>
  2029. <tr>
  2030. <td height="15"><span class="unit_Name" id="NG01_66fs">7.39m/s</span></td>
  2031. </tr>
  2032. </table>
  2033. </div>
  2034. <div id="apDiv12">
  2035. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_77')">
  2036. <tr>
  2037. <td width="39" height="50" rowspan="3"><div id="NG01_77"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2038. <td width="41" height="15"><span class="unit_Name">77号</span></td>
  2039. </tr>
  2040. <tr>
  2041. <td height="15"><span class="unit_Name" id="NG01_77gl">4888.5kw</span></td>
  2042. </tr>
  2043. <tr>
  2044. <td height="15"><span class="unit_Name" id="NG01_77fs">7.39m/s</span></td>
  2045. </tr>
  2046. </table>
  2047. </div>
  2048. <div id="apDiv13">
  2049. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_75')">
  2050. <tr>
  2051. <td width="39" height="50" rowspan="3"><div id="NG01_75"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2052. <td width="41" height="15"><span class="unit_Name">75号</span></td>
  2053. </tr>
  2054. <tr>
  2055. <td height="15"><span class="unit_Name" id="NG01_75gl">4888.5kw</span></td>
  2056. </tr>
  2057. <tr>
  2058. <td height="15"><span class="unit_Name" id="NG01_75fs">7.39m/s</span></td>
  2059. </tr>
  2060. </table>
  2061. </div>
  2062. <div id="apDiv14">
  2063. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_28')">
  2064. <tr>
  2065. <td width="39" height="50" rowspan="3"><div id="NG01_28"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2066. <td width="41" height="15"><span class="unit_Name">28号</span></td>
  2067. </tr>
  2068. <tr>
  2069. <td height="15"><span class="unit_Name" id="NG01_28gl">4888.5kw</span></td>
  2070. </tr>
  2071. <tr>
  2072. <td height="15"><span class="unit_Name" id="NG01_28fs">7.39m/s</span></td>
  2073. </tr>
  2074. </table>
  2075. </div>
  2076. <div id="apDiv15">
  2077. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_74')">
  2078. <tr>
  2079. <td width="39" height="50" rowspan="3"><div id="NG01_74"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2080. <td width="41" height="15"><span class="unit_Name">74号</span></td>
  2081. </tr>
  2082. <tr>
  2083. <td height="15"><span class="unit_Name" id="NG01_74gl">4888.5kw</span></td>
  2084. </tr>
  2085. <tr>
  2086. <td height="15"><span class="unit_Name" id="NG01_74fs">7.39m/s</span></td>
  2087. </tr>
  2088. </table>
  2089. </div>
  2090. <div id="apDiv16">
  2091. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_73')">
  2092. <tr>
  2093. <td width="39" height="50" rowspan="3"><div id="NG01_73"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2094. <td width="41" height="15"><span class="unit_Name">73号</span></td>
  2095. </tr>
  2096. <tr>
  2097. <td height="15"><span class="unit_Name" id="NG01_73gl">4888.5kw</span></td>
  2098. </tr>
  2099. <tr>
  2100. <td height="15"><span class="unit_Name" id="NG01_73fs">7.39m/s</span></td>
  2101. </tr>
  2102. </table>
  2103. </div>
  2104. <div id="apDiv17">
  2105. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_58')">
  2106. <tr>
  2107. <td width="39" height="50" rowspan="3"><div id="NG01_58"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2108. <td width="41" height="15"><span class="unit_Name">58号</span></td>
  2109. </tr>
  2110. <tr>
  2111. <td height="15"><span class="unit_Name" id="NG01_58gl">4888.5kw</span></td>
  2112. </tr>
  2113. <tr>
  2114. <td height="15"><span class="unit_Name" id="NG01_58fs">7.39m/s</span></td>
  2115. </tr>
  2116. </table>
  2117. </div>
  2118. <div id="apDiv18">
  2119. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_72')">
  2120. <tr>
  2121. <td width="39" height="50" rowspan="3"><div id="NG01_72"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2122. <td width="41" height="15"><span class="unit_Name">72号</span></td>
  2123. </tr>
  2124. <tr>
  2125. <td height="15"><span class="unit_Name" id="NG01_72gl">4888.5kw</span></td>
  2126. </tr>
  2127. <tr>
  2128. <td height="15"><span class="unit_Name" id="NG01_72fs">7.39m/s</span></td>
  2129. </tr>
  2130. </table>
  2131. </div>
  2132. <div id="apDiv19">
  2133. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_70')">
  2134. <tr>
  2135. <td width="39" height="50" rowspan="3"><div id="NG01_70"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2136. <td width="41" height="15"><span class="unit_Name">70号</span></td>
  2137. </tr>
  2138. <tr>
  2139. <td height="15"><span class="unit_Name" id="NG01_70gl">4888.5kw</span></td>
  2140. </tr>
  2141. <tr>
  2142. <td height="15"><span class="unit_Name" id="NG01_70fs">7.39m/s</span></td>
  2143. </tr>
  2144. </table>
  2145. </div>
  2146. <div id="apDiv20">
  2147. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_71')">
  2148. <tr>
  2149. <td width="39" height="50" rowspan="3"><div id="NG01_71"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2150. <td width="41" height="15"><span class="unit_Name">71号</span></td>
  2151. </tr>
  2152. <tr>
  2153. <td height="15"><span class="unit_Name" id="NG01_71gl">4888.5kw</span></td>
  2154. </tr>
  2155. <tr>
  2156. <td height="15"><span class="unit_Name" id="NG01_71fs">7.39m/s</span></td>
  2157. </tr>
  2158. </table>
  2159. </div>
  2160. <div id="apDiv21">
  2161. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_31')">
  2162. <tr>
  2163. <td width="39" height="50" rowspan="3"><div id="NG01_31"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2164. <td width="41" height="15"><span class="unit_Name">31号</span></td>
  2165. </tr>
  2166. <tr>
  2167. <td height="15"><span class="unit_Name" id="NG01_31gl">4888.5kw</span></td>
  2168. </tr>
  2169. <tr>
  2170. <td height="15"><span class="unit_Name" id="NG01_31fs">7.39m/s</span></td>
  2171. </tr>
  2172. </table>
  2173. </div>
  2174. <div id="apDiv22">
  2175. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_32')">
  2176. <tr>
  2177. <td width="39" height="50" rowspan="3"><div id="NG01_32"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2178. <td width="41" height="15"><span class="unit_Name">32号</span></td>
  2179. </tr>
  2180. <tr>
  2181. <td height="15"><span class="unit_Name" id="NG01_32gl">4888.5kw</span></td>
  2182. </tr>
  2183. <tr>
  2184. <td height="15"><span class="unit_Name" id="NG01_32fs">7.39m/s</span></td>
  2185. </tr>
  2186. </table>
  2187. </div>
  2188. <div id="apDiv23">
  2189. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_33')">
  2190. <tr>
  2191. <td width="39" height="50" rowspan="3"><div id="NG01_33"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2192. <td width="41" height="15"><span class="unit_Name">33号</span></td>
  2193. </tr>
  2194. <tr>
  2195. <td height="15"><span class="unit_Name" id="NG01_33gl">4888.5kw</span></td>
  2196. </tr>
  2197. <tr>
  2198. <td height="15"><span class="unit_Name" id="NG01_33fs">7.39m/s</span></td>
  2199. </tr>
  2200. </table>
  2201. </div>
  2202. <div id="apDiv24">
  2203. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_56')">
  2204. <tr>
  2205. <td width="39" height="50" rowspan="3"><div id="NG01_56"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2206. <td width="41" height="15"><span class="unit_Name">56号</span></td>
  2207. </tr>
  2208. <tr>
  2209. <td height="15"><span class="unit_Name" id="NG01_56gl">4888.5kw</span></td>
  2210. </tr>
  2211. <tr>
  2212. <td height="15"><span class="unit_Name" id="NG01_56fs">7.39m/s</span></td>
  2213. </tr>
  2214. </table>
  2215. </div>
  2216. <div id="apDiv25">
  2217. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_30')">
  2218. <tr>
  2219. <td width="39" height="50" rowspan="3"><div id="NG01_30"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2220. <td width="41" height="15"><span class="unit_Name">30号</span></td>
  2221. </tr>
  2222. <tr>
  2223. <td height="15"><span class="unit_Name" id="NG01_30gl">4888.5kw</span></td>
  2224. </tr>
  2225. <tr>
  2226. <td height="15"><span class="unit_Name" id="NG01_30fs">7.39m/s</span></td>
  2227. </tr>
  2228. </table>
  2229. </div>
  2230. <div id="apDiv26">
  2231. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_29')">
  2232. <tr>
  2233. <td width="39" height="50" rowspan="3"><div id="NG01_29"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2234. <td width="41" height="15"><span class="unit_Name">29号</span></td>
  2235. </tr>
  2236. <tr>
  2237. <td height="15"><span class="unit_Name" id="NG01_29gl">4888.5kw</span></td>
  2238. </tr>
  2239. <tr>
  2240. <td height="15"><span class="unit_Name" id="NG01_29fs">7.39m/s</span></td>
  2241. </tr>
  2242. </table>
  2243. </div>
  2244. <div id="apDiv27">
  2245. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_65')">
  2246. <tr>
  2247. <td width="39" height="50" rowspan="3"><div id="NG01_65"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2248. <td width="41" height="15"><span class="unit_Name">65号</span></td>
  2249. </tr>
  2250. <tr>
  2251. <td height="15"><span class="unit_Name" id="NG01_65gl">4888.5kw</span></td>
  2252. </tr>
  2253. <tr>
  2254. <td height="15"><span class="unit_Name" id="NG01_65fs">7.39m/s</span></td>
  2255. </tr>
  2256. </table>
  2257. </div>
  2258. <div id="apDiv28">
  2259. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_27')">
  2260. <tr>
  2261. <td width="39" height="50" rowspan="3"><div id="NG01_27"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2262. <td width="41" height="15"><span class="unit_Name">27号</span></td>
  2263. </tr>
  2264. <tr>
  2265. <td height="15"><span class="unit_Name" id="NG01_27gl">4888.5kw</span></td>
  2266. </tr>
  2267. <tr>
  2268. <td height="15"><span class="unit_Name" id="NG01_27fs">7.39m/s</span></td>
  2269. </tr>
  2270. </table>
  2271. </div>
  2272. <div id="apDiv29">
  2273. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_22')">
  2274. <tr>
  2275. <td width="39" height="50" rowspan="3"><div id="NG01_26"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2276. <td width="41" height="15"><span class="unit_Name">26号</span></td>
  2277. </tr>
  2278. <tr>
  2279. <td height="15"><span class="unit_Name" id="NG01_26gl">4888.5kw</span></td>
  2280. </tr>
  2281. <tr>
  2282. <td height="15"><span class="unit_Name" id="NG01_26fs">7.39m/s</span></td>
  2283. </tr>
  2284. </table>
  2285. </div>
  2286. <div id="apDiv30">
  2287. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_57')">
  2288. <tr>
  2289. <td width="39" height="50" rowspan="3"><div id="NG01_57"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2290. <td width="41" height="15"><span class="unit_Name">57号</span></td>
  2291. </tr>
  2292. <tr>
  2293. <td height="15"><span class="unit_Name" id="NG01_57gl">4888.5kw</span></td>
  2294. </tr>
  2295. <tr>
  2296. <td height="15"><span class="unit_Name" id="NG01_57fs">7.39m/s</span></td>
  2297. </tr>
  2298. </table>
  2299. </div>
  2300. <div id="apDiv31">
  2301. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_25')">
  2302. <tr>
  2303. <td width="39" height="50" rowspan="3"><div id="NG01_25"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2304. <td width="41" height="15"><span class="unit_Name">25号</span></td>
  2305. </tr>
  2306. <tr>
  2307. <td height="15"><span class="unit_Name" id="NG01_25gl">4888.5kw</span></td>
  2308. </tr>
  2309. <tr>
  2310. <td height="15"><span class="unit_Name" id="NG01_25fs">7.39m/s</span></td>
  2311. </tr>
  2312. </table>
  2313. </div>
  2314. <div id="apDiv32">
  2315. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_24')">
  2316. <tr>
  2317. <td width="39" height="50" rowspan="3"><div id="NG01_24"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2318. <td width="41" height="15"><span class="unit_Name">24号</span></td>
  2319. </tr>
  2320. <tr>
  2321. <td height="15"><span class="unit_Name" id="NG01_24gl">4888.5kw</span></td>
  2322. </tr>
  2323. <tr>
  2324. <td height="15"><span class="unit_Name" id="NG01_24fs">7.39m/s</span></td>
  2325. </tr>
  2326. </table>
  2327. </div>
  2328. <div id="apDiv33">
  2329. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('NG01_69')">
  2330. <tr>
  2331. <td width="39" height="50" rowspan="3"><div id="NG01_69"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
  2332. <td width="41" height="15"><span class="unit_Name">69号</span></td>
  2333. </tr>
  2334. <tr>
  2335. <td height="15"><span class="unit_Name" id="NG01_69gl">4888.5kw</span></td>
  2336. </tr>
  2337. <tr>
  2338. <td height="15"><span class="unit_Name" id="NG01_69fs">7.39m/s</span></td>
  2339. </tr>
  2340. </table>
  2341. </div>
  2342. <img src="<%=request.getContextPath()%>/resource/images/system/pictures/first_Station_button.jpg" width="90" height="30" onclick="project1()" style='cursor: pointer;'/><img src="<%=request.getContextPath()%>/resource/images/system/pictures/second_station_Button_selected.fw.png" width="90" height="30" /><img src="<%=request.getContextPath()%>/resource/images/system/pictures/third_station_Button.jpg" width="90" height="30" onclick="project3()" style='cursor: pointer;'/></td>
  2343. </tr>
  2344. <tr>
  2345. <td height="726" valign="top" background="<%=request.getContextPath()%>/resource/images/system/pictures/nsh_Xl_Second.jpg">&nbsp;</td>
  2346. </tr>
  2347. </table>
  2348. </form>
  2349. </body>
  2350. </html>