pl1.vue 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941
  1. <template>
  2. <div>
  3. <el-row :gutter="10">
  4. <el-col :span="24">
  5. <previewPicture>
  6. <template v-slot:svg>
  7. <svg class="svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
  8. version="1.1" id="图层_1" x="0px" y="0px" width="1848.938px" height="829.936px"
  9. viewBox="0 0 1848.938 829.936" enable-background="new 0 0 1848.938 829.936"
  10. xml:space="preserve">
  11. <g id="other">
  12. <text transform="matrix(1 0 0 1 133.1877 296.7874)" fill="#FFFFFF"
  13. font-family="'MicrosoftYaHei'" font-size="11.6452">
  14. 312
  15. </text>
  16. <rect x="-0.006" y="212.678" transform="matrix(-1 0.0011 -0.0011 -1 1849.1648 426.5897)"
  17. fill="#CAA51A" width="1848.942" height="2.25" />
  18. <rect x="167.938" y="215.912" fill="#CAA51A" width="2.25" height="42.75" />
  19. <rect x="167.938" y="316.967" fill="#CAA51A" width="2.25" height="110.693" />
  20. <rect x="134.188" y="325.66" fill="#CAA51A" width="2.25" height="102" />
  21. <rect x="134.188" y="461.359" fill="#CAA51A" width="2.25" height="27.303" />
  22. <rect x="123.766" y="488.66" fill="#CAA51A" width="23.297" height="2.25" />
  23. <rect x="150.089" y="509.16" fill="#CAA51A" width="2.25" height="21.375" />
  24. <rect x="139.667" y="530.535" fill="#CAA51A" width="23.297" height="2.25" />
  25. <rect x="168.931" y="461.359" fill="#CAA51A" width="2.25" height="27.303" />
  26. <rect x="158.509" y="488.66" fill="#CAA51A" width="23.297" height="2.25" />
  27. <rect x="56.938" y="325.66" fill="#CAA51A" width="79.5" height="2.25" />
  28. <polygon fill="#CAA51A" points="56.934,331.392 47.125,326.781 56.938,322.183 " />
  29. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  30. cx="169.063" cy="452.338" r="9.021" />
  31. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  32. cx="169.063" cy="436.681" r="9.021" />
  33. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  34. points="172.292,456.467 169.047,453.258 166.023,456.467 " />
  35. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  36. x1="168.979" y1="453.173" x2="168.979" y2="447.514" />
  37. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  38. points="172.103,433.772 165.583,433.772 169.021,439.148 " />
  39. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  40. cx="136.438" cy="452.338" r="9.021" />
  41. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  42. cx="136.438" cy="436.681" r="9.021" />
  43. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  44. points="139.667,456.467 136.422,453.258 133.398,456.467 " />
  45. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  46. x1="136.354" y1="453.173" x2="136.354" y2="447.514" />
  47. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  48. points="139.478,433.772 132.958,433.772 136.396,439.148 " />
  49. <rect x="112.188" y="473.785" fill="none" stroke="#CAA51A" stroke-width="2"
  50. stroke-miterlimit="10" width="77.5" height="46.75" />
  51. <circle fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10"
  52. cx="151.5" cy="505.848" r="3.063" />
  53. <line fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10"
  54. x1="153.777" y1="503.01" x2="168.372" y2="490.635" />
  55. <line fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10"
  56. x1="134.629" y1="490.635" x2="150.152" y2="503.564" />
  57. <polyline fill="#44426C"
  58. points="59.295,305.187 59.295,283.253 117.332,283.253 117.332,305.187 " />
  59. <text transform="matrix(1 0 0 1 70.5085 297.7932)" fill="#FFFFFF"
  60. font-family="'MicrosoftYaHei'" font-size="11.8698">
  61. 厂用变
  62. </text>
  63. <text transform="matrix(1 0 0 1 135.4143 557.7874)" fill="#FFFFFF"
  64. font-family="'MicrosoftYaHei'" font-size="11.6452">
  65. 400V
  66. </text>
  67. <rect x="1397.857" y="650.298" fill="#CAA51A" width="2.25" height="27.303" />
  68. <rect x="1387.436" y="677.6" fill="#CAA51A" width="23.297" height="2.25" />
  69. <rect x="1413.758" y="698.1" fill="#CAA51A" width="2.25" height="21.375" />
  70. <rect x="1403.336" y="719.475" fill="#CAA51A" width="23.297" height="2.25" />
  71. <rect x="1432.6" y="650.298" fill="#CAA51A" width="2.25" height="27.303" />
  72. <rect x="1422.178" y="677.6" fill="#CAA51A" width="23.297" height="2.25" />
  73. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  74. cx="1432.732" cy="641.276" r="9.021" />
  75. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  76. cx="1432.73" cy="625.621" r="9.021" />
  77. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  78. points="1435.961,645.403 1432.716,642.194 1429.691,645.403 " />
  79. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  80. x1="1432.648" y1="642.109" x2="1432.648" y2="636.449" />
  81. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  82. points="1435.771,622.711 1429.251,622.711 1432.689,628.087 " />
  83. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  84. cx="1400.107" cy="641.276" r="9.021" />
  85. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  86. cx="1400.105" cy="625.621" r="9.021" />
  87. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  88. points="1403.336,645.403 1400.091,642.194 1397.066,645.403 " />
  89. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  90. x1="1400.023" y1="642.109" x2="1400.023" y2="636.449" />
  91. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  92. points="1403.146,622.711 1396.626,622.711 1400.064,628.087 " />
  93. <rect x="1375.857" y="662.725" fill="none" stroke="#CAA51A" stroke-width="2"
  94. stroke-miterlimit="10" width="77.5" height="46.75" />
  95. <circle fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10"
  96. cx="1415.169" cy="694.787" r="3.063" />
  97. <line fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10"
  98. x1="1417.446" y1="691.947" x2="1432.042" y2="679.572" />
  99. <line fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10"
  100. x1="1398.297" y1="679.572" x2="1413.821" y2="692.503" />
  101. <text transform="matrix(1 0 0 1 1375.8577 744.0569)" fill="#FFFFFF"
  102. font-family="'MicrosoftYaHei'" font-size="11.6452">
  103. 400V 移动箱变
  104. </text>
  105. <rect x="197.828" y="264.478" opacity="0.9" fill="#162320" enable-background="new "
  106. width="115.109" height="18.491" />
  107. <rect x="197.828" y="284.975" opacity="0.9" fill="#162320" enable-background="new "
  108. width="115.109" height="18.49" />
  109. <rect x="197.828" y="305.471" opacity="0.9" fill="#162320" enable-background="new "
  110. width="115.109" height="18.49" />
  111. <rect x="197.828" y="325.968" opacity="0.9" fill="#162320" enable-background="new "
  112. width="115.109" height="18.488" />
  113. <g>
  114. <text transform="matrix(1 0 0 1 216.553 278.428)" fill="#97A1A2"
  115. font-family="'MicrosoftYaHei'" font-size="11.3899">
  116. la
  117. </text>
  118. <text transform="matrix(1 0 0 1 225.8801 278.428)" fill="#97A1A2"
  119. font-family="'MicrosoftYaHei'" font-size="9.6234">
  120. (A)
  121. </text>
  122. <text transform="matrix(1 0 0 1 239.0789 278.428)" fill="#97A1A2"
  123. font-family="'MicrosoftYaHei'" font-size="11.3899">
  124. :
  125. </text>
  126. </g>
  127. <g>
  128. <text transform="matrix(1 0 0 1 200.6501 296.7874)" fill="#97A1A2"
  129. font-family="'MicrosoftYaHei'" font-size="11.3899">
  130. P(kVar):
  131. </text>
  132. </g>
  133. <g>
  134. <text transform="matrix(1 0 0 1 200.6277 319.0725)" fill="#97A1A2"
  135. font-family="'MicrosoftYaHei'" font-size="11.3899">
  136. Q(kVar):
  137. </text>
  138. </g>
  139. <g>
  140. <text transform="matrix(1 0 0 1 215.6038 339.9065)" fill="#97A1A2"
  141. font-family="'MicrosoftYaHei'" font-size="11.3899">
  142. COS:
  143. </text>
  144. </g>
  145. <rect x="88.313" y="102.478" opacity="0.9" fill="#162320" enable-background="new "
  146. width="115.11" height="18.491" />
  147. <rect x="88.313" y="122.975" opacity="0.9" fill="#162320" enable-background="new "
  148. width="115.11" height="18.489" />
  149. <rect x="88.313" y="143.471" opacity="0.9" fill="#162320" enable-background="new "
  150. width="115.11" height="18.489" />
  151. <rect x="88.313" y="163.968" opacity="0.9" fill="#162320" enable-background="new "
  152. width="115.11" height="18.489" />
  153. <g>
  154. <text transform="matrix(1 0 0 1 105.2566 116.428)" fill="#97A1A2"
  155. font-family="'MicrosoftYaHei'" font-size="11.3899">
  156. Ua
  157. </text>
  158. <text transform="matrix(1 0 0 1 120.0554 116.428)" fill="#97A1A2"
  159. font-family="'MicrosoftYaHei'" font-size="9.6234">
  160. (kV)
  161. </text>
  162. <text transform="matrix(1 0 0 1 138.2317 116.428)" fill="#97A1A2"
  163. font-family="'MicrosoftYaHei'" font-size="11.3899">
  164. :
  165. </text>
  166. </g>
  167. <g>
  168. <text transform="matrix(1 0 0 1 104.2776 134.7874)" fill="#97A1A2"
  169. font-family="'MicrosoftYaHei'" font-size="11.3899">
  170. Ub
  171. </text>
  172. <text transform="matrix(1 0 0 1 120.0554 134.7874)" fill="#97A1A2"
  173. font-family="'MicrosoftYaHei'" font-size="9.6234">
  174. (kV)
  175. </text>
  176. <text transform="matrix(1 0 0 1 138.2307 134.7874)" fill="#97A1A2"
  177. font-family="'MicrosoftYaHei'" font-size="11.3899">
  178. :
  179. </text>
  180. </g>
  181. <g>
  182. <text transform="matrix(1 0 0 1 105.8406 157.0725)" fill="#97A1A2"
  183. font-family="'MicrosoftYaHei'" font-size="11.3899">
  184. Uc
  185. </text>
  186. <text transform="matrix(1 0 0 1 120.0554 157.0725)" fill="#97A1A2"
  187. font-family="'MicrosoftYaHei'" font-size="9.6234">
  188. (kV)
  189. </text>
  190. <text transform="matrix(1 0 0 1 138.2317 157.0725)" fill="#97A1A2"
  191. font-family="'MicrosoftYaHei'" font-size="11.3899">
  192. :
  193. </text>
  194. </g>
  195. <g>
  196. <text transform="matrix(1 0 0 1 97.9822 177.9065)" fill="#97A1A2"
  197. font-family="'MicrosoftYaHei'" font-size="11.3899">
  198. Uab
  199. </text>
  200. <text transform="matrix(1 0 0 1 120.0564 177.9065)" fill="#97A1A2"
  201. font-family="'MicrosoftYaHei'" font-size="9.6234">
  202. (kV)
  203. </text>
  204. <text transform="matrix(1 0 0 1 138.2312 177.9065)" fill="#97A1A2"
  205. font-family="'MicrosoftYaHei'" font-size="11.3899">
  206. :
  207. </text>
  208. </g>
  209. <rect x="431.938" y="215.912" fill="#CAA51A" width="2.25" height="42.75" />
  210. <rect x="431.938" y="316.967" fill="#CAA51A" width="2.25" height="187.126" />
  211. <rect x="335.938" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
  212. <rect x="335.938" y="726.91" fill="#CAA51A" width="2.25" height="10" />
  213. <rect x="402.188" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
  214. <rect x="336.444" y="635.635" fill="#CAA51A" width="17.577" height="2.25" />
  215. <rect x="386.736" y="635.635" fill="#CAA51A" width="17.577" height="2.25" />
  216. <rect x="370.938" y="502.439" fill="#CAA51A" width="123.272" height="2.25" />
  217. <rect x="370.7" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
  218. <rect x="491.961" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
  219. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  220. cx="370.938" cy="626.389" r="9.021" />
  221. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  222. cx="363.043" cy="635.412" r="9.021" />
  223. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  224. points="367.709,622.262 370.954,625.471 373.979,622.262 " />
  225. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  226. points="489.475,622.262 492.72,625.471 495.744,622.262 " />
  227. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  228. x1="371.022" y1="625.557" x2="371.022" y2="631.216" />
  229. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  230. points="360.002,638.322 366.522,638.322 363.084,632.947 " />
  231. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  232. cx="378.835" cy="635.412" r="9.021" />
  233. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  234. points="375.794,638.322 382.314,638.322 378.876,632.947 " />
  235. <g>
  236. <rect x="325.688" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
  237. stroke-miterlimit="10" width="24" height="40.331" />
  238. <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
  239. d="M326.938,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
  240. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  241. x1="348.438" y1="686.579" x2="325.688" y2="725.91" />
  242. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  243. x1="337.063" y1="718.41" x2="345.232" y2="718.41" />
  244. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  245. x1="337.063" y1="722.16" x2="345.232" y2="722.16" />
  246. </g>
  247. <rect x="402.563" y="726.91" fill="#CAA51A" width="2.25" height="10" />
  248. <g>
  249. <rect x="392.313" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
  250. stroke-miterlimit="10" width="24" height="40.331" />
  251. <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
  252. d="M393.563,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
  253. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  254. x1="415.063" y1="686.579" x2="392.313" y2="725.91" />
  255. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  256. x1="403.688" y1="718.41" x2="411.857" y2="718.41" />
  257. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  258. x1="403.688" y1="722.16" x2="411.857" y2="722.16" />
  259. </g>
  260. <polyline fill="#44426C"
  261. points="355.987,670.835 355.987,648.9 385.188,648.9 385.188,670.835 " />
  262. <text transform="matrix(1 0 0 1 363.3196 663.4397)" fill="#FFFFFF"
  263. font-family="'MicrosoftYaHei'" font-size="11.8698">
  264. #1
  265. </text>
  266. <polyline fill="#44426C"
  267. points="443.973,372.313 471.948,372.313 471.948,467.91 443.973,467.91 " />
  268. <text transform="matrix(0 1 -1 0 453.3645 379.6477)" fill="#FFFFFF"
  269. font-family="'MicrosoftYaHei'" font-size="13.5">
  270. #1
  271. </text>
  272. <text transform="matrix(1 0 0 1 329.9377 748.2483)" fill="#FFFFFF"
  273. font-family="'MicrosoftYaHei'" font-size="11.6452">
  274. #1
  275. </text>
  276. <text transform="matrix(1 0 0 1 396.1877 296.7874)" fill="#FFFFFF"
  277. font-family="'MicrosoftYaHei'" font-size="11.6452">
  278. 313
  279. </text>
  280. <text transform="matrix(1 0 0 1 396.1877 748.2483)" fill="#FFFFFF"
  281. font-family="'MicrosoftYaHei'" font-size="11.6452">
  282. #2
  283. </text>
  284. <rect x="457.96" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
  285. <rect x="457.96" y="726.91" fill="#CAA51A" width="2.25" height="10" />
  286. <rect x="524.21" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
  287. <rect x="458.466" y="635.635" fill="#CAA51A" width="17.577" height="2.25" />
  288. <rect x="508.758" y="635.635" fill="#CAA51A" width="17.577" height="2.25" />
  289. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  290. cx="492.96" cy="626.389" r="9.021" />
  291. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  292. cx="485.064" cy="635.412" r="9.021" />
  293. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  294. x1="493.044" y1="625.557" x2="493.044" y2="631.216" />
  295. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  296. points="482.025,638.322 488.544,638.322 485.107,632.947 " />
  297. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  298. cx="500.857" cy="635.412" r="9.021" />
  299. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  300. points="497.817,638.322 504.336,638.322 500.898,632.947 " />
  301. <g>
  302. <rect x="447.71" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
  303. stroke-miterlimit="10" width="24" height="40.331" />
  304. <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
  305. d="M448.96,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
  306. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  307. x1="470.46" y1="686.579" x2="447.71" y2="725.91" />
  308. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  309. x1="459.085" y1="718.41" x2="467.255" y2="718.41" />
  310. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  311. x1="459.085" y1="722.16" x2="467.255" y2="722.16" />
  312. </g>
  313. <rect x="524.585" y="726.91" fill="#CAA51A" width="2.25" height="10" />
  314. <g>
  315. <rect x="514.335" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
  316. stroke-miterlimit="10" width="24" height="40.331" />
  317. <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
  318. d="M515.585,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
  319. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  320. x1="537.085" y1="686.579" x2="514.335" y2="725.91" />
  321. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  322. x1="525.71" y1="718.41" x2="533.88" y2="718.41" />
  323. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  324. x1="525.71" y1="722.16" x2="533.88" y2="722.16" />
  325. </g>
  326. <polyline fill="#44426C"
  327. points="478.01,670.835 478.01,648.9 507.21,648.9 507.21,670.835 " />
  328. <text transform="matrix(1 0 0 1 485.342 663.4397)" fill="#FFFFFF"
  329. font-family="'MicrosoftYaHei'" font-size="11.8698">
  330. #2
  331. </text>
  332. <text transform="matrix(1 0 0 1 451.9602 748.2483)" fill="#FFFFFF"
  333. font-family="'MicrosoftYaHei'" font-size="11.6452">
  334. #3
  335. </text>
  336. <text transform="matrix(1 0 0 1 518.2102 748.2483)" fill="#FFFFFF"
  337. font-family="'MicrosoftYaHei'" font-size="11.6452">
  338. #4
  339. </text>
  340. <text transform="matrix(1 0 0 1 451.1008 410.3079)" fill="#FFFFFF"
  341. font-family="'MicrosoftYaHei'" font-size="13.5">
  342. </text>
  343. <text transform="matrix(1 0 0 1 451.1008 426.5081)" fill="#FFFFFF"
  344. font-family="'MicrosoftYaHei'" font-size="13.5">
  345. </text>
  346. <text transform="matrix(1 0 0 1 451.1008 442.7073)" fill="#FFFFFF"
  347. font-family="'MicrosoftYaHei'" font-size="13.5">
  348. </text>
  349. <text transform="matrix(1 0 0 1 451.1008 458.9075)" fill="#FFFFFF"
  350. font-family="'MicrosoftYaHei'" font-size="13.5">
  351. 线
  352. </text>
  353. <text transform="matrix(1 0 0 1 464.6008 459.1282)" fill="#FFFFFF"
  354. font-family="'MicrosoftYaHei'" font-size="13.5" letter-spacing="20"></text>
  355. <rect x="465.381" y="265.196" opacity="0.9" fill="#162320" enable-background="new "
  356. width="115.109" height="18.491" />
  357. <rect x="465.381" y="285.693" opacity="0.9" fill="#162320" enable-background="new "
  358. width="115.109" height="18.49" />
  359. <rect x="465.381" y="306.189" opacity="0.9" fill="#162320" enable-background="new "
  360. width="115.109" height="18.49" />
  361. <rect x="465.381" y="326.686" opacity="0.9" fill="#162320" enable-background="new "
  362. width="115.109" height="18.49" />
  363. <g>
  364. <text transform="matrix(1 0 0 1 484.1057 279.1467)" fill="#97A1A2"
  365. font-family="'MicrosoftYaHei'" font-size="11.3899">
  366. la
  367. </text>
  368. <text transform="matrix(1 0 0 1 493.4329 279.1467)" fill="#97A1A2"
  369. font-family="'MicrosoftYaHei'" font-size="9.6234">
  370. (A)
  371. </text>
  372. <text transform="matrix(1 0 0 1 506.6316 279.1467)" fill="#97A1A2"
  373. font-family="'MicrosoftYaHei'" font-size="11.3899">
  374. :
  375. </text>
  376. </g>
  377. <g>
  378. <text transform="matrix(1 0 0 1 468.2029 297.5061)" fill="#97A1A2"
  379. font-family="'MicrosoftYaHei'" font-size="11.3899">
  380. P(kVar):
  381. </text>
  382. </g>
  383. <g>
  384. <text transform="matrix(1 0 0 1 465.1804 319.7913)" fill="#97A1A2"
  385. font-family="'MicrosoftYaHei'" font-size="11.3899">
  386. Q(kVar):
  387. </text>
  388. </g>
  389. <g>
  390. <text transform="matrix(1 0 0 1 483.1565 340.6252)" fill="#97A1A2"
  391. font-family="'MicrosoftYaHei'" font-size="11.3899">
  392. COS:
  393. </text>
  394. </g>
  395. <rect x="634.499" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
  396. <rect x="755.76" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
  397. <rect x="696.005" y="215.912" fill="#CAA51A" width="2.25" height="42.75" />
  398. <rect x="696.005" y="316.967" fill="#CAA51A" width="2.25" height="187.126" />
  399. <rect x="600.005" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
  400. <rect x="600.005" y="726.91" fill="#CAA51A" width="2.25" height="10" />
  401. <rect x="666.255" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
  402. <rect x="600.511" y="635.635" fill="#CAA51A" width="17.577" height="2.25" />
  403. <rect x="650.803" y="635.635" fill="#CAA51A" width="17.577" height="2.25" />
  404. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  405. cx="635.005" cy="626.389" r="9.021" />
  406. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  407. cx="627.11" cy="635.412" r="9.021" />
  408. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  409. points="631.776,622.262 635.021,625.471 638.045,622.262 " />
  410. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  411. points="753.542,622.262 756.787,625.471 759.813,622.262 " />
  412. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  413. x1="635.089" y1="625.557" x2="635.089" y2="631.216" />
  414. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  415. points="624.069,638.322 630.589,638.322 627.151,632.947 " />
  416. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  417. cx="642.902" cy="635.412" r="9.021" />
  418. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  419. points="639.861,638.322 646.381,638.322 642.943,632.947 " />
  420. <g>
  421. <rect x="589.755" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
  422. stroke-miterlimit="10" width="24" height="40.331" />
  423. <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
  424. d="M591.005,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
  425. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  426. x1="612.505" y1="686.579" x2="589.755" y2="725.91" />
  427. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  428. x1="601.13" y1="718.41" x2="609.299" y2="718.41" />
  429. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  430. x1="601.13" y1="722.16" x2="609.299" y2="722.16" />
  431. </g>
  432. <rect x="666.63" y="726.91" fill="#CAA51A" width="2.25" height="10" />
  433. <g>
  434. <rect x="656.38" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
  435. stroke-miterlimit="10" width="24" height="40.331" />
  436. <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
  437. d="M657.63,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
  438. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  439. x1="679.13" y1="686.579" x2="656.38" y2="725.91" />
  440. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  441. x1="667.755" y1="718.41" x2="675.924" y2="718.41" />
  442. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  443. x1="667.755" y1="722.16" x2="675.924" y2="722.16" />
  444. </g>
  445. <polyline fill="#44426C"
  446. points="620.054,670.835 620.054,648.9 649.255,648.9 649.255,670.835 " />
  447. <text transform="matrix(1 0 0 1 627.3865 663.4397)" fill="#FFFFFF"
  448. font-family="'MicrosoftYaHei'" font-size="11.8698">
  449. #3
  450. </text>
  451. <polyline fill="#44426C"
  452. points="708.039,372.313 736.015,372.313 736.015,467.91 708.039,467.91 " />
  453. <text transform="matrix(0 1 -1 0 717.4299 379.6477)" fill="#FFFFFF"
  454. font-family="'MicrosoftYaHei'" font-size="13.5">
  455. #2
  456. </text>
  457. <text transform="matrix(1 0 0 1 594.0046 748.2483)" fill="#FFFFFF"
  458. font-family="'MicrosoftYaHei'" font-size="11.6452">
  459. #5
  460. </text>
  461. <text transform="matrix(1 0 0 1 660.2546 296.7874)" fill="#FFFFFF"
  462. font-family="'MicrosoftYaHei'" font-size="11.6452">
  463. 314
  464. </text>
  465. <text transform="matrix(1 0 0 1 660.2546 748.2483)" fill="#FFFFFF"
  466. font-family="'MicrosoftYaHei'" font-size="11.6452">
  467. #6
  468. </text>
  469. <rect x="722.027" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
  470. <rect x="722.027" y="726.91" fill="#CAA51A" width="2.25" height="10" />
  471. <rect x="788.277" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
  472. <rect x="722.532" y="635.635" fill="#CAA51A" width="17.577" height="2.25" />
  473. <rect x="772.824" y="635.635" fill="#CAA51A" width="17.577" height="2.25" />
  474. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  475. cx="757.027" cy="626.389" r="9.021" />
  476. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  477. cx="749.132" cy="635.412" r="9.021" />
  478. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  479. x1="757.111" y1="625.557" x2="757.111" y2="631.216" />
  480. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  481. points="746.092,638.322 752.611,638.322 749.174,632.947 " />
  482. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  483. cx="764.924" cy="635.412" r="9.021" />
  484. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  485. points="761.884,638.322 768.403,638.322 764.966,632.947 " />
  486. <g>
  487. <rect x="711.777" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
  488. stroke-miterlimit="10" width="24" height="40.331" />
  489. <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
  490. d="M713.027,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
  491. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  492. x1="734.527" y1="686.579" x2="711.777" y2="725.91" />
  493. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  494. x1="723.152" y1="718.41" x2="731.322" y2="718.41" />
  495. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  496. x1="723.152" y1="722.16" x2="731.322" y2="722.16" />
  497. </g>
  498. <rect x="788.652" y="726.91" fill="#CAA51A" width="2.25" height="10" />
  499. <g>
  500. <rect x="778.402" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
  501. stroke-miterlimit="10" width="24" height="40.331" />
  502. <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
  503. d="M779.652,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
  504. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  505. x1="801.152" y1="686.579" x2="778.402" y2="725.91" />
  506. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  507. x1="789.777" y1="718.41" x2="797.947" y2="718.41" />
  508. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  509. x1="789.777" y1="722.16" x2="797.947" y2="722.16" />
  510. </g>
  511. <polyline fill="#44426C"
  512. points="742.076,670.835 742.076,648.9 771.277,648.9 771.277,670.835 " />
  513. <text transform="matrix(1 0 0 1 749.4089 663.4397)" fill="#FFFFFF"
  514. font-family="'MicrosoftYaHei'" font-size="11.8698">
  515. #4
  516. </text>
  517. <text transform="matrix(1 0 0 1 716.0271 748.2483)" fill="#FFFFFF"
  518. font-family="'MicrosoftYaHei'" font-size="11.6452">
  519. #7
  520. </text>
  521. <text transform="matrix(1 0 0 1 782.2771 748.2483)" fill="#FFFFFF"
  522. font-family="'MicrosoftYaHei'" font-size="11.6452">
  523. #8
  524. </text>
  525. <text transform="matrix(1 0 0 1 715.1677 410.3079)" fill="#FFFFFF"
  526. font-family="'MicrosoftYaHei'" font-size="13.5">
  527. </text>
  528. <text transform="matrix(1 0 0 1 715.1677 426.5081)" fill="#FFFFFF"
  529. font-family="'MicrosoftYaHei'" font-size="13.5">
  530. </text>
  531. <text transform="matrix(1 0 0 1 715.1677 442.7073)" fill="#FFFFFF"
  532. font-family="'MicrosoftYaHei'" font-size="13.5">
  533. </text>
  534. <text transform="matrix(1 0 0 1 715.1677 458.9075)" fill="#FFFFFF"
  535. font-family="'MicrosoftYaHei'" font-size="13.5">
  536. 线
  537. </text>
  538. <text transform="matrix(1 0 0 1 728.6677 459.1282)" fill="#FFFFFF"
  539. font-family="'MicrosoftYaHei'" font-size="13.5" letter-spacing="20"></text>
  540. <rect x="724.059" y="265.196" opacity="0.9" fill="#162320" enable-background="new "
  541. width="115.11" height="18.491" />
  542. <rect x="724.059" y="285.693" opacity="0.9" fill="#162320" enable-background="new "
  543. width="115.11" height="18.49" />
  544. <rect x="724.059" y="306.189" opacity="0.9" fill="#162320" enable-background="new "
  545. width="115.11" height="18.49" />
  546. <rect x="724.059" y="326.686" opacity="0.9" fill="#162320" enable-background="new "
  547. width="115.11" height="18.49" />
  548. <g>
  549. <text transform="matrix(1 0 0 1 742.7839 279.1467)" fill="#97A1A2"
  550. font-family="'MicrosoftYaHei'" font-size="11.3899">
  551. la
  552. </text>
  553. <text transform="matrix(1 0 0 1 752.1111 279.1467)" fill="#97A1A2"
  554. font-family="'MicrosoftYaHei'" font-size="9.6234">
  555. (A)
  556. </text>
  557. <text transform="matrix(1 0 0 1 765.3098 279.1467)" fill="#97A1A2"
  558. font-family="'MicrosoftYaHei'" font-size="11.3899">
  559. :
  560. </text>
  561. </g>
  562. <g>
  563. <text transform="matrix(1 0 0 1 726.8811 297.5061)" fill="#97A1A2"
  564. font-family="'MicrosoftYaHei'" font-size="11.3899">
  565. P(kVar):
  566. </text>
  567. </g>
  568. <g>
  569. <text transform="matrix(1 0 0 1 726.8586 319.7913)" fill="#97A1A2"
  570. font-family="'MicrosoftYaHei'" font-size="11.3899">
  571. Q(kVar):
  572. </text>
  573. </g>
  574. <g>
  575. <text transform="matrix(1 0 0 1 741.8347 340.6252)" fill="#97A1A2"
  576. font-family="'MicrosoftYaHei'" font-size="11.3899">
  577. COS:
  578. </text>
  579. </g>
  580. <rect x="634.738" y="502.439" fill="#CAA51A" width="123.271" height="2.25" />
  581. <rect x="898.938" y="502.439" fill="#CAA51A" width="123.273" height="2.25" />
  582. <rect x="898.699" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
  583. <rect x="1019.961" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
  584. <rect x="999.77" y="266.198" opacity="0.9" fill="#162320" enable-background="new "
  585. width="115.108" height="18.491" />
  586. <rect x="999.77" y="286.696" opacity="0.9" fill="#162320" enable-background="new "
  587. width="115.108" height="18.49" />
  588. <rect x="999.77" y="307.192" opacity="0.9" fill="#162320" enable-background="new "
  589. width="115.108" height="18.49" />
  590. <rect x="999.77" y="327.688" opacity="0.9" fill="#162320" enable-background="new "
  591. width="115.108" height="18.49" />
  592. <g>
  593. <text transform="matrix(1 0 0 1 1018.4944 280.1487)" fill="#97A1A2"
  594. font-family="'MicrosoftYaHei'" font-size="11.3899">
  595. la
  596. </text>
  597. <text transform="matrix(1 0 0 1 1027.8206 280.1487)" fill="#97A1A2"
  598. font-family="'MicrosoftYaHei'" font-size="9.6234">
  599. (A)
  600. </text>
  601. <text transform="matrix(1 0 0 1 1041.0198 280.1487)" fill="#97A1A2"
  602. font-family="'MicrosoftYaHei'" font-size="11.3899">
  603. :
  604. </text>
  605. </g>
  606. <g>
  607. <text transform="matrix(1 0 0 1 1002.592 298.51)" fill="#97A1A2"
  608. font-family="'MicrosoftYaHei'" font-size="11.3899">
  609. P(kVar):
  610. </text>
  611. </g>
  612. <g>
  613. <text transform="matrix(1 0 0 1 1002.5686 320.7952)" fill="#97A1A2"
  614. font-family="'MicrosoftYaHei'" font-size="11.3899">
  615. Q(kVar):
  616. </text>
  617. </g>
  618. <g>
  619. <text transform="matrix(1 0 0 1 1017.5452 341.6292)" fill="#97A1A2"
  620. font-family="'MicrosoftYaHei'" font-size="11.3899">
  621. COS:
  622. </text>
  623. </g>
  624. <rect x="960.325" y="215.912" fill="#CAA51A" width="2.25" height="42.75" />
  625. <rect x="960.325" y="316.967" fill="#CAA51A" width="2.25" height="187.126" />
  626. <rect x="864.325" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
  627. <rect x="864.325" y="726.91" fill="#CAA51A" width="2.25" height="10" />
  628. <rect x="930.575" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
  629. <rect x="864.831" y="635.635" fill="#CAA51A" width="17.577" height="2.25" />
  630. <rect x="915.124" y="635.635" fill="#CAA51A" width="17.576" height="2.25" />
  631. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  632. cx="899.325" cy="626.389" r="9.021" />
  633. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  634. cx="891.431" cy="635.412" r="9.021" />
  635. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  636. points="896.097,622.262 899.342,625.471 902.366,622.262 " />
  637. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  638. points="1017.864,622.262 1021.109,625.471 1024.133,622.262 " />
  639. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  640. x1="899.409" y1="625.557" x2="899.409" y2="631.216" />
  641. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  642. points="888.391,638.322 894.909,638.322 891.473,632.947 " />
  643. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  644. cx="907.223" cy="635.412" r="9.021" />
  645. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  646. points="904.183,638.322 910.701,638.322 907.265,632.947 " />
  647. <g>
  648. <rect x="854.075" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
  649. stroke-miterlimit="10" width="24" height="40.331" />
  650. <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
  651. d="M855.325,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
  652. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  653. x1="876.825" y1="686.579" x2="854.075" y2="725.91" />
  654. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  655. x1="865.45" y1="718.41" x2="873.62" y2="718.41" />
  656. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  657. x1="865.45" y1="722.16" x2="873.62" y2="722.16" />
  658. </g>
  659. <rect x="930.95" y="726.91" fill="#CAA51A" width="2.25" height="10" />
  660. <g>
  661. <rect x="920.7" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
  662. stroke-miterlimit="10" width="24" height="40.331" />
  663. <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
  664. d="M921.95,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
  665. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  666. x1="943.45" y1="686.579" x2="920.7" y2="725.91" />
  667. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  668. x1="932.075" y1="718.41" x2="940.245" y2="718.41" />
  669. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  670. x1="932.075" y1="722.16" x2="940.245" y2="722.16" />
  671. </g>
  672. <polyline fill="#44426C"
  673. points="884.374,670.835 884.374,648.9 913.575,648.9 913.575,670.835 " />
  674. <text transform="matrix(1 0 0 1 891.7078 663.4397)" fill="#FFFFFF"
  675. font-family="'MicrosoftYaHei'" font-size="11.8698">
  676. #5
  677. </text>
  678. <polyline fill="#44426C"
  679. points="972.361,372.313 1000.336,372.313 1000.336,467.91 972.361,467.91 " />
  680. <text transform="matrix(0 1 -1 0 981.7542 379.6477)" fill="#FFFFFF"
  681. font-family="'MicrosoftYaHei'" font-size="13.5">
  682. #3
  683. </text>
  684. <text transform="matrix(1 0 0 1 858.3259 748.2483)" fill="#FFFFFF"
  685. font-family="'MicrosoftYaHei'" font-size="11.6452">
  686. #9
  687. </text>
  688. <text transform="matrix(1 0 0 1 924.5759 296.7874)" fill="#FFFFFF"
  689. font-family="'MicrosoftYaHei'" font-size="11.6452">
  690. 315
  691. </text>
  692. <text transform="matrix(1 0 0 1 924.5759 748.2483)" fill="#FFFFFF"
  693. font-family="'MicrosoftYaHei'" font-size="11.6452">
  694. #10
  695. </text>
  696. <rect x="986.348" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
  697. <rect x="986.348" y="726.91" fill="#CAA51A" width="2.25" height="10" />
  698. <rect x="1052.598" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
  699. <rect x="986.854" y="635.635" fill="#CAA51A" width="17.578" height="2.25" />
  700. <rect x="1037.146" y="635.635" fill="#CAA51A" width="17.575" height="2.25" />
  701. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  702. cx="1021.348" cy="626.389" r="9.021" />
  703. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  704. cx="1013.453" cy="635.412" r="9.021" />
  705. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  706. x1="1021.432" y1="625.557" x2="1021.432" y2="631.216" />
  707. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  708. points="1010.412,638.322 1016.932,638.322 1013.494,632.947 " />
  709. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  710. cx="1029.245" cy="635.412" r="9.021" />
  711. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  712. points="1026.206,638.322 1032.725,638.322 1029.287,632.947 " />
  713. <g>
  714. <rect x="976.099" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
  715. stroke-miterlimit="10" width="24" height="40.331" />
  716. <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
  717. d="M977.349,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
  718. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  719. x1="998.848" y1="686.579" x2="976.099" y2="725.91" />
  720. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  721. x1="987.473" y1="718.41" x2="995.643" y2="718.41" />
  722. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  723. x1="987.473" y1="722.16" x2="995.643" y2="722.16" />
  724. </g>
  725. <rect x="1052.973" y="726.91" fill="#CAA51A" width="2.25" height="10" />
  726. <g>
  727. <rect x="1042.723" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
  728. stroke-miterlimit="10" width="24" height="40.331" />
  729. <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
  730. d="M1043.973,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
  731. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  732. x1="1065.473" y1="686.579" x2="1042.723" y2="725.91" />
  733. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  734. x1="1054.098" y1="718.41" x2="1062.268" y2="718.41" />
  735. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  736. x1="1054.098" y1="722.16" x2="1062.268" y2="722.16" />
  737. </g>
  738. <polyline fill="#44426C"
  739. points="1006.398,670.835 1006.398,648.9 1035.598,648.9 1035.598,670.835 " />
  740. <text transform="matrix(1 0 0 1 1013.7307 663.4397)" fill="#FFFFFF"
  741. font-family="'MicrosoftYaHei'" font-size="11.8698">
  742. #6
  743. </text>
  744. <text transform="matrix(1 0 0 1 980.3479 748.2483)" fill="#FFFFFF"
  745. font-family="'MicrosoftYaHei'" font-size="11.6452">
  746. #11
  747. </text>
  748. <text transform="matrix(1 0 0 1 1043.5979 748.2483)" fill="#FFFFFF"
  749. font-family="'MicrosoftYaHei'" font-size="11.6452">
  750. #12
  751. </text>
  752. <text transform="matrix(1 0 0 1 979.4885 410.3079)" fill="#FFFFFF"
  753. font-family="'MicrosoftYaHei'" font-size="13.5">
  754. </text>
  755. <text transform="matrix(1 0 0 1 979.4885 426.5081)" fill="#FFFFFF"
  756. font-family="'MicrosoftYaHei'" font-size="13.5">
  757. </text>
  758. <text transform="matrix(1 0 0 1 979.4885 442.7073)" fill="#FFFFFF"
  759. font-family="'MicrosoftYaHei'" font-size="13.5">
  760. </text>
  761. <text transform="matrix(1 0 0 1 979.4885 458.9075)" fill="#FFFFFF"
  762. font-family="'MicrosoftYaHei'" font-size="13.5">
  763. 线
  764. </text>
  765. <text transform="matrix(1 0 0 1 992.9885 459.1282)" fill="#FFFFFF"
  766. font-family="'MicrosoftYaHei'" font-size="13.5" letter-spacing="20"></text>
  767. <rect x="1535.633" y="502.439" fill="#CAA51A" width="123.272" height="2.25" />
  768. <rect x="1535.395" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
  769. <rect x="1656.656" y="503.01" fill="#CAA51A" width="2.25" height="99.399" />
  770. <rect x="1646.463" y="266.198" opacity="0.9" fill="#162320" enable-background="new "
  771. width="115.108" height="18.491" />
  772. <rect x="1646.463" y="286.696" opacity="0.9" fill="#162320" enable-background="new "
  773. width="115.108" height="18.49" />
  774. <rect x="1646.463" y="307.192" opacity="0.9" fill="#162320" enable-background="new "
  775. width="115.108" height="18.49" />
  776. <rect x="1646.463" y="327.688" opacity="0.9" fill="#162320" enable-background="new "
  777. width="115.108" height="18.49" />
  778. <g>
  779. <text transform="matrix(1 0 0 1 1665.1897 280.1487)" fill="#97A1A2"
  780. font-family="'MicrosoftYaHei'" font-size="11.3899">
  781. la
  782. </text>
  783. <text transform="matrix(1 0 0 1 1674.5159 280.1487)" fill="#97A1A2"
  784. font-family="'MicrosoftYaHei'" font-size="9.6234">
  785. (A)
  786. </text>
  787. <text transform="matrix(1 0 0 1 1687.7151 280.1487)" fill="#97A1A2"
  788. font-family="'MicrosoftYaHei'" font-size="11.3899">
  789. :
  790. </text>
  791. </g>
  792. <g>
  793. <text transform="matrix(1 0 0 1 1649.2854 298.51)" fill="#97A1A2"
  794. font-family="'MicrosoftYaHei'" font-size="11.3899">
  795. P(kVar):
  796. </text>
  797. </g>
  798. <g>
  799. <text transform="matrix(1 0 0 1 1651.2639 320.7952)" fill="#97A1A2"
  800. font-family="'MicrosoftYaHei'" font-size="11.3899">
  801. Q(kVar):
  802. </text>
  803. </g>
  804. <g>
  805. <text transform="matrix(1 0 0 1 1664.2405 341.6292)" fill="#97A1A2"
  806. font-family="'MicrosoftYaHei'" font-size="11.3899">
  807. COS:
  808. </text>
  809. </g>
  810. <rect x="1597.021" y="215.912" fill="#CAA51A" width="2.25" height="42.75" />
  811. <rect x="1597.021" y="316.967" fill="#CAA51A" width="2.25" height="187.126" />
  812. <rect x="1501.021" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
  813. <rect x="1501.021" y="726.91" fill="#CAA51A" width="2.25" height="10" />
  814. <rect x="1567.271" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
  815. <rect x="1501.527" y="635.635" fill="#CAA51A" width="17.576" height="2.25" />
  816. <rect x="1551.818" y="635.635" fill="#CAA51A" width="17.578" height="2.25" />
  817. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  818. cx="1536.021" cy="626.389" r="9.021" />
  819. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  820. cx="1528.124" cy="635.412" r="9.021" />
  821. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  822. points="1532.792,622.262 1536.037,625.471 1539.061,622.262 " />
  823. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  824. points="1662.417,628.714 1659.172,625.505 1656.146,628.714 " />
  825. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  826. x1="1536.105" y1="625.557" x2="1536.105" y2="631.216" />
  827. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  828. points="1525.085,638.322 1531.605,638.322 1528.167,632.947 " />
  829. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  830. cx="1543.917" cy="635.412" r="9.021" />
  831. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  832. points="1540.876,638.322 1547.396,638.322 1543.958,632.947 " />
  833. <g>
  834. <rect x="1490.771" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
  835. stroke-miterlimit="10" width="24" height="40.331" />
  836. <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
  837. d="M1492.021,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
  838. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  839. x1="1513.521" y1="686.579" x2="1490.771" y2="725.91" />
  840. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  841. x1="1502.146" y1="718.41" x2="1510.314" y2="718.41" />
  842. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  843. x1="1502.146" y1="722.16" x2="1510.314" y2="722.16" />
  844. </g>
  845. <rect x="1567.646" y="726.91" fill="#CAA51A" width="2.25" height="10" />
  846. <g>
  847. <rect x="1557.396" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
  848. stroke-miterlimit="10" width="24" height="40.331" />
  849. <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
  850. d="M1558.646,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
  851. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  852. x1="1580.146" y1="686.579" x2="1557.396" y2="725.91" />
  853. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  854. x1="1568.771" y1="718.41" x2="1576.939" y2="718.41" />
  855. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  856. x1="1568.771" y1="722.16" x2="1576.939" y2="722.16" />
  857. </g>
  858. <polyline fill="#44426C"
  859. points="1521.071,670.835 1521.071,648.9 1550.271,648.9 1550.271,670.835 " />
  860. <text transform="matrix(1 0 0 1 1528.4026 663.4397)" fill="#FFFFFF"
  861. font-family="'MicrosoftYaHei'" font-size="11.8698">
  862. #9
  863. </text>
  864. <polyline fill="#44426C"
  865. points="1609.055,372.313 1637.031,372.313 1637.031,467.91 1609.055,467.91 " />
  866. <text transform="matrix(0 1 -1 0 1618.4495 379.6477)" fill="#FFFFFF"
  867. font-family="'MicrosoftYaHei'" font-size="13.5">
  868. #5
  869. </text>
  870. <text transform="matrix(1 0 0 1 1495.0217 748.2483)" fill="#FFFFFF"
  871. font-family="'MicrosoftYaHei'" font-size="11.6452">
  872. #17
  873. </text>
  874. <text transform="matrix(1 0 0 1 1561.2717 296.7874)" fill="#FFFFFF"
  875. font-family="'MicrosoftYaHei'" font-size="11.6452">
  876. 315
  877. </text>
  878. <text transform="matrix(1 0 0 1 1561.2717 748.2483)" fill="#FFFFFF"
  879. font-family="'MicrosoftYaHei'" font-size="11.6452">
  880. #18
  881. </text>
  882. <rect x="1657.781" y="634.29" fill="#CAA51A" width="2.25" height="50.946" />
  883. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  884. cx="1659.282" cy="624.584" r="9.021" />
  885. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  886. x1="1659.281" y1="625.419" x2="1659.281" y2="619.76" />
  887. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  888. cx="1659.281" cy="611.432" r="9.021" />
  889. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  890. points="1662.542,608.523 1656.021,608.523 1659.458,613.898 " />
  891. <rect x="1658.156" y="725.569" fill="#CAA51A" width="2.25" height="10" />
  892. <g>
  893. <rect x="1647.906" y="685.238" fill="none" stroke="#F7F8F8" stroke-width="1.3"
  894. stroke-miterlimit="10" width="24" height="40.331" />
  895. <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
  896. d="M1649.156,689.319c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
  897. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  898. x1="1670.656" y1="685.238" x2="1647.906" y2="724.569" />
  899. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  900. x1="1659.281" y1="717.069" x2="1667.451" y2="717.069" />
  901. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  902. x1="1659.281" y1="720.819" x2="1667.451" y2="720.819" />
  903. </g>
  904. <polyline fill="#44426C"
  905. points="1675.855,671.089 1675.855,649.154 1705.057,649.154 1705.057,671.089 " />
  906. <text transform="matrix(1 0 0 1 1679.7092 663.6936)" fill="#FFFFFF"
  907. font-family="'MicrosoftYaHei'" font-size="11.8698">
  908. #10
  909. </text>
  910. <text transform="matrix(1 0 0 1 1648.7815 746.9065)" fill="#FFFFFF"
  911. font-family="'MicrosoftYaHei'" font-size="11.6452">
  912. #19
  913. </text>
  914. <text transform="matrix(1 0 0 1 1616.1838 410.3079)" fill="#FFFFFF"
  915. font-family="'MicrosoftYaHei'" font-size="13.5">
  916. </text>
  917. <text transform="matrix(1 0 0 1 1616.1838 426.5081)" fill="#FFFFFF"
  918. font-family="'MicrosoftYaHei'" font-size="13.5">
  919. </text>
  920. <text transform="matrix(1 0 0 1 1616.1838 442.7073)" fill="#FFFFFF"
  921. font-family="'MicrosoftYaHei'" font-size="13.5">
  922. </text>
  923. <text transform="matrix(1 0 0 1 1616.1838 458.9075)" fill="#FFFFFF"
  924. font-family="'MicrosoftYaHei'" font-size="13.5">
  925. 线
  926. </text>
  927. <text transform="matrix(1 0 0 1 1629.6838 459.1282)" fill="#FFFFFF"
  928. font-family="'MicrosoftYaHei'" font-size="13.5" letter-spacing="20"></text>
  929. <rect x="1153.99" y="502.439" fill="#CAA51A" width="246.117" height="2.25" />
  930. <rect x="1153.989" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
  931. <rect x="1275.415" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
  932. <rect x="1397.857" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
  933. <rect x="1430.917" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
  934. <rect x="1306.977" y="266.198" opacity="0.9" fill="#162320" enable-background="new "
  935. width="115.109" height="18.491" />
  936. <rect x="1306.977" y="286.696" opacity="0.9" fill="#162320" enable-background="new "
  937. width="115.109" height="18.49" />
  938. <rect x="1306.977" y="307.192" opacity="0.9" fill="#162320" enable-background="new "
  939. width="115.109" height="18.49" />
  940. <rect x="1306.977" y="327.688" opacity="0.9" fill="#162320" enable-background="new "
  941. width="115.109" height="18.49" />
  942. <g>
  943. <text transform="matrix(1 0 0 1 1325.7014 280.1487)" fill="#97A1A2"
  944. font-family="'MicrosoftYaHei'" font-size="11.3899">
  945. la
  946. </text>
  947. <text transform="matrix(1 0 0 1 1335.0276 280.1487)" fill="#97A1A2"
  948. font-family="'MicrosoftYaHei'" font-size="9.6234">
  949. (A)
  950. </text>
  951. <text transform="matrix(1 0 0 1 1348.2268 280.1487)" fill="#97A1A2"
  952. font-family="'MicrosoftYaHei'" font-size="11.3899">
  953. :
  954. </text>
  955. </g>
  956. <g>
  957. <text transform="matrix(1 0 0 1 1309.7991 298.51)" fill="#97A1A2"
  958. font-family="'MicrosoftYaHei'" font-size="11.3899">
  959. P(kVar):
  960. </text>
  961. </g>
  962. <g>
  963. <text transform="matrix(1 0 0 1 1309.7776 320.7952)" fill="#97A1A2"
  964. font-family="'MicrosoftYaHei'" font-size="11.3899">
  965. Q(kVar):
  966. </text>
  967. </g>
  968. <g>
  969. <text transform="matrix(1 0 0 1 1324.7522 341.6292)" fill="#97A1A2"
  970. font-family="'MicrosoftYaHei'" font-size="11.3899">
  971. COS:
  972. </text>
  973. </g>
  974. <rect x="1274.614" y="215.912" fill="#CAA51A" width="2.25" height="42.75" />
  975. <rect x="1274.614" y="316.967" fill="#CAA51A" width="2.25" height="187.126" />
  976. <rect x="1119.615" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
  977. <rect x="1119.615" y="726.91" fill="#CAA51A" width="2.25" height="10" />
  978. <rect x="1185.865" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
  979. <rect x="1120.121" y="635.635" fill="#CAA51A" width="17.576" height="2.25" />
  980. <rect x="1170.412" y="635.635" fill="#CAA51A" width="17.578" height="2.25" />
  981. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  982. cx="1154.615" cy="626.389" r="9.021" />
  983. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  984. cx="1146.72" cy="635.412" r="9.021" />
  985. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  986. points="1151.386,622.262 1154.631,625.471 1157.656,622.262 " />
  987. <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  988. points="1273.316,622.262 1276.563,625.471 1279.586,622.262 " />
  989. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  990. x1="1154.699" y1="625.557" x2="1154.699" y2="631.216" />
  991. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  992. points="1143.68,638.322 1150.199,638.322 1146.762,632.947 " />
  993. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  994. cx="1162.512" cy="635.412" r="9.021" />
  995. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  996. points="1159.471,638.322 1165.99,638.322 1162.553,632.947 " />
  997. <g>
  998. <rect x="1109.365" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
  999. stroke-miterlimit="10" width="24" height="40.331" />
  1000. <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
  1001. d="M1110.615,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
  1002. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1003. x1="1132.115" y1="686.579" x2="1109.365" y2="725.91" />
  1004. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1005. x1="1120.74" y1="718.41" x2="1128.909" y2="718.41" />
  1006. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1007. x1="1120.74" y1="722.16" x2="1128.909" y2="722.16" />
  1008. </g>
  1009. <rect x="1186.24" y="726.91" fill="#CAA51A" width="2.25" height="10" />
  1010. <g>
  1011. <rect x="1175.99" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
  1012. stroke-miterlimit="10" width="24" height="40.331" />
  1013. <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
  1014. d="M1177.24,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
  1015. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1016. x1="1198.74" y1="686.579" x2="1175.99" y2="725.91" />
  1017. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1018. x1="1187.365" y1="718.41" x2="1195.534" y2="718.41" />
  1019. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1020. x1="1187.365" y1="722.16" x2="1195.534" y2="722.16" />
  1021. </g>
  1022. <polyline fill="#44426C"
  1023. points="1139.665,670.835 1139.665,648.9 1168.865,648.9 1168.865,670.835 " />
  1024. <text transform="matrix(1 0 0 1 1146.9963 663.4397)" fill="#FFFFFF"
  1025. font-family="'MicrosoftYaHei'" font-size="11.8698">
  1026. #7
  1027. </text>
  1028. <polyline fill="#44426C"
  1029. points="1286.648,372.313 1314.624,372.313 1314.624,467.91 1286.648,467.91 " />
  1030. <text transform="matrix(0 1 -1 0 1296.0393 379.6477)" fill="#FFFFFF"
  1031. font-family="'MicrosoftYaHei'" font-size="13.5">
  1032. #4
  1033. </text>
  1034. <text transform="matrix(1 0 0 1 1110.5549 748.2483)" fill="#FFFFFF"
  1035. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1036. #13
  1037. </text>
  1038. <text transform="matrix(1 0 0 1 1238.8635 296.7874)" fill="#FFFFFF"
  1039. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1040. 316
  1041. </text>
  1042. <text transform="matrix(1 0 0 1 1176.8049 748.2483)" fill="#FFFFFF"
  1043. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1044. #14
  1045. </text>
  1046. <rect x="1241.801" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
  1047. <rect x="1241.801" y="726.91" fill="#CAA51A" width="2.25" height="10" />
  1048. <rect x="1308.051" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
  1049. <rect x="1242.307" y="635.635" fill="#CAA51A" width="17.578" height="2.25" />
  1050. <rect x="1292.6" y="635.635" fill="#CAA51A" width="17.576" height="2.25" />
  1051. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1052. cx="1276.801" cy="626.389" r="9.021" />
  1053. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1054. cx="1268.906" cy="635.412" r="9.021" />
  1055. <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1056. x1="1276.885" y1="625.557" x2="1276.885" y2="631.216" />
  1057. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1058. points="1265.865,638.322 1272.385,638.322 1268.948,632.947 " />
  1059. <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1060. cx="1284.698" cy="635.412" r="9.021" />
  1061. <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
  1062. points="1281.658,638.322 1288.178,638.322 1284.74,632.947 " />
  1063. <g>
  1064. <rect x="1231.551" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
  1065. stroke-miterlimit="10" width="24" height="40.331" />
  1066. <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
  1067. d="M1232.801,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
  1068. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1069. x1="1254.301" y1="686.579" x2="1231.551" y2="725.91" />
  1070. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1071. x1="1242.926" y1="718.41" x2="1251.096" y2="718.41" />
  1072. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1073. x1="1242.926" y1="722.16" x2="1251.096" y2="722.16" />
  1074. </g>
  1075. <rect x="1308.426" y="726.91" fill="#CAA51A" width="2.25" height="10" />
  1076. <g>
  1077. <rect x="1298.176" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
  1078. stroke-miterlimit="10" width="24" height="40.331" />
  1079. <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
  1080. d="M1299.426,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
  1081. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1082. x1="1320.926" y1="686.579" x2="1298.176" y2="725.91" />
  1083. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1084. x1="1309.551" y1="718.41" x2="1317.721" y2="718.41" />
  1085. <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
  1086. x1="1309.551" y1="722.16" x2="1317.721" y2="722.16" />
  1087. </g>
  1088. <polyline fill="#44426C"
  1089. points="1261.852,670.835 1261.852,648.9 1291.051,648.9 1291.051,670.835 " />
  1090. <text transform="matrix(1 0 0 1 1269.1838 663.4397)" fill="#FFFFFF"
  1091. font-family="'MicrosoftYaHei'" font-size="11.8698">
  1092. #8
  1093. </text>
  1094. <text transform="matrix(1 0 0 1 1235.801 748.2483)" fill="#FFFFFF"
  1095. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1096. #15
  1097. </text>
  1098. <text transform="matrix(1 0 0 1 1299.051 748.2483)" fill="#FFFFFF"
  1099. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1100. #16
  1101. </text>
  1102. <text transform="matrix(1 0 0 1 1293.7756 410.3079)" fill="#FFFFFF"
  1103. font-family="'MicrosoftYaHei'" font-size="13.5">
  1104. </text>
  1105. <text transform="matrix(1 0 0 1 1293.7756 426.5081)" fill="#FFFFFF"
  1106. font-family="'MicrosoftYaHei'" font-size="13.5">
  1107. </text>
  1108. <text transform="matrix(1 0 0 1 1293.7756 442.7073)" fill="#FFFFFF"
  1109. font-family="'MicrosoftYaHei'" font-size="13.5">
  1110. </text>
  1111. <text transform="matrix(1 0 0 1 1293.7756 458.9075)" fill="#FFFFFF"
  1112. font-family="'MicrosoftYaHei'" font-size="13.5">
  1113. 线
  1114. </text>
  1115. <text transform="matrix(1 0 0 1 1307.2756 459.1282)" fill="#FFFFFF"
  1116. font-family="'MicrosoftYaHei'" font-size="13.5" letter-spacing="20"></text>
  1117. <polygon fill="#CAA51A" points="1427.208,504.689 1432.04,494.392 1436.874,504.688 " />
  1118. <g>
  1119. <text transform="matrix(1 0 0 1 1.9905 206.7913)" fill="#D0D0D0"
  1120. font-family="'MicrosoftYaHei'" font-size="12.619">
  1121. 35kV母线
  1122. </text>
  1123. </g>
  1124. <g>
  1125. <rect x="443.686" y="116.428" fill="#44426C" width="83.313" height="20.817" />
  1126. <text transform="matrix(1 0 0 1 466.4919 130.6194)" fill="#FFFFFF"
  1127. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1128. 园特线
  1129. </text>
  1130. </g>
  1131. <text transform="matrix(1 0 0 1 535.8542 132.6194)" fill="#FFFFFF"
  1132. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1133. 310
  1134. </text>
  1135. <polygon fill="#CAA51A" points="567.821,25.24 572.431,15.432 577.03,25.244 " />
  1136. <rect x="570.938" y="170.912" fill="#CAA51A" width="2.25" height="42.75" />
  1137. <rect x="570.938" y="25.244" fill="#CAA51A" width="2.25" height="87.361" />
  1138. <g>
  1139. <rect x="1148.858" y="116.428" fill="#44426C" width="83.313" height="20.817" />
  1140. <text transform="matrix(1 0 0 1 1157.6858 130.6194)" fill="#FFFFFF"
  1141. font-family="'MicrosoftYaHei'" font-size="12.5667">
  1142. 1#无功补偿
  1143. </text>
  1144. </g>
  1145. <rect x="698.255" y="107.234" opacity="0.9" fill="#162320" enable-background="new "
  1146. width="115.109" height="18.491" />
  1147. <rect x="698.255" y="127.731" opacity="0.9" fill="#162320" enable-background="new "
  1148. width="115.109" height="18.491" />
  1149. <rect x="698.255" y="148.228" opacity="0.9" fill="#162320" enable-background="new "
  1150. width="115.109" height="18.491" />
  1151. <rect x="698.255" y="168.725" opacity="0.9" fill="#162320" enable-background="new "
  1152. width="115.109" height="18.489" />
  1153. <g>
  1154. <text transform="matrix(1 0 0 1 716.9797 121.1858)" fill="#97A1A2"
  1155. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1156. la
  1157. </text>
  1158. <text transform="matrix(1 0 0 1 726.3069 121.1858)" fill="#97A1A2"
  1159. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1160. (A)
  1161. </text>
  1162. <text transform="matrix(1 0 0 1 739.5056 121.1858)" fill="#97A1A2"
  1163. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1164. :
  1165. </text>
  1166. </g>
  1167. <g>
  1168. <text transform="matrix(1 0 0 1 701.0769 139.5452)" fill="#97A1A2"
  1169. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1170. P(MVar):
  1171. </text>
  1172. </g>
  1173. <g>
  1174. <text transform="matrix(1 0 0 1 701.0544 161.8303)" fill="#97A1A2"
  1175. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1176. Q(MVar):
  1177. </text>
  1178. </g>
  1179. <g>
  1180. <text transform="matrix(1 0 0 1 716.0305 182.6643)" fill="#97A1A2"
  1181. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1182. COS:
  1183. </text>
  1184. </g>
  1185. <rect x="1314.624" y="96.987" opacity="0.9" fill="#162320" enable-background="new "
  1186. width="115.107" height="18.491" />
  1187. <rect x="1314.624" y="117.484" opacity="0.9" fill="#162320" enable-background="new "
  1188. width="115.107" height="18.49" />
  1189. <rect x="1314.624" y="137.98" opacity="0.9" fill="#162320" enable-background="new "
  1190. width="115.107" height="18.49" />
  1191. <rect x="1314.624" y="158.477" opacity="0.9" fill="#162320" enable-background="new "
  1192. width="115.107" height="18.49" />
  1193. <g>
  1194. <text transform="matrix(1 0 0 1 1333.3479 110.9377)" fill="#97A1A2"
  1195. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1196. la
  1197. </text>
  1198. <text transform="matrix(1 0 0 1 1342.6741 110.9377)" fill="#97A1A2"
  1199. font-family="'MicrosoftYaHei'" font-size="9.6234">
  1200. (A)
  1201. </text>
  1202. <text transform="matrix(1 0 0 1 1355.8733 110.9377)" fill="#97A1A2"
  1203. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1204. :
  1205. </text>
  1206. </g>
  1207. <g>
  1208. <text transform="matrix(1 0 0 1 1317.4456 129.2971)" fill="#97A1A2"
  1209. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1210. P(MVar):
  1211. </text>
  1212. </g>
  1213. <g>
  1214. <text transform="matrix(1 0 0 1 1316.4241 151.5823)" fill="#97A1A2"
  1215. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1216. Q(MVar):
  1217. </text>
  1218. </g>
  1219. <g>
  1220. <text transform="matrix(1 0 0 1 1332.3987 172.4163)" fill="#97A1A2"
  1221. font-family="'MicrosoftYaHei'" font-size="11.3899">
  1222. COS:
  1223. </text>
  1224. </g>
  1225. <text transform="matrix(1 0 0 1 1241.0276 132.6194)" fill="#FFFFFF"
  1226. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1227. 318
  1228. </text>
  1229. <rect x="1275.182" y="170.912" fill="#CAA51A" width="2.25" height="42.75" />
  1230. <rect x="1275.182" y="27.244" fill="#CAA51A" width="2.25" height="32.667" />
  1231. <rect x="1275.182" y="79.412" fill="#CAA51A" width="2.25" height="33.834" />
  1232. <rect x="1259.318" y="26.119" fill="#CAA51A" width="33.979" height="2.25" />
  1233. <rect x="1259.318" y="15.662" fill="#CAA51A" width="33.979" height="2.25" />
  1234. <rect x="1275.064" y="12.623" fill="#CAA51A" width="2.484" height="3.039" />
  1235. <rect x="1275.064" y="8.516" fill="#40B9B0" width="2.484" height="4.106" />
  1236. <g>
  1237. <line fill="none" stroke="#40B9B0" stroke-width="2" stroke-miterlimit="10"
  1238. x1="1282.018" y1="8.515" x2="1270.596" y2="8.515" />
  1239. <line fill="none" stroke="#40B9B0" stroke-width="2" stroke-miterlimit="10"
  1240. x1="1279.66" y1="5.346" x2="1272.953" y2="5.346" />
  1241. <line fill="none" stroke="#40B9B0" stroke-width="2" stroke-miterlimit="10"
  1242. x1="1277.721" y1="2" x2="1274.893" y2="2" />
  1243. </g>
  1244. <path fill="none" stroke="#CAA51A" stroke-width="2.2" stroke-miterlimit="10"
  1245. d="M1265.973,70.246 c0-5.708,4.627-10.334,10.334-10.334s10.334,4.626,10.334,10.334c0,5.707-4.627,10.334-10.334,10.334" />
  1246. <path fill="none" stroke="#CAA51A" stroke-width="2.2" stroke-miterlimit="10"
  1247. d="M1276.42,59.945 c-0.224-0.014-0.443-0.031-0.671-0.031c-5.707,0-10.334,4.626-10.334,10.334h11.005V59.945z" />
  1248. <text transform="matrix(1 0 0 1 153.7771 779.5334)" fill="#FFFFFF"
  1249. font-family="'MicrosoftYaHei'" font-size="15">
  1250. 输入电压(V):
  1251. </text>
  1252. <text transform="matrix(1 0 0 1 153.7771 821.5559)" fill="#FFFFFF"
  1253. font-family="'MicrosoftYaHei'" font-size="15">
  1254. 输出功率(kw):
  1255. </text>
  1256. </g>
  1257. <g id="arrow">
  1258. <rect x="564.331" y="129.662" :fill="ajaxData.pl1dlq310 ? red : green" width="15.463"
  1259. height="24.008"></rect>
  1260. <rect x="1268.575" y="130.662" :fill="ajaxData.pl1dlq318 ? red : green" width="15.463"
  1261. height="24.008"></rect>
  1262. <rect x="161.332" y="275.904" :fill="ajaxData.pl1dlq312 ? red : green" width="15.462"
  1263. height="24.008"></rect>
  1264. <rect x="425.331" y="275.904" :fill="ajaxData.pl1dlq313 ? red : green" width="15.463"
  1265. height="24.008"></rect>
  1266. <rect x="689.398" y="275.904" :fill="ajaxData.pl1dlq314 ? red : green" width="15.463"
  1267. height="24.008"></rect>
  1268. <rect x="953.72" y="275.904" :fill="ajaxData.pl1dlq315 ? red : green" width="15.462"
  1269. height="24.008"></rect>
  1270. <rect x="1268.007" y="275.904" :fill="ajaxData.pl1dlq316 ? red : green" width="15.462"
  1271. height="24.008"></rect>
  1272. <rect x="1590.415" y="275.904" :fill="ajaxData.pl1dlq317 ? red : green" width="15.463"
  1273. height="24.008"></rect>
  1274. <rect x="329.938" y="645.885" :fill="ajaxData.pL1dlq01 ? red : green" width="14.25"
  1275. height="35.774"></rect>
  1276. <rect x="396.188" y="645.885" :fill="ajaxData.pL1dlq02 ? red : green" width="14.25"
  1277. height="35.774"></rect>
  1278. <rect x="451.96" y="645.885" :fill="ajaxData.pL1dlq03 ? red : green" width="14.25"
  1279. height="35.774"></rect>
  1280. <rect x="518.21" y="645.885" :fill="ajaxData.pL1dlq04 ? red : green" width="14.25"
  1281. height="35.774"></rect>
  1282. <rect x="594.005" y="645.885" :fill="ajaxData.pL1dlq05 ? red : green" width="14.25"
  1283. height="35.774"></rect>
  1284. <rect x="660.255" y="645.885" :fill="ajaxData.pL1dlq06 ? red : green" width="14.25"
  1285. height="35.774"></rect>
  1286. <rect x="716.027" y="645.885" :fill="ajaxData.pL1dlq07 ? red : green" width="14.25"
  1287. height="35.774"></rect>
  1288. <rect x="782.277" y="645.885" :fill="ajaxData.pL1dlq08 ? red : green" width="14.25"
  1289. height="35.774"></rect>
  1290. <rect x="858.325" y="645.885" :fill="ajaxData.pL1dlq09 ? red : green" width="14.25"
  1291. height="35.774"></rect>
  1292. <rect x="924.575" y="645.885" :fill="ajaxData.pL1dlq10 ? red : green" width="14.25"
  1293. height="35.774"></rect>
  1294. <rect x="980.348" y="645.885" :fill="ajaxData.pL1dlq11 ? red : green" width="14.25"
  1295. height="35.774"></rect>
  1296. <rect x="1046.598" y="645.885" :fill="ajaxData.pL1dlq12 ? red : green" width="14.25"
  1297. height="35.774"></rect>
  1298. <rect x="1113.615" y="645.885" :fill="ajaxData.pL1dlq13 ? red : green" width="14.25"
  1299. height="35.774"></rect>
  1300. <rect x="1179.865" y="645.885" :fill="ajaxData.pL1dlq14 ? red : green" width="14.25"
  1301. height="35.774"></rect>
  1302. <rect x="1235.801" y="645.885" :fill="ajaxData.pL1dlq15 ? red : green" width="14.25"
  1303. height="35.774"></rect>
  1304. <rect x="1302.051" y="645.885" :fill="ajaxData.pL1dlq16 ? red : green" width="14.25"
  1305. height="35.774"></rect>
  1306. <rect x="1495.021" y="645.885" :fill="ajaxData.pL1dlq17 ? red : green" width="14.25"
  1307. height="35.774"></rect>
  1308. <rect x="1561.271" y="645.885" :fill="ajaxData.pL1dlq18 ? red : green" width="14.25"
  1309. height="35.774"></rect>
  1310. <rect x="1651.781" y="644.54" :fill="ajaxData.pL1dlq19 ? red : green" width="14.25"
  1311. height="35.777"></rect>
  1312. </g>
  1313. <g id="block">
  1314. <g>
  1315. <polyline fill="none" :stroke="ajaxData.pl1sc310 ? red : green"
  1316. stroke-miterlimit="10"
  1317. points="579.348,162.623 572.523,170.344 565.504,162.623 "></polyline>
  1318. <polyline fill="none" :stroke="ajaxData.pl1sc310 ? red : green"
  1319. stroke-miterlimit="10"
  1320. points="579.348,156.773 572.523,164.491 565.504,156.773 "></polyline>
  1321. <polyline fill="none" :stroke="ajaxData.pl1sc310 ? red : green"
  1322. stroke-miterlimit="10"
  1323. points="565.504,120.33 572.327,112.608 579.348,120.33 "></polyline>
  1324. <polyline fill="none" :stroke="ajaxData.pl1sc310 ? red : green"
  1325. stroke-miterlimit="10"
  1326. points="565.504,125.107 572.327,117.385 579.348,125.107 "></polyline>
  1327. </g>
  1328. <g>
  1329. <polyline fill="none" :stroke="ajaxData.pl1sc318 ? red : green" stroke-width="1.3"
  1330. stroke-miterlimit="10"
  1331. points="1283.591,163.623 1276.768,171.344 1269.747,163.623 "></polyline>
  1332. <polyline fill="none" :stroke="ajaxData.pl1sc318 ? red : green" stroke-width="1.3"
  1333. stroke-miterlimit="10"
  1334. points="1283.591,157.773 1276.768,165.491 1269.747,157.773 "></polyline>
  1335. <polyline fill="none" :stroke="ajaxData.pl1sc318 ? red : green" stroke-width="1.3"
  1336. stroke-miterlimit="10"
  1337. points="1269.747,121.33 1276.572,113.608 1283.591,121.33 "></polyline>
  1338. <polyline fill="none" :stroke="ajaxData.pl1sc318 ? red : green" stroke-width="1.3"
  1339. stroke-miterlimit="10"
  1340. points="1269.747,126.107 1276.572,118.385 1283.591,126.107 "></polyline>
  1341. </g>
  1342. <g>
  1343. <polyline fill="none" :stroke="ajaxData.pl1sc312 ? red : green"
  1344. stroke-miterlimit="10"
  1345. points="161.779,266.95 168.602,259.231 175.622,266.95 "></polyline>
  1346. <polyline fill="none" :stroke="ajaxData.pl1sc312 ? red : green"
  1347. stroke-miterlimit="10"
  1348. points="161.779,272.802 168.602,265.082 175.622,272.802 "></polyline>
  1349. <polyline fill="none" :stroke="ajaxData.pl1sc312 ? red : green"
  1350. stroke-miterlimit="10"
  1351. points="175.622,309.242 168.799,316.967 161.779,309.242 "></polyline>
  1352. <polyline fill="none" :stroke="ajaxData.pl1sc312 ? red : green"
  1353. stroke-miterlimit="10"
  1354. points="175.622,304.468 168.799,312.189 161.779,304.468 "></polyline>
  1355. </g>
  1356. <g>
  1357. <polyline fill="none" :stroke="ajaxData.pl1sc313 ? red : green"
  1358. stroke-miterlimit="10"
  1359. points="425.779,266.95 432.602,259.231 439.621,266.95 "></polyline>
  1360. <polyline fill="none" :stroke="ajaxData.pl1sc313 ? red : green"
  1361. stroke-miterlimit="10"
  1362. points="425.779,272.802 432.602,265.082 439.621,272.802 "></polyline>
  1363. <polyline fill="none" :stroke="ajaxData.pl1sc313 ? red : green"
  1364. stroke-miterlimit="10"
  1365. points="439.621,309.242 432.799,316.967 425.779,309.242 "></polyline>
  1366. <polyline fill="none" :stroke="ajaxData.pl1sc313 ? red : green"
  1367. stroke-miterlimit="10"
  1368. points="439.621,304.468 432.799,312.189 425.779,304.468 "></polyline>
  1369. </g>
  1370. <g>
  1371. <polyline fill="none" :stroke="ajaxData.pl1sc314 ? red : green"
  1372. stroke-miterlimit="10"
  1373. points="689.846,266.95 696.669,259.231 703.689,266.95 "></polyline>
  1374. <polyline fill="none" :stroke="ajaxData.pl1sc314 ? red : green"
  1375. stroke-miterlimit="10"
  1376. points="689.846,272.802 696.669,265.082 703.689,272.802 "></polyline>
  1377. <polyline fill="none" :stroke="ajaxData.pl1sc314 ? red : green"
  1378. stroke-miterlimit="10"
  1379. points="703.689,309.242 696.865,316.967 689.846,309.242 "></polyline>
  1380. <polyline fill="none" :stroke="ajaxData.pl1sc314 ? red : green"
  1381. stroke-miterlimit="10"
  1382. points="703.689,304.468 696.865,312.189 689.846,304.468 "></polyline>
  1383. </g>
  1384. <g>
  1385. <polyline fill="none" :stroke="ajaxData.pl1sc315 ? red : green"
  1386. stroke-miterlimit="10" points="954.167,266.95 960.99,259.231 968.01,266.95 ">
  1387. </polyline>
  1388. <polyline fill="none" :stroke="ajaxData.pl1sc315 ? red : green"
  1389. stroke-miterlimit="10"
  1390. points="954.167,272.802 960.99,265.082 968.01,272.802 "></polyline>
  1391. <polyline fill="none" :stroke="ajaxData.pl1sc315 ? red : green"
  1392. stroke-miterlimit="10"
  1393. points="968.01,309.242 961.188,316.967 954.167,309.242 "></polyline>
  1394. <polyline fill="none" :stroke="ajaxData.pl1sc315 ? red : green"
  1395. stroke-miterlimit="10"
  1396. points="968.01,304.468 961.188,312.189 954.167,304.468 "></polyline>
  1397. </g>
  1398. <g>
  1399. <polyline fill="none" :stroke="ajaxData.pl1sc316 ? red : green"
  1400. stroke-miterlimit="10"
  1401. points="1268.453,266.95 1275.277,259.231 1282.297,266.95 "></polyline>
  1402. <polyline fill="none" :stroke="ajaxData.pl1sc316 ? red : green"
  1403. stroke-miterlimit="10"
  1404. points="1268.453,272.802 1275.277,265.082 1282.297,272.802 "></polyline>
  1405. <polyline fill="none" :stroke="ajaxData.pl1sc316 ? red : green"
  1406. stroke-miterlimit="10"
  1407. points="1282.297,309.242 1275.475,316.967 1268.453,309.242 "></polyline>
  1408. <polyline fill="none" :stroke="ajaxData.pl1sc316 ? red : green"
  1409. stroke-miterlimit="10"
  1410. points="1282.297,304.468 1275.475,312.189 1268.453,304.468 "></polyline>
  1411. </g>
  1412. <g>
  1413. <polyline fill="none" :stroke="ajaxData.pl1sc317 ? red : green"
  1414. stroke-miterlimit="10"
  1415. points="1590.862,266.95 1597.686,259.231 1604.706,266.95 "></polyline>
  1416. <polyline fill="none" :stroke="ajaxData.pl1sc317 ? red : green"
  1417. stroke-miterlimit="10"
  1418. points="1590.862,272.802 1597.686,265.082 1604.706,272.802 "></polyline>
  1419. <polyline fill="none" :stroke="ajaxData.pl1sc317 ? red : green"
  1420. stroke-miterlimit="10"
  1421. points="1604.706,309.242 1597.881,316.967 1590.862,309.242 "></polyline>
  1422. <polyline fill="none" :stroke="ajaxData.pl1sc317 ? red : green"
  1423. stroke-miterlimit="10"
  1424. points="1604.706,304.468 1597.881,312.189 1590.862,304.468 "></polyline>
  1425. </g>
  1426. </g>
  1427. <g id="data">
  1428. <g>
  1429. <text transform="matrix(1 0 0 1 150.9871 155.4553)" fill="#3B8646"
  1430. font-family="'MicrosoftYaHei'" font-size="9.463">
  1431. -.--
  1432. </text>
  1433. <text transform="matrix(1 0 0 1 150.9875 114.092)" fill="#3B8646"
  1434. font-family="'MicrosoftYaHei'" font-size="9.463">
  1435. -.--
  1436. </text>
  1437. <text transform="matrix(1 0 0 1 150.9871 134.7874)" fill="#3B8646"
  1438. font-family="'MicrosoftYaHei'" font-size="9.463">
  1439. -.--
  1440. </text>
  1441. <text transform="matrix(1 0 0 1 150.9871 175.9592)" fill="#3B8646"
  1442. font-family="'MicrosoftYaHei'" font-size="9.463">
  1443. -.--
  1444. </text>
  1445. </g>
  1446. <g>
  1447. <text transform="matrix(1 0 0 1 752.262 119.8499)" fill="#3B8646"
  1448. font-family="'MicrosoftYaHei'" font-size="9.463">
  1449. {{ ajaxData.pl1laayt }}
  1450. </text>
  1451. <text transform="matrix(1 0 0 1 752.2615 139.5452)" fill="#3B8646"
  1452. font-family="'MicrosoftYaHei'" font-size="9.463">
  1453. {{ ajaxData.pl1pkwyt }}
  1454. </text>
  1455. <text transform="matrix(1 0 0 1 752.2615 160.2112)" fill="#3B8646"
  1456. font-family="'MicrosoftYaHei'" font-size="9.463">
  1457. {{ ajaxData.pl1qkvaryt }}
  1458. </text>
  1459. <text transform="matrix(1 0 0 1 752.2615 180.7151)" fill="#3B8646"
  1460. font-family="'MicrosoftYaHei'" font-size="9.463">
  1461. {{ ajaxData.pl1cosyt }}
  1462. </text>
  1463. </g>
  1464. <g>
  1465. <text transform="matrix(1 0 0 1 1368.6311 109.6018)" fill="#3B8646"
  1466. font-family="'MicrosoftYaHei'" font-size="9.463">
  1467. {{ ajaxData.pl1laawg }}
  1468. </text>
  1469. <text transform="matrix(1 0 0 1 1368.6311 129.2971)" fill="#3B8646"
  1470. font-family="'MicrosoftYaHei'" font-size="9.463">
  1471. {{ ajaxData.pl1pkwwg }}
  1472. </text>
  1473. <text transform="matrix(1 0 0 1 1368.6311 149.9651)" fill="#3B8646"
  1474. font-family="'MicrosoftYaHei'" font-size="9.463">
  1475. {{ ajaxData.pl1qkvarwg }}
  1476. </text>
  1477. <text transform="matrix(1 0 0 1 1368.6311 170.469)" fill="#3B8646"
  1478. font-family="'MicrosoftYaHei'" font-size="9.463">
  1479. {{ ajaxData.pl1coswg }}
  1480. </text>
  1481. </g>
  1482. <g>
  1483. <text transform="matrix(1 0 0 1 251.8352 278.092)" fill="#3B8646"
  1484. font-family="'MicrosoftYaHei'" font-size="9.463">
  1485. {{ ajaxData.pl1blaacy }}
  1486. </text>
  1487. <text transform="matrix(1 0 0 1 251.8347 296.7874)" fill="#3B8646"
  1488. font-family="'MicrosoftYaHei'" font-size="9.463">
  1489. {{ ajaxData.pl1bpcy }}
  1490. </text>
  1491. <text transform="matrix(1 0 0 1 251.8347 317.4553)" fill="#3B8646"
  1492. font-family="'MicrosoftYaHei'" font-size="9.463">
  1493. {{ ajaxData.pl1bqcy }}
  1494. </text>
  1495. <text transform="matrix(1 0 0 1 251.8347 337.9592)" fill="#3B8646"
  1496. font-family="'MicrosoftYaHei'" font-size="9.463">
  1497. {{ ajaxData.pl1bcoscy }}
  1498. </text>
  1499. </g>
  1500. <g>
  1501. <text transform="matrix(1 0 0 1 519.3879 278.8108)" fill="#3B8646"
  1502. font-family="'MicrosoftYaHei'" font-size="9.463">
  1503. {{ ajaxData.pl1laagf1 }}
  1504. </text>
  1505. <text transform="matrix(1 0 0 1 519.3875 297.5061)" fill="#3B8646"
  1506. font-family="'MicrosoftYaHei'" font-size="9.463">
  1507. {{ ajaxData.pl1pkwgf1 }}
  1508. </text>
  1509. <text transform="matrix(1 0 0 1 519.3875 318.1741)" fill="#3B8646"
  1510. font-family="'MicrosoftYaHei'" font-size="9.463">
  1511. {{ ajaxData.pl1qkvargf1 }}
  1512. </text>
  1513. <text transform="matrix(1 0 0 1 519.3875 338.678)" fill="#3B8646"
  1514. font-family="'MicrosoftYaHei'" font-size="9.463">
  1515. {{ ajaxData.pl1cosgf1 }}
  1516. </text>
  1517. </g>
  1518. <g>
  1519. <text transform="matrix(1 0 0 1 778.0662 278.8108)" fill="#3B8646"
  1520. font-family="'MicrosoftYaHei'" font-size="9.463">
  1521. {{ ajaxData.pl1laagf2 }}
  1522. </text>
  1523. <text transform="matrix(1 0 0 1 778.0657 297.5061)" fill="#3B8646"
  1524. font-family="'MicrosoftYaHei'" font-size="9.463">
  1525. {{ ajaxData.pl1pkwgf2 }}
  1526. </text>
  1527. <text transform="matrix(1 0 0 1 778.0657 318.1741)" fill="#3B8646"
  1528. font-family="'MicrosoftYaHei'" font-size="9.463">
  1529. {{ ajaxData.pl1qkvargf2 }}
  1530. </text>
  1531. <text transform="matrix(1 0 0 1 778.0657 338.678)" fill="#3B8646"
  1532. font-family="'MicrosoftYaHei'" font-size="9.463">
  1533. {{ ajaxData.pl1cosgf2 }}
  1534. </text>
  1535. </g>
  1536. <g>
  1537. <text transform="matrix(1 0 0 1 1053.7756 279.8147)" fill="#3B8646"
  1538. font-family="'MicrosoftYaHei'" font-size="9.463">
  1539. {{ ajaxData.pl1laagf3 }}
  1540. </text>
  1541. <text transform="matrix(1 0 0 1 1053.7756 298.51)" fill="#3B8646"
  1542. font-family="'MicrosoftYaHei'" font-size="9.463">
  1543. {{ ajaxData.pl1pkwgf3 }}
  1544. </text>
  1545. <text transform="matrix(1 0 0 1 1053.7756 319.176)" fill="#3B8646"
  1546. font-family="'MicrosoftYaHei'" font-size="9.463">
  1547. {{ ajaxData.pl1qkvargf3 }}
  1548. </text>
  1549. <text transform="matrix(1 0 0 1 1053.7756 339.6799)" fill="#3B8646"
  1550. font-family="'MicrosoftYaHei'" font-size="9.463">
  1551. {{ ajaxData.pl1cosgf3 }}
  1552. </text>
  1553. </g>
  1554. <g>
  1555. <text transform="matrix(1 0 0 1 1360.9846 279.8147)" fill="#3B8646"
  1556. font-family="'MicrosoftYaHei'" font-size="9.463">
  1557. {{ ajaxData.pl1laagf4 }}
  1558. </text>
  1559. <text transform="matrix(1 0 0 1 1360.9846 298.51)" fill="#3B8646"
  1560. font-family="'MicrosoftYaHei'" font-size="9.463">
  1561. {{ ajaxData.pl1pkwgf4 }}
  1562. </text>
  1563. <text transform="matrix(1 0 0 1 1360.9846 319.176)" fill="#3B8646"
  1564. font-family="'MicrosoftYaHei'" font-size="9.463">
  1565. {{ ajaxData.pl1qkvargf4 }}
  1566. </text>
  1567. <text transform="matrix(1 0 0 1 1360.9846 339.6799)" fill="#3B8646"
  1568. font-family="'MicrosoftYaHei'" font-size="9.463">
  1569. {{ ajaxData.pl1cosgf4 }}
  1570. </text>
  1571. </g>
  1572. <g>
  1573. <text transform="matrix(1 0 0 1 1700.4709 277.8147)" fill="#3B8646"
  1574. font-family="'MicrosoftYaHei'" font-size="9.463">
  1575. {{ ajaxData.pl1laagf5 }}
  1576. </text>
  1577. <text transform="matrix(1 0 0 1 1700.4709 298.51)" fill="#3B8646"
  1578. font-family="'MicrosoftYaHei'" font-size="9.463">
  1579. {{ ajaxData.pl1pkwgf5 }}
  1580. </text>
  1581. <text transform="matrix(1 0 0 1 1700.4709 319.176)" fill="#3B8646"
  1582. font-family="'MicrosoftYaHei'" font-size="9.463">
  1583. {{ ajaxData.pl1qkvargf5 }}
  1584. </text>
  1585. <text transform="matrix(1 0 0 1 1700.4709 339.6799)" fill="#3B8646"
  1586. font-family="'MicrosoftYaHei'" font-size="9.463">
  1587. {{ ajaxData.pl1cosgf5 }}
  1588. </text>
  1589. </g>
  1590. <g>
  1591. <text transform="matrix(1 0 0 1 319.9377 772.4983)" fill="#FFFFFF"
  1592. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1593. {{ ajaxData.pl1srdy01 }}
  1594. </text>
  1595. <text transform="matrix(1 0 0 1 387.1877 772.4983)" fill="#FFFFFF"
  1596. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1597. {{ ajaxData.pl1srdy02 }}
  1598. </text>
  1599. <text transform="matrix(1 0 0 1 441.9602 772.4983)" fill="#FFFFFF"
  1600. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1601. {{ ajaxData.pl1srdy03 }}
  1602. </text>
  1603. <text transform="matrix(1 0 0 1 509.2102 772.4983)" fill="#FFFFFF"
  1604. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1605. {{ ajaxData.pl1srdy04 }}
  1606. </text>
  1607. <text transform="matrix(1 0 0 1 585.7434 772.4983)" fill="#FFFFFF"
  1608. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1609. {{ ajaxData.pl1srdy05 }}
  1610. </text>
  1611. <text transform="matrix(1 0 0 1 652.9934 772.4983)" fill="#FFFFFF"
  1612. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1613. {{ ajaxData.pl1srdy06 }}
  1614. </text>
  1615. <text transform="matrix(1 0 0 1 711.7659 772.4983)" fill="#FFFFFF"
  1616. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1617. {{ ajaxData.pl1srdy07 }}
  1618. </text>
  1619. <text transform="matrix(1 0 0 1 779.0159 772.4983)" fill="#FFFFFF"
  1620. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1621. {{ ajaxData.pl1srdy08 }}
  1622. </text>
  1623. <text transform="matrix(1 0 0 1 850.4915 772.4983)" fill="#FFFFFF"
  1624. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1625. {{ ajaxData.pl1srdy09 }}
  1626. </text>
  1627. <text transform="matrix(1 0 0 1 917.7415 772.4983)" fill="#FFFFFF"
  1628. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1629. {{ ajaxData.pl1srdy10 }}
  1630. </text>
  1631. <text transform="matrix(1 0 0 1 976.5139 772.4983)" fill="#FFFFFF"
  1632. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1633. {{ ajaxData.pl1srdy11 }}
  1634. </text>
  1635. <text transform="matrix(1 0 0 1 1039.7639 772.4983)" fill="#FFFFFF"
  1636. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1637. {{ ajaxData.pl1srdy12 }}
  1638. </text>
  1639. <text transform="matrix(1 0 0 1 1107.2639 772.4983)" fill="#FFFFFF"
  1640. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1641. {{ ajaxData.pl1srdy13 }}
  1642. </text>
  1643. <text transform="matrix(1 0 0 1 1175.7639 772.4983)" fill="#FFFFFF"
  1644. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1645. {{ ajaxData.pl1srdy14 }}
  1646. </text>
  1647. <text transform="matrix(1 0 0 1 1239.7639 772.4983)" fill="#FFFFFF"
  1648. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1649. {{ ajaxData.pl1srdy15 }}
  1650. </text>
  1651. <text transform="matrix(1 0 0 1 1298.7639 772.4983)" fill="#FFFFFF"
  1652. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1653. {{ ajaxData.pl1srdy16 }}
  1654. </text>
  1655. <text transform="matrix(1 0 0 1 1496.7639 772.4983)" fill="#FFFFFF"
  1656. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1657. {{ ajaxData.pl1srdy17 }}
  1658. </text>
  1659. <text transform="matrix(1 0 0 1 1557.7639 772.4983)" fill="#FFFFFF"
  1660. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1661. {{ ajaxData.pl1srdy18 }}
  1662. </text>
  1663. <text transform="matrix(1 0 0 1 1651.2639 772.4983)" fill="#FFFFFF"
  1664. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1665. {{ ajaxData.pl1srdy19 }}
  1666. </text>
  1667. <text transform="matrix(1 0 0 1 319.9377 824.9983)" fill="#FFFFFF"
  1668. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1669. {{ ajaxData.pl1scgl01 }}
  1670. </text>
  1671. <text transform="matrix(1 0 0 1 387.1877 824.9983)" fill="#FFFFFF"
  1672. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1673. {{ ajaxData.pl1scgl02 }}
  1674. </text>
  1675. <text transform="matrix(1 0 0 1 441.9602 824.9983)" fill="#FFFFFF"
  1676. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1677. {{ ajaxData.pl1scgl03 }}
  1678. </text>
  1679. <text transform="matrix(1 0 0 1 509.2102 824.9983)" fill="#FFFFFF"
  1680. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1681. {{ ajaxData.pl1scgl04 }}
  1682. </text>
  1683. <text transform="matrix(1 0 0 1 585.7434 824.9983)" fill="#FFFFFF"
  1684. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1685. {{ ajaxData.pl1scgl05 }}
  1686. </text>
  1687. <text transform="matrix(1 0 0 1 652.9934 824.9983)" fill="#FFFFFF"
  1688. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1689. {{ ajaxData.pl1scgl06 }}
  1690. </text>
  1691. <text transform="matrix(1 0 0 1 711.7659 824.9983)" fill="#FFFFFF"
  1692. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1693. {{ ajaxData.pl1scgl07 }}
  1694. </text>
  1695. <text transform="matrix(1 0 0 1 779.0159 824.9983)" fill="#FFFFFF"
  1696. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1697. {{ ajaxData.pl1scgl08 }}
  1698. </text>
  1699. <text transform="matrix(1 0 0 1 850.4915 824.9983)" fill="#FFFFFF"
  1700. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1701. {{ ajaxData.pl1scgl09 }}
  1702. </text>
  1703. <text transform="matrix(1 0 0 1 917.7415 824.9983)" fill="#FFFFFF"
  1704. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1705. {{ ajaxData.pl1scgl10 }}
  1706. </text>
  1707. <text transform="matrix(1 0 0 1 976.5139 824.9983)" fill="#FFFFFF"
  1708. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1709. {{ ajaxData.pl1scgl11 }}
  1710. </text>
  1711. <text transform="matrix(1 0 0 1 1039.7639 824.9983)" fill="#FFFFFF"
  1712. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1713. {{ ajaxData.pl1scgl12 }}
  1714. </text>
  1715. <text transform="matrix(1 0 0 1 1107.2639 824.9983)" fill="#FFFFFF"
  1716. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1717. {{ ajaxData.pl1scgl13 }}
  1718. </text>
  1719. <text transform="matrix(1 0 0 1 1175.7639 824.9983)" fill="#FFFFFF"
  1720. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1721. {{ ajaxData.pl1scgl14 }}
  1722. </text>
  1723. <text transform="matrix(1 0 0 1 1239.7639 824.9983)" fill="#FFFFFF"
  1724. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1725. {{ ajaxData.pl1scgl15 }}
  1726. </text>
  1727. <text transform="matrix(1 0 0 1 1298.7639 824.9983)" fill="#FFFFFF"
  1728. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1729. {{ ajaxData.pl1scgl16 }}
  1730. </text>
  1731. <text transform="matrix(1 0 0 1 1496.7639 824.9983)" fill="#FFFFFF"
  1732. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1733. {{ ajaxData.pl1scgl17 }}
  1734. </text>
  1735. <text transform="matrix(1 0 0 1 1557.7639 824.9983)" fill="#FFFFFF"
  1736. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1737. {{ ajaxData.pl1scgl18 }}
  1738. </text>
  1739. <text transform="matrix(1 0 0 1 1651.2639 824.9983)" fill="#FFFFFF"
  1740. font-family="'MicrosoftYaHei'" font-size="11.6452">
  1741. {{ ajaxData.pl1scgl19 }}
  1742. </text>
  1743. </g>
  1744. </g>
  1745. </svg>
  1746. </template>
  1747. </previewPicture>
  1748. </el-col>
  1749. </el-row>
  1750. </div>
  1751. </template>
  1752. <script>
  1753. import previewPicture from "../previewPicture.vue";
  1754. import {BoosterStation} from "./BoosterStation";
  1755. import $ from "jquery";
  1756. export default {
  1757. components: {
  1758. previewPicture,
  1759. },
  1760. data() {
  1761. return {
  1762. green: "#02A434",
  1763. red: "#FF0000",
  1764. ajaxData: {},
  1765. interval: "",
  1766. };
  1767. },
  1768. created() {
  1769. this.boosterStation = new BoosterStation();
  1770. this.refreshTPData();
  1771. this.interval = setInterval(this.refreshTPData, 1000);
  1772. },
  1773. mounted() {
  1774. this.$nextTick(() => {
  1775. if (this.$store.state.themeName === "light") {
  1776. for (let i = 0; i < $('#other text').length; i++) {
  1777. let that = $('#other text').eq(i);
  1778. let fill = that.attr('fill');
  1779. let txt = parseInt(that.text());//数字转整数
  1780. let bracket = that.text().indexOf('(');//判断是否包含(
  1781. let zn = /.*[\u4e00-\u9fa5]+.*$/.test(that.text()); //判断是否包含中文
  1782. if (fill === '#FFFFFF' && !isNaN(txt) && !zn) {
  1783. that.attr('fill', '#000');
  1784. }
  1785. else if(fill === '#FFFFFF' && bracket != -1){
  1786. that.attr('fill', '#000');
  1787. }
  1788. }
  1789. for (let i = 0; i < $('#data text').length; i++) {
  1790. let that = $('#data text').eq(i);
  1791. let fill = that.attr('fill');
  1792. if (fill === '#3B8646') {
  1793. that.attr('fill', '#FFFFFF');
  1794. }else{
  1795. that.attr('fill', '#000');
  1796. }
  1797. }
  1798. }
  1799. })
  1800. },
  1801. methods: {
  1802. closed() {
  1803. clearInterval(this.interval);
  1804. },
  1805. refreshTPData() {
  1806. this.boosterStation.getDatas("PL1_GDC", this.bindValue);
  1807. },
  1808. bindValue(msg) {
  1809. this.ajaxData = msg;
  1810. },
  1811. },
  1812. };
  1813. </script>
  1814. <style scoped>
  1815. .center-bar {
  1816. position: relative;
  1817. box-sizing: border-box;
  1818. height: 90vh;
  1819. background-color: #000000;
  1820. padding-top: 10px;
  1821. padding-left: 5px;
  1822. padding-right: 5px;
  1823. padding-bottom: 5px;
  1824. margin-top: 0;
  1825. margin-right: 0;
  1826. margin-bottom: 3px;
  1827. margin-left: 0;
  1828. display: flex;
  1829. flex-direction: column;
  1830. }
  1831. .svg {
  1832. margin-left: 5%;
  1833. width: 90%;
  1834. height: 90%;
  1835. }
  1836. .light #other line[stroke="#FFFFFF"]{
  1837. stroke:#000000;
  1838. }
  1839. .light #other rect[stroke="#F7F8F8"]{
  1840. stroke:#000000;
  1841. }
  1842. .light #other text[fill="#FFFFFF"][font-size="11.6452"]{
  1843. fill:#000000;
  1844. }
  1845. </style>