123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941 |
- <template>
- <div>
- <el-row :gutter="10">
- <el-col :span="24">
- <previewPicture>
- <template v-slot:svg>
- <svg class="svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
- version="1.1" id="图层_1" x="0px" y="0px" width="1848.938px" height="829.936px"
- viewBox="0 0 1848.938 829.936" enable-background="new 0 0 1848.938 829.936"
- xml:space="preserve">
- <g id="other">
- <text transform="matrix(1 0 0 1 133.1877 296.7874)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- 312
- </text>
- <rect x="-0.006" y="212.678" transform="matrix(-1 0.0011 -0.0011 -1 1849.1648 426.5897)"
- fill="#CAA51A" width="1848.942" height="2.25" />
- <rect x="167.938" y="215.912" fill="#CAA51A" width="2.25" height="42.75" />
- <rect x="167.938" y="316.967" fill="#CAA51A" width="2.25" height="110.693" />
- <rect x="134.188" y="325.66" fill="#CAA51A" width="2.25" height="102" />
- <rect x="134.188" y="461.359" fill="#CAA51A" width="2.25" height="27.303" />
- <rect x="123.766" y="488.66" fill="#CAA51A" width="23.297" height="2.25" />
- <rect x="150.089" y="509.16" fill="#CAA51A" width="2.25" height="21.375" />
- <rect x="139.667" y="530.535" fill="#CAA51A" width="23.297" height="2.25" />
- <rect x="168.931" y="461.359" fill="#CAA51A" width="2.25" height="27.303" />
- <rect x="158.509" y="488.66" fill="#CAA51A" width="23.297" height="2.25" />
- <rect x="56.938" y="325.66" fill="#CAA51A" width="79.5" height="2.25" />
- <polygon fill="#CAA51A" points="56.934,331.392 47.125,326.781 56.938,322.183 " />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="169.063" cy="452.338" r="9.021" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="169.063" cy="436.681" r="9.021" />
- <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="172.292,456.467 169.047,453.258 166.023,456.467 " />
- <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- x1="168.979" y1="453.173" x2="168.979" y2="447.514" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="172.103,433.772 165.583,433.772 169.021,439.148 " />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="136.438" cy="452.338" r="9.021" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="136.438" cy="436.681" r="9.021" />
- <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="139.667,456.467 136.422,453.258 133.398,456.467 " />
- <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- x1="136.354" y1="453.173" x2="136.354" y2="447.514" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="139.478,433.772 132.958,433.772 136.396,439.148 " />
- <rect x="112.188" y="473.785" fill="none" stroke="#CAA51A" stroke-width="2"
- stroke-miterlimit="10" width="77.5" height="46.75" />
- <circle fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10"
- cx="151.5" cy="505.848" r="3.063" />
- <line fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10"
- x1="153.777" y1="503.01" x2="168.372" y2="490.635" />
- <line fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10"
- x1="134.629" y1="490.635" x2="150.152" y2="503.564" />
- <polyline fill="#44426C"
- points="59.295,305.187 59.295,283.253 117.332,283.253 117.332,305.187 " />
- <text transform="matrix(1 0 0 1 70.5085 297.7932)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.8698">
- 厂用变
- </text>
- <text transform="matrix(1 0 0 1 135.4143 557.7874)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- 400V
- </text>
- <rect x="1397.857" y="650.298" fill="#CAA51A" width="2.25" height="27.303" />
- <rect x="1387.436" y="677.6" fill="#CAA51A" width="23.297" height="2.25" />
- <rect x="1413.758" y="698.1" fill="#CAA51A" width="2.25" height="21.375" />
- <rect x="1403.336" y="719.475" fill="#CAA51A" width="23.297" height="2.25" />
- <rect x="1432.6" y="650.298" fill="#CAA51A" width="2.25" height="27.303" />
- <rect x="1422.178" y="677.6" fill="#CAA51A" width="23.297" height="2.25" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="1432.732" cy="641.276" r="9.021" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="1432.73" cy="625.621" r="9.021" />
- <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="1435.961,645.403 1432.716,642.194 1429.691,645.403 " />
- <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- x1="1432.648" y1="642.109" x2="1432.648" y2="636.449" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="1435.771,622.711 1429.251,622.711 1432.689,628.087 " />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="1400.107" cy="641.276" r="9.021" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="1400.105" cy="625.621" r="9.021" />
- <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="1403.336,645.403 1400.091,642.194 1397.066,645.403 " />
- <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- x1="1400.023" y1="642.109" x2="1400.023" y2="636.449" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="1403.146,622.711 1396.626,622.711 1400.064,628.087 " />
- <rect x="1375.857" y="662.725" fill="none" stroke="#CAA51A" stroke-width="2"
- stroke-miterlimit="10" width="77.5" height="46.75" />
- <circle fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10"
- cx="1415.169" cy="694.787" r="3.063" />
- <line fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10"
- x1="1417.446" y1="691.947" x2="1432.042" y2="679.572" />
- <line fill="none" stroke="#CAA51A" stroke-width="1.5" stroke-miterlimit="10"
- x1="1398.297" y1="679.572" x2="1413.821" y2="692.503" />
- <text transform="matrix(1 0 0 1 1375.8577 744.0569)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- 400V 移动箱变
- </text>
- <rect x="197.828" y="264.478" opacity="0.9" fill="#162320" enable-background="new "
- width="115.109" height="18.491" />
- <rect x="197.828" y="284.975" opacity="0.9" fill="#162320" enable-background="new "
- width="115.109" height="18.49" />
- <rect x="197.828" y="305.471" opacity="0.9" fill="#162320" enable-background="new "
- width="115.109" height="18.49" />
- <rect x="197.828" y="325.968" opacity="0.9" fill="#162320" enable-background="new "
- width="115.109" height="18.488" />
- <g>
- <text transform="matrix(1 0 0 1 216.553 278.428)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- la
- </text>
- <text transform="matrix(1 0 0 1 225.8801 278.428)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="9.6234">
- (A)
- </text>
- <text transform="matrix(1 0 0 1 239.0789 278.428)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- :
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 200.6501 296.7874)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- P(kVar):
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 200.6277 319.0725)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- Q(kVar):
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 215.6038 339.9065)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- COS:
- </text>
- </g>
- <rect x="88.313" y="102.478" opacity="0.9" fill="#162320" enable-background="new "
- width="115.11" height="18.491" />
- <rect x="88.313" y="122.975" opacity="0.9" fill="#162320" enable-background="new "
- width="115.11" height="18.489" />
- <rect x="88.313" y="143.471" opacity="0.9" fill="#162320" enable-background="new "
- width="115.11" height="18.489" />
- <rect x="88.313" y="163.968" opacity="0.9" fill="#162320" enable-background="new "
- width="115.11" height="18.489" />
- <g>
- <text transform="matrix(1 0 0 1 105.2566 116.428)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- Ua
- </text>
- <text transform="matrix(1 0 0 1 120.0554 116.428)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="9.6234">
- (kV)
- </text>
- <text transform="matrix(1 0 0 1 138.2317 116.428)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- :
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 104.2776 134.7874)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- Ub
- </text>
- <text transform="matrix(1 0 0 1 120.0554 134.7874)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="9.6234">
- (kV)
- </text>
- <text transform="matrix(1 0 0 1 138.2307 134.7874)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- :
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 105.8406 157.0725)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- Uc
- </text>
- <text transform="matrix(1 0 0 1 120.0554 157.0725)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="9.6234">
- (kV)
- </text>
- <text transform="matrix(1 0 0 1 138.2317 157.0725)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- :
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 97.9822 177.9065)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- Uab
- </text>
- <text transform="matrix(1 0 0 1 120.0564 177.9065)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="9.6234">
- (kV)
- </text>
- <text transform="matrix(1 0 0 1 138.2312 177.9065)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- :
- </text>
- </g>
- <rect x="431.938" y="215.912" fill="#CAA51A" width="2.25" height="42.75" />
- <rect x="431.938" y="316.967" fill="#CAA51A" width="2.25" height="187.126" />
- <rect x="335.938" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
- <rect x="335.938" y="726.91" fill="#CAA51A" width="2.25" height="10" />
- <rect x="402.188" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
- <rect x="336.444" y="635.635" fill="#CAA51A" width="17.577" height="2.25" />
- <rect x="386.736" y="635.635" fill="#CAA51A" width="17.577" height="2.25" />
- <rect x="370.938" y="502.439" fill="#CAA51A" width="123.272" height="2.25" />
- <rect x="370.7" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
- <rect x="491.961" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="370.938" cy="626.389" r="9.021" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="363.043" cy="635.412" r="9.021" />
- <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="367.709,622.262 370.954,625.471 373.979,622.262 " />
- <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="489.475,622.262 492.72,625.471 495.744,622.262 " />
- <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- x1="371.022" y1="625.557" x2="371.022" y2="631.216" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="360.002,638.322 366.522,638.322 363.084,632.947 " />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="378.835" cy="635.412" r="9.021" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="375.794,638.322 382.314,638.322 378.876,632.947 " />
- <g>
- <rect x="325.688" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
- stroke-miterlimit="10" width="24" height="40.331" />
- <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
- d="M326.938,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="348.438" y1="686.579" x2="325.688" y2="725.91" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="337.063" y1="718.41" x2="345.232" y2="718.41" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="337.063" y1="722.16" x2="345.232" y2="722.16" />
- </g>
- <rect x="402.563" y="726.91" fill="#CAA51A" width="2.25" height="10" />
- <g>
- <rect x="392.313" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
- stroke-miterlimit="10" width="24" height="40.331" />
- <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
- d="M393.563,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="415.063" y1="686.579" x2="392.313" y2="725.91" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="403.688" y1="718.41" x2="411.857" y2="718.41" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="403.688" y1="722.16" x2="411.857" y2="722.16" />
- </g>
- <polyline fill="#44426C"
- points="355.987,670.835 355.987,648.9 385.188,648.9 385.188,670.835 " />
- <text transform="matrix(1 0 0 1 363.3196 663.4397)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.8698">
- #1
- </text>
- <polyline fill="#44426C"
- points="443.973,372.313 471.948,372.313 471.948,467.91 443.973,467.91 " />
- <text transform="matrix(0 1 -1 0 453.3645 379.6477)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- #1
- </text>
- <text transform="matrix(1 0 0 1 329.9377 748.2483)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- #1
- </text>
- <text transform="matrix(1 0 0 1 396.1877 296.7874)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- 313
- </text>
- <text transform="matrix(1 0 0 1 396.1877 748.2483)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- #2
- </text>
- <rect x="457.96" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
- <rect x="457.96" y="726.91" fill="#CAA51A" width="2.25" height="10" />
- <rect x="524.21" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
- <rect x="458.466" y="635.635" fill="#CAA51A" width="17.577" height="2.25" />
- <rect x="508.758" y="635.635" fill="#CAA51A" width="17.577" height="2.25" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="492.96" cy="626.389" r="9.021" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="485.064" cy="635.412" r="9.021" />
- <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- x1="493.044" y1="625.557" x2="493.044" y2="631.216" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="482.025,638.322 488.544,638.322 485.107,632.947 " />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="500.857" cy="635.412" r="9.021" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="497.817,638.322 504.336,638.322 500.898,632.947 " />
- <g>
- <rect x="447.71" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
- stroke-miterlimit="10" width="24" height="40.331" />
- <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
- d="M448.96,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="470.46" y1="686.579" x2="447.71" y2="725.91" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="459.085" y1="718.41" x2="467.255" y2="718.41" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="459.085" y1="722.16" x2="467.255" y2="722.16" />
- </g>
- <rect x="524.585" y="726.91" fill="#CAA51A" width="2.25" height="10" />
- <g>
- <rect x="514.335" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
- stroke-miterlimit="10" width="24" height="40.331" />
- <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
- d="M515.585,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="537.085" y1="686.579" x2="514.335" y2="725.91" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="525.71" y1="718.41" x2="533.88" y2="718.41" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="525.71" y1="722.16" x2="533.88" y2="722.16" />
- </g>
- <polyline fill="#44426C"
- points="478.01,670.835 478.01,648.9 507.21,648.9 507.21,670.835 " />
- <text transform="matrix(1 0 0 1 485.342 663.4397)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.8698">
- #2
- </text>
- <text transform="matrix(1 0 0 1 451.9602 748.2483)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- #3
- </text>
- <text transform="matrix(1 0 0 1 518.2102 748.2483)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- #4
- </text>
- <text transform="matrix(1 0 0 1 451.1008 410.3079)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- 光
- </text>
- <text transform="matrix(1 0 0 1 451.1008 426.5081)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- 伏
- </text>
- <text transform="matrix(1 0 0 1 451.1008 442.7073)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- 进
- </text>
- <text transform="matrix(1 0 0 1 451.1008 458.9075)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- 线
- </text>
- <text transform="matrix(1 0 0 1 464.6008 459.1282)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5" letter-spacing="20"></text>
- <rect x="465.381" y="265.196" opacity="0.9" fill="#162320" enable-background="new "
- width="115.109" height="18.491" />
- <rect x="465.381" y="285.693" opacity="0.9" fill="#162320" enable-background="new "
- width="115.109" height="18.49" />
- <rect x="465.381" y="306.189" opacity="0.9" fill="#162320" enable-background="new "
- width="115.109" height="18.49" />
- <rect x="465.381" y="326.686" opacity="0.9" fill="#162320" enable-background="new "
- width="115.109" height="18.49" />
- <g>
- <text transform="matrix(1 0 0 1 484.1057 279.1467)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- la
- </text>
- <text transform="matrix(1 0 0 1 493.4329 279.1467)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="9.6234">
- (A)
- </text>
- <text transform="matrix(1 0 0 1 506.6316 279.1467)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- :
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 468.2029 297.5061)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- P(kVar):
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 465.1804 319.7913)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- Q(kVar):
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 483.1565 340.6252)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- COS:
- </text>
- </g>
- <rect x="634.499" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
- <rect x="755.76" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
- <rect x="696.005" y="215.912" fill="#CAA51A" width="2.25" height="42.75" />
- <rect x="696.005" y="316.967" fill="#CAA51A" width="2.25" height="187.126" />
- <rect x="600.005" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
- <rect x="600.005" y="726.91" fill="#CAA51A" width="2.25" height="10" />
- <rect x="666.255" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
- <rect x="600.511" y="635.635" fill="#CAA51A" width="17.577" height="2.25" />
- <rect x="650.803" y="635.635" fill="#CAA51A" width="17.577" height="2.25" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="635.005" cy="626.389" r="9.021" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="627.11" cy="635.412" r="9.021" />
- <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="631.776,622.262 635.021,625.471 638.045,622.262 " />
- <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="753.542,622.262 756.787,625.471 759.813,622.262 " />
- <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- x1="635.089" y1="625.557" x2="635.089" y2="631.216" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="624.069,638.322 630.589,638.322 627.151,632.947 " />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="642.902" cy="635.412" r="9.021" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="639.861,638.322 646.381,638.322 642.943,632.947 " />
- <g>
- <rect x="589.755" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
- stroke-miterlimit="10" width="24" height="40.331" />
- <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
- d="M591.005,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="612.505" y1="686.579" x2="589.755" y2="725.91" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="601.13" y1="718.41" x2="609.299" y2="718.41" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="601.13" y1="722.16" x2="609.299" y2="722.16" />
- </g>
- <rect x="666.63" y="726.91" fill="#CAA51A" width="2.25" height="10" />
- <g>
- <rect x="656.38" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
- stroke-miterlimit="10" width="24" height="40.331" />
- <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
- d="M657.63,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="679.13" y1="686.579" x2="656.38" y2="725.91" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="667.755" y1="718.41" x2="675.924" y2="718.41" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="667.755" y1="722.16" x2="675.924" y2="722.16" />
- </g>
- <polyline fill="#44426C"
- points="620.054,670.835 620.054,648.9 649.255,648.9 649.255,670.835 " />
- <text transform="matrix(1 0 0 1 627.3865 663.4397)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.8698">
- #3
- </text>
- <polyline fill="#44426C"
- points="708.039,372.313 736.015,372.313 736.015,467.91 708.039,467.91 " />
- <text transform="matrix(0 1 -1 0 717.4299 379.6477)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- #2
- </text>
- <text transform="matrix(1 0 0 1 594.0046 748.2483)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- #5
- </text>
- <text transform="matrix(1 0 0 1 660.2546 296.7874)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- 314
- </text>
- <text transform="matrix(1 0 0 1 660.2546 748.2483)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- #6
- </text>
- <rect x="722.027" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
- <rect x="722.027" y="726.91" fill="#CAA51A" width="2.25" height="10" />
- <rect x="788.277" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
- <rect x="722.532" y="635.635" fill="#CAA51A" width="17.577" height="2.25" />
- <rect x="772.824" y="635.635" fill="#CAA51A" width="17.577" height="2.25" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="757.027" cy="626.389" r="9.021" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="749.132" cy="635.412" r="9.021" />
- <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- x1="757.111" y1="625.557" x2="757.111" y2="631.216" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="746.092,638.322 752.611,638.322 749.174,632.947 " />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="764.924" cy="635.412" r="9.021" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="761.884,638.322 768.403,638.322 764.966,632.947 " />
- <g>
- <rect x="711.777" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
- stroke-miterlimit="10" width="24" height="40.331" />
- <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
- d="M713.027,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="734.527" y1="686.579" x2="711.777" y2="725.91" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="723.152" y1="718.41" x2="731.322" y2="718.41" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="723.152" y1="722.16" x2="731.322" y2="722.16" />
- </g>
- <rect x="788.652" y="726.91" fill="#CAA51A" width="2.25" height="10" />
- <g>
- <rect x="778.402" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
- stroke-miterlimit="10" width="24" height="40.331" />
- <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
- d="M779.652,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="801.152" y1="686.579" x2="778.402" y2="725.91" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="789.777" y1="718.41" x2="797.947" y2="718.41" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="789.777" y1="722.16" x2="797.947" y2="722.16" />
- </g>
- <polyline fill="#44426C"
- points="742.076,670.835 742.076,648.9 771.277,648.9 771.277,670.835 " />
- <text transform="matrix(1 0 0 1 749.4089 663.4397)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.8698">
- #4
- </text>
- <text transform="matrix(1 0 0 1 716.0271 748.2483)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- #7
- </text>
- <text transform="matrix(1 0 0 1 782.2771 748.2483)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- #8
- </text>
- <text transform="matrix(1 0 0 1 715.1677 410.3079)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- 光
- </text>
- <text transform="matrix(1 0 0 1 715.1677 426.5081)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- 伏
- </text>
- <text transform="matrix(1 0 0 1 715.1677 442.7073)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- 进
- </text>
- <text transform="matrix(1 0 0 1 715.1677 458.9075)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- 线
- </text>
- <text transform="matrix(1 0 0 1 728.6677 459.1282)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5" letter-spacing="20"></text>
- <rect x="724.059" y="265.196" opacity="0.9" fill="#162320" enable-background="new "
- width="115.11" height="18.491" />
- <rect x="724.059" y="285.693" opacity="0.9" fill="#162320" enable-background="new "
- width="115.11" height="18.49" />
- <rect x="724.059" y="306.189" opacity="0.9" fill="#162320" enable-background="new "
- width="115.11" height="18.49" />
- <rect x="724.059" y="326.686" opacity="0.9" fill="#162320" enable-background="new "
- width="115.11" height="18.49" />
- <g>
- <text transform="matrix(1 0 0 1 742.7839 279.1467)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- la
- </text>
- <text transform="matrix(1 0 0 1 752.1111 279.1467)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="9.6234">
- (A)
- </text>
- <text transform="matrix(1 0 0 1 765.3098 279.1467)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- :
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 726.8811 297.5061)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- P(kVar):
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 726.8586 319.7913)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- Q(kVar):
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 741.8347 340.6252)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- COS:
- </text>
- </g>
- <rect x="634.738" y="502.439" fill="#CAA51A" width="123.271" height="2.25" />
- <rect x="898.938" y="502.439" fill="#CAA51A" width="123.273" height="2.25" />
- <rect x="898.699" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
- <rect x="1019.961" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
- <rect x="999.77" y="266.198" opacity="0.9" fill="#162320" enable-background="new "
- width="115.108" height="18.491" />
- <rect x="999.77" y="286.696" opacity="0.9" fill="#162320" enable-background="new "
- width="115.108" height="18.49" />
- <rect x="999.77" y="307.192" opacity="0.9" fill="#162320" enable-background="new "
- width="115.108" height="18.49" />
- <rect x="999.77" y="327.688" opacity="0.9" fill="#162320" enable-background="new "
- width="115.108" height="18.49" />
- <g>
- <text transform="matrix(1 0 0 1 1018.4944 280.1487)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- la
- </text>
- <text transform="matrix(1 0 0 1 1027.8206 280.1487)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="9.6234">
- (A)
- </text>
- <text transform="matrix(1 0 0 1 1041.0198 280.1487)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- :
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1002.592 298.51)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- P(kVar):
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1002.5686 320.7952)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- Q(kVar):
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1017.5452 341.6292)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- COS:
- </text>
- </g>
- <rect x="960.325" y="215.912" fill="#CAA51A" width="2.25" height="42.75" />
- <rect x="960.325" y="316.967" fill="#CAA51A" width="2.25" height="187.126" />
- <rect x="864.325" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
- <rect x="864.325" y="726.91" fill="#CAA51A" width="2.25" height="10" />
- <rect x="930.575" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
- <rect x="864.831" y="635.635" fill="#CAA51A" width="17.577" height="2.25" />
- <rect x="915.124" y="635.635" fill="#CAA51A" width="17.576" height="2.25" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="899.325" cy="626.389" r="9.021" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="891.431" cy="635.412" r="9.021" />
- <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="896.097,622.262 899.342,625.471 902.366,622.262 " />
- <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="1017.864,622.262 1021.109,625.471 1024.133,622.262 " />
- <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- x1="899.409" y1="625.557" x2="899.409" y2="631.216" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="888.391,638.322 894.909,638.322 891.473,632.947 " />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="907.223" cy="635.412" r="9.021" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="904.183,638.322 910.701,638.322 907.265,632.947 " />
- <g>
- <rect x="854.075" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
- stroke-miterlimit="10" width="24" height="40.331" />
- <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
- d="M855.325,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="876.825" y1="686.579" x2="854.075" y2="725.91" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="865.45" y1="718.41" x2="873.62" y2="718.41" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="865.45" y1="722.16" x2="873.62" y2="722.16" />
- </g>
- <rect x="930.95" y="726.91" fill="#CAA51A" width="2.25" height="10" />
- <g>
- <rect x="920.7" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
- stroke-miterlimit="10" width="24" height="40.331" />
- <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
- d="M921.95,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="943.45" y1="686.579" x2="920.7" y2="725.91" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="932.075" y1="718.41" x2="940.245" y2="718.41" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="932.075" y1="722.16" x2="940.245" y2="722.16" />
- </g>
- <polyline fill="#44426C"
- points="884.374,670.835 884.374,648.9 913.575,648.9 913.575,670.835 " />
- <text transform="matrix(1 0 0 1 891.7078 663.4397)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.8698">
- #5
- </text>
- <polyline fill="#44426C"
- points="972.361,372.313 1000.336,372.313 1000.336,467.91 972.361,467.91 " />
- <text transform="matrix(0 1 -1 0 981.7542 379.6477)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- #3
- </text>
- <text transform="matrix(1 0 0 1 858.3259 748.2483)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- #9
- </text>
- <text transform="matrix(1 0 0 1 924.5759 296.7874)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- 315
- </text>
- <text transform="matrix(1 0 0 1 924.5759 748.2483)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- #10
- </text>
- <rect x="986.348" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
- <rect x="986.348" y="726.91" fill="#CAA51A" width="2.25" height="10" />
- <rect x="1052.598" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
- <rect x="986.854" y="635.635" fill="#CAA51A" width="17.578" height="2.25" />
- <rect x="1037.146" y="635.635" fill="#CAA51A" width="17.575" height="2.25" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="1021.348" cy="626.389" r="9.021" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="1013.453" cy="635.412" r="9.021" />
- <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- x1="1021.432" y1="625.557" x2="1021.432" y2="631.216" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="1010.412,638.322 1016.932,638.322 1013.494,632.947 " />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="1029.245" cy="635.412" r="9.021" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="1026.206,638.322 1032.725,638.322 1029.287,632.947 " />
- <g>
- <rect x="976.099" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
- stroke-miterlimit="10" width="24" height="40.331" />
- <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
- d="M977.349,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="998.848" y1="686.579" x2="976.099" y2="725.91" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="987.473" y1="718.41" x2="995.643" y2="718.41" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="987.473" y1="722.16" x2="995.643" y2="722.16" />
- </g>
- <rect x="1052.973" y="726.91" fill="#CAA51A" width="2.25" height="10" />
- <g>
- <rect x="1042.723" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
- stroke-miterlimit="10" width="24" height="40.331" />
- <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
- d="M1043.973,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1065.473" y1="686.579" x2="1042.723" y2="725.91" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1054.098" y1="718.41" x2="1062.268" y2="718.41" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1054.098" y1="722.16" x2="1062.268" y2="722.16" />
- </g>
- <polyline fill="#44426C"
- points="1006.398,670.835 1006.398,648.9 1035.598,648.9 1035.598,670.835 " />
- <text transform="matrix(1 0 0 1 1013.7307 663.4397)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.8698">
- #6
- </text>
- <text transform="matrix(1 0 0 1 980.3479 748.2483)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- #11
- </text>
- <text transform="matrix(1 0 0 1 1043.5979 748.2483)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- #12
- </text>
- <text transform="matrix(1 0 0 1 979.4885 410.3079)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- 光
- </text>
- <text transform="matrix(1 0 0 1 979.4885 426.5081)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- 伏
- </text>
- <text transform="matrix(1 0 0 1 979.4885 442.7073)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- 进
- </text>
- <text transform="matrix(1 0 0 1 979.4885 458.9075)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- 线
- </text>
- <text transform="matrix(1 0 0 1 992.9885 459.1282)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5" letter-spacing="20"></text>
- <rect x="1535.633" y="502.439" fill="#CAA51A" width="123.272" height="2.25" />
- <rect x="1535.395" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
- <rect x="1656.656" y="503.01" fill="#CAA51A" width="2.25" height="99.399" />
- <rect x="1646.463" y="266.198" opacity="0.9" fill="#162320" enable-background="new "
- width="115.108" height="18.491" />
- <rect x="1646.463" y="286.696" opacity="0.9" fill="#162320" enable-background="new "
- width="115.108" height="18.49" />
- <rect x="1646.463" y="307.192" opacity="0.9" fill="#162320" enable-background="new "
- width="115.108" height="18.49" />
- <rect x="1646.463" y="327.688" opacity="0.9" fill="#162320" enable-background="new "
- width="115.108" height="18.49" />
- <g>
- <text transform="matrix(1 0 0 1 1665.1897 280.1487)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- la
- </text>
- <text transform="matrix(1 0 0 1 1674.5159 280.1487)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="9.6234">
- (A)
- </text>
- <text transform="matrix(1 0 0 1 1687.7151 280.1487)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- :
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1649.2854 298.51)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- P(kVar):
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1651.2639 320.7952)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- Q(kVar):
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1664.2405 341.6292)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- COS:
- </text>
- </g>
- <rect x="1597.021" y="215.912" fill="#CAA51A" width="2.25" height="42.75" />
- <rect x="1597.021" y="316.967" fill="#CAA51A" width="2.25" height="187.126" />
- <rect x="1501.021" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
- <rect x="1501.021" y="726.91" fill="#CAA51A" width="2.25" height="10" />
- <rect x="1567.271" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
- <rect x="1501.527" y="635.635" fill="#CAA51A" width="17.576" height="2.25" />
- <rect x="1551.818" y="635.635" fill="#CAA51A" width="17.578" height="2.25" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="1536.021" cy="626.389" r="9.021" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="1528.124" cy="635.412" r="9.021" />
- <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="1532.792,622.262 1536.037,625.471 1539.061,622.262 " />
- <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="1662.417,628.714 1659.172,625.505 1656.146,628.714 " />
- <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- x1="1536.105" y1="625.557" x2="1536.105" y2="631.216" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="1525.085,638.322 1531.605,638.322 1528.167,632.947 " />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="1543.917" cy="635.412" r="9.021" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="1540.876,638.322 1547.396,638.322 1543.958,632.947 " />
- <g>
- <rect x="1490.771" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
- stroke-miterlimit="10" width="24" height="40.331" />
- <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
- d="M1492.021,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1513.521" y1="686.579" x2="1490.771" y2="725.91" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1502.146" y1="718.41" x2="1510.314" y2="718.41" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1502.146" y1="722.16" x2="1510.314" y2="722.16" />
- </g>
- <rect x="1567.646" y="726.91" fill="#CAA51A" width="2.25" height="10" />
- <g>
- <rect x="1557.396" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
- stroke-miterlimit="10" width="24" height="40.331" />
- <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
- d="M1558.646,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1580.146" y1="686.579" x2="1557.396" y2="725.91" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1568.771" y1="718.41" x2="1576.939" y2="718.41" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1568.771" y1="722.16" x2="1576.939" y2="722.16" />
- </g>
- <polyline fill="#44426C"
- points="1521.071,670.835 1521.071,648.9 1550.271,648.9 1550.271,670.835 " />
- <text transform="matrix(1 0 0 1 1528.4026 663.4397)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.8698">
- #9
- </text>
- <polyline fill="#44426C"
- points="1609.055,372.313 1637.031,372.313 1637.031,467.91 1609.055,467.91 " />
- <text transform="matrix(0 1 -1 0 1618.4495 379.6477)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- #5
- </text>
- <text transform="matrix(1 0 0 1 1495.0217 748.2483)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- #17
- </text>
- <text transform="matrix(1 0 0 1 1561.2717 296.7874)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- 315
- </text>
- <text transform="matrix(1 0 0 1 1561.2717 748.2483)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- #18
- </text>
- <rect x="1657.781" y="634.29" fill="#CAA51A" width="2.25" height="50.946" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="1659.282" cy="624.584" r="9.021" />
- <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- x1="1659.281" y1="625.419" x2="1659.281" y2="619.76" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="1659.281" cy="611.432" r="9.021" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="1662.542,608.523 1656.021,608.523 1659.458,613.898 " />
- <rect x="1658.156" y="725.569" fill="#CAA51A" width="2.25" height="10" />
- <g>
- <rect x="1647.906" y="685.238" fill="none" stroke="#F7F8F8" stroke-width="1.3"
- stroke-miterlimit="10" width="24" height="40.331" />
- <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
- d="M1649.156,689.319c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1670.656" y1="685.238" x2="1647.906" y2="724.569" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1659.281" y1="717.069" x2="1667.451" y2="717.069" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1659.281" y1="720.819" x2="1667.451" y2="720.819" />
- </g>
- <polyline fill="#44426C"
- points="1675.855,671.089 1675.855,649.154 1705.057,649.154 1705.057,671.089 " />
- <text transform="matrix(1 0 0 1 1679.7092 663.6936)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.8698">
- #10
- </text>
- <text transform="matrix(1 0 0 1 1648.7815 746.9065)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- #19
- </text>
- <text transform="matrix(1 0 0 1 1616.1838 410.3079)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- 光
- </text>
- <text transform="matrix(1 0 0 1 1616.1838 426.5081)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- 伏
- </text>
- <text transform="matrix(1 0 0 1 1616.1838 442.7073)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- 进
- </text>
- <text transform="matrix(1 0 0 1 1616.1838 458.9075)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- 线
- </text>
- <text transform="matrix(1 0 0 1 1629.6838 459.1282)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5" letter-spacing="20"></text>
- <rect x="1153.99" y="502.439" fill="#CAA51A" width="246.117" height="2.25" />
- <rect x="1153.989" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
- <rect x="1275.415" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
- <rect x="1397.857" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
- <rect x="1430.917" y="503.01" fill="#CAA51A" width="2.25" height="114.356" />
- <rect x="1306.977" y="266.198" opacity="0.9" fill="#162320" enable-background="new "
- width="115.109" height="18.491" />
- <rect x="1306.977" y="286.696" opacity="0.9" fill="#162320" enable-background="new "
- width="115.109" height="18.49" />
- <rect x="1306.977" y="307.192" opacity="0.9" fill="#162320" enable-background="new "
- width="115.109" height="18.49" />
- <rect x="1306.977" y="327.688" opacity="0.9" fill="#162320" enable-background="new "
- width="115.109" height="18.49" />
- <g>
- <text transform="matrix(1 0 0 1 1325.7014 280.1487)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- la
- </text>
- <text transform="matrix(1 0 0 1 1335.0276 280.1487)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="9.6234">
- (A)
- </text>
- <text transform="matrix(1 0 0 1 1348.2268 280.1487)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- :
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1309.7991 298.51)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- P(kVar):
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1309.7776 320.7952)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- Q(kVar):
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1324.7522 341.6292)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- COS:
- </text>
- </g>
- <rect x="1274.614" y="215.912" fill="#CAA51A" width="2.25" height="42.75" />
- <rect x="1274.614" y="316.967" fill="#CAA51A" width="2.25" height="187.126" />
- <rect x="1119.615" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
- <rect x="1119.615" y="726.91" fill="#CAA51A" width="2.25" height="10" />
- <rect x="1185.865" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
- <rect x="1120.121" y="635.635" fill="#CAA51A" width="17.576" height="2.25" />
- <rect x="1170.412" y="635.635" fill="#CAA51A" width="17.578" height="2.25" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="1154.615" cy="626.389" r="9.021" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="1146.72" cy="635.412" r="9.021" />
- <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="1151.386,622.262 1154.631,625.471 1157.656,622.262 " />
- <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="1273.316,622.262 1276.563,625.471 1279.586,622.262 " />
- <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- x1="1154.699" y1="625.557" x2="1154.699" y2="631.216" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="1143.68,638.322 1150.199,638.322 1146.762,632.947 " />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="1162.512" cy="635.412" r="9.021" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="1159.471,638.322 1165.99,638.322 1162.553,632.947 " />
- <g>
- <rect x="1109.365" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
- stroke-miterlimit="10" width="24" height="40.331" />
- <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
- d="M1110.615,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1132.115" y1="686.579" x2="1109.365" y2="725.91" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1120.74" y1="718.41" x2="1128.909" y2="718.41" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1120.74" y1="722.16" x2="1128.909" y2="722.16" />
- </g>
- <rect x="1186.24" y="726.91" fill="#CAA51A" width="2.25" height="10" />
- <g>
- <rect x="1175.99" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
- stroke-miterlimit="10" width="24" height="40.331" />
- <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
- d="M1177.24,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1198.74" y1="686.579" x2="1175.99" y2="725.91" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1187.365" y1="718.41" x2="1195.534" y2="718.41" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1187.365" y1="722.16" x2="1195.534" y2="722.16" />
- </g>
- <polyline fill="#44426C"
- points="1139.665,670.835 1139.665,648.9 1168.865,648.9 1168.865,670.835 " />
- <text transform="matrix(1 0 0 1 1146.9963 663.4397)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.8698">
- #7
- </text>
- <polyline fill="#44426C"
- points="1286.648,372.313 1314.624,372.313 1314.624,467.91 1286.648,467.91 " />
- <text transform="matrix(0 1 -1 0 1296.0393 379.6477)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- #4
- </text>
- <text transform="matrix(1 0 0 1 1110.5549 748.2483)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- #13
- </text>
- <text transform="matrix(1 0 0 1 1238.8635 296.7874)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- 316
- </text>
- <text transform="matrix(1 0 0 1 1176.8049 748.2483)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- #14
- </text>
- <rect x="1241.801" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
- <rect x="1241.801" y="726.91" fill="#CAA51A" width="2.25" height="10" />
- <rect x="1308.051" y="635.635" fill="#CAA51A" width="2.25" height="50.943" />
- <rect x="1242.307" y="635.635" fill="#CAA51A" width="17.578" height="2.25" />
- <rect x="1292.6" y="635.635" fill="#CAA51A" width="17.576" height="2.25" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="1276.801" cy="626.389" r="9.021" />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="1268.906" cy="635.412" r="9.021" />
- <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- x1="1276.885" y1="625.557" x2="1276.885" y2="631.216" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="1265.865,638.322 1272.385,638.322 1268.948,632.947 " />
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- cx="1284.698" cy="635.412" r="9.021" />
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10"
- points="1281.658,638.322 1288.178,638.322 1284.74,632.947 " />
- <g>
- <rect x="1231.551" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
- stroke-miterlimit="10" width="24" height="40.331" />
- <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
- d="M1232.801,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1254.301" y1="686.579" x2="1231.551" y2="725.91" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1242.926" y1="718.41" x2="1251.096" y2="718.41" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1242.926" y1="722.16" x2="1251.096" y2="722.16" />
- </g>
- <rect x="1308.426" y="726.91" fill="#CAA51A" width="2.25" height="10" />
- <g>
- <rect x="1298.176" y="686.579" fill="none" stroke="#F7F8F8" stroke-width="1.3"
- stroke-miterlimit="10" width="24" height="40.331" />
- <path fill="none" stroke="#CB151D" stroke-width="1.2" stroke-miterlimit="10"
- d="M1299.426,690.66c0,0,3.75,13.5,9.75,0 c4.75-6.5,8.25,3,8.25,3" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1320.926" y1="686.579" x2="1298.176" y2="725.91" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1309.551" y1="718.41" x2="1317.721" y2="718.41" />
- <line fill="none" stroke="#FFFFFF" stroke-width="1.2" stroke-miterlimit="10"
- x1="1309.551" y1="722.16" x2="1317.721" y2="722.16" />
- </g>
- <polyline fill="#44426C"
- points="1261.852,670.835 1261.852,648.9 1291.051,648.9 1291.051,670.835 " />
- <text transform="matrix(1 0 0 1 1269.1838 663.4397)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.8698">
- #8
- </text>
- <text transform="matrix(1 0 0 1 1235.801 748.2483)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- #15
- </text>
- <text transform="matrix(1 0 0 1 1299.051 748.2483)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- #16
- </text>
- <text transform="matrix(1 0 0 1 1293.7756 410.3079)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- 光
- </text>
- <text transform="matrix(1 0 0 1 1293.7756 426.5081)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- 伏
- </text>
- <text transform="matrix(1 0 0 1 1293.7756 442.7073)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- 进
- </text>
- <text transform="matrix(1 0 0 1 1293.7756 458.9075)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5">
- 线
- </text>
- <text transform="matrix(1 0 0 1 1307.2756 459.1282)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="13.5" letter-spacing="20"></text>
- <polygon fill="#CAA51A" points="1427.208,504.689 1432.04,494.392 1436.874,504.688 " />
- <g>
- <text transform="matrix(1 0 0 1 1.9905 206.7913)" fill="#D0D0D0"
- font-family="'MicrosoftYaHei'" font-size="12.619">
- 35kV母线
- </text>
- </g>
- <g>
- <rect x="443.686" y="116.428" fill="#44426C" width="83.313" height="20.817" />
- <text transform="matrix(1 0 0 1 466.4919 130.6194)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="12.5667">
- 园特线
- </text>
- </g>
- <text transform="matrix(1 0 0 1 535.8542 132.6194)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- 310
- </text>
- <polygon fill="#CAA51A" points="567.821,25.24 572.431,15.432 577.03,25.244 " />
- <rect x="570.938" y="170.912" fill="#CAA51A" width="2.25" height="42.75" />
- <rect x="570.938" y="25.244" fill="#CAA51A" width="2.25" height="87.361" />
- <g>
- <rect x="1148.858" y="116.428" fill="#44426C" width="83.313" height="20.817" />
- <text transform="matrix(1 0 0 1 1157.6858 130.6194)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="12.5667">
- 1#无功补偿
- </text>
- </g>
- <rect x="698.255" y="107.234" opacity="0.9" fill="#162320" enable-background="new "
- width="115.109" height="18.491" />
- <rect x="698.255" y="127.731" opacity="0.9" fill="#162320" enable-background="new "
- width="115.109" height="18.491" />
- <rect x="698.255" y="148.228" opacity="0.9" fill="#162320" enable-background="new "
- width="115.109" height="18.491" />
- <rect x="698.255" y="168.725" opacity="0.9" fill="#162320" enable-background="new "
- width="115.109" height="18.489" />
- <g>
- <text transform="matrix(1 0 0 1 716.9797 121.1858)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- la
- </text>
- <text transform="matrix(1 0 0 1 726.3069 121.1858)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="9.6234">
- (A)
- </text>
- <text transform="matrix(1 0 0 1 739.5056 121.1858)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- :
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 701.0769 139.5452)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- P(MVar):
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 701.0544 161.8303)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- Q(MVar):
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 716.0305 182.6643)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- COS:
- </text>
- </g>
- <rect x="1314.624" y="96.987" opacity="0.9" fill="#162320" enable-background="new "
- width="115.107" height="18.491" />
- <rect x="1314.624" y="117.484" opacity="0.9" fill="#162320" enable-background="new "
- width="115.107" height="18.49" />
- <rect x="1314.624" y="137.98" opacity="0.9" fill="#162320" enable-background="new "
- width="115.107" height="18.49" />
- <rect x="1314.624" y="158.477" opacity="0.9" fill="#162320" enable-background="new "
- width="115.107" height="18.49" />
- <g>
- <text transform="matrix(1 0 0 1 1333.3479 110.9377)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- la
- </text>
- <text transform="matrix(1 0 0 1 1342.6741 110.9377)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="9.6234">
- (A)
- </text>
- <text transform="matrix(1 0 0 1 1355.8733 110.9377)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- :
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1317.4456 129.2971)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- P(MVar):
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1316.4241 151.5823)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- Q(MVar):
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1332.3987 172.4163)" fill="#97A1A2"
- font-family="'MicrosoftYaHei'" font-size="11.3899">
- COS:
- </text>
- </g>
- <text transform="matrix(1 0 0 1 1241.0276 132.6194)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- 318
- </text>
- <rect x="1275.182" y="170.912" fill="#CAA51A" width="2.25" height="42.75" />
- <rect x="1275.182" y="27.244" fill="#CAA51A" width="2.25" height="32.667" />
- <rect x="1275.182" y="79.412" fill="#CAA51A" width="2.25" height="33.834" />
- <rect x="1259.318" y="26.119" fill="#CAA51A" width="33.979" height="2.25" />
- <rect x="1259.318" y="15.662" fill="#CAA51A" width="33.979" height="2.25" />
- <rect x="1275.064" y="12.623" fill="#CAA51A" width="2.484" height="3.039" />
- <rect x="1275.064" y="8.516" fill="#40B9B0" width="2.484" height="4.106" />
- <g>
- <line fill="none" stroke="#40B9B0" stroke-width="2" stroke-miterlimit="10"
- x1="1282.018" y1="8.515" x2="1270.596" y2="8.515" />
- <line fill="none" stroke="#40B9B0" stroke-width="2" stroke-miterlimit="10"
- x1="1279.66" y1="5.346" x2="1272.953" y2="5.346" />
- <line fill="none" stroke="#40B9B0" stroke-width="2" stroke-miterlimit="10"
- x1="1277.721" y1="2" x2="1274.893" y2="2" />
- </g>
- <path fill="none" stroke="#CAA51A" stroke-width="2.2" stroke-miterlimit="10"
- 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" />
- <path fill="none" stroke="#CAA51A" stroke-width="2.2" stroke-miterlimit="10"
- 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" />
- <text transform="matrix(1 0 0 1 153.7771 779.5334)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="15">
- 输入电压(V):
- </text>
- <text transform="matrix(1 0 0 1 153.7771 821.5559)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="15">
- 输出功率(kw):
- </text>
- </g>
- <g id="arrow">
- <rect x="564.331" y="129.662" :fill="ajaxData.pl1dlq310 ? red : green" width="15.463"
- height="24.008"></rect>
- <rect x="1268.575" y="130.662" :fill="ajaxData.pl1dlq318 ? red : green" width="15.463"
- height="24.008"></rect>
- <rect x="161.332" y="275.904" :fill="ajaxData.pl1dlq312 ? red : green" width="15.462"
- height="24.008"></rect>
- <rect x="425.331" y="275.904" :fill="ajaxData.pl1dlq313 ? red : green" width="15.463"
- height="24.008"></rect>
- <rect x="689.398" y="275.904" :fill="ajaxData.pl1dlq314 ? red : green" width="15.463"
- height="24.008"></rect>
- <rect x="953.72" y="275.904" :fill="ajaxData.pl1dlq315 ? red : green" width="15.462"
- height="24.008"></rect>
- <rect x="1268.007" y="275.904" :fill="ajaxData.pl1dlq316 ? red : green" width="15.462"
- height="24.008"></rect>
- <rect x="1590.415" y="275.904" :fill="ajaxData.pl1dlq317 ? red : green" width="15.463"
- height="24.008"></rect>
- <rect x="329.938" y="645.885" :fill="ajaxData.pL1dlq01 ? red : green" width="14.25"
- height="35.774"></rect>
- <rect x="396.188" y="645.885" :fill="ajaxData.pL1dlq02 ? red : green" width="14.25"
- height="35.774"></rect>
- <rect x="451.96" y="645.885" :fill="ajaxData.pL1dlq03 ? red : green" width="14.25"
- height="35.774"></rect>
- <rect x="518.21" y="645.885" :fill="ajaxData.pL1dlq04 ? red : green" width="14.25"
- height="35.774"></rect>
- <rect x="594.005" y="645.885" :fill="ajaxData.pL1dlq05 ? red : green" width="14.25"
- height="35.774"></rect>
- <rect x="660.255" y="645.885" :fill="ajaxData.pL1dlq06 ? red : green" width="14.25"
- height="35.774"></rect>
- <rect x="716.027" y="645.885" :fill="ajaxData.pL1dlq07 ? red : green" width="14.25"
- height="35.774"></rect>
- <rect x="782.277" y="645.885" :fill="ajaxData.pL1dlq08 ? red : green" width="14.25"
- height="35.774"></rect>
- <rect x="858.325" y="645.885" :fill="ajaxData.pL1dlq09 ? red : green" width="14.25"
- height="35.774"></rect>
- <rect x="924.575" y="645.885" :fill="ajaxData.pL1dlq10 ? red : green" width="14.25"
- height="35.774"></rect>
- <rect x="980.348" y="645.885" :fill="ajaxData.pL1dlq11 ? red : green" width="14.25"
- height="35.774"></rect>
- <rect x="1046.598" y="645.885" :fill="ajaxData.pL1dlq12 ? red : green" width="14.25"
- height="35.774"></rect>
- <rect x="1113.615" y="645.885" :fill="ajaxData.pL1dlq13 ? red : green" width="14.25"
- height="35.774"></rect>
- <rect x="1179.865" y="645.885" :fill="ajaxData.pL1dlq14 ? red : green" width="14.25"
- height="35.774"></rect>
- <rect x="1235.801" y="645.885" :fill="ajaxData.pL1dlq15 ? red : green" width="14.25"
- height="35.774"></rect>
- <rect x="1302.051" y="645.885" :fill="ajaxData.pL1dlq16 ? red : green" width="14.25"
- height="35.774"></rect>
- <rect x="1495.021" y="645.885" :fill="ajaxData.pL1dlq17 ? red : green" width="14.25"
- height="35.774"></rect>
- <rect x="1561.271" y="645.885" :fill="ajaxData.pL1dlq18 ? red : green" width="14.25"
- height="35.774"></rect>
- <rect x="1651.781" y="644.54" :fill="ajaxData.pL1dlq19 ? red : green" width="14.25"
- height="35.777"></rect>
- </g>
- <g id="block">
- <g>
- <polyline fill="none" :stroke="ajaxData.pl1sc310 ? red : green"
- stroke-miterlimit="10"
- points="579.348,162.623 572.523,170.344 565.504,162.623 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc310 ? red : green"
- stroke-miterlimit="10"
- points="579.348,156.773 572.523,164.491 565.504,156.773 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc310 ? red : green"
- stroke-miterlimit="10"
- points="565.504,120.33 572.327,112.608 579.348,120.33 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc310 ? red : green"
- stroke-miterlimit="10"
- points="565.504,125.107 572.327,117.385 579.348,125.107 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.pl1sc318 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1283.591,163.623 1276.768,171.344 1269.747,163.623 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc318 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1283.591,157.773 1276.768,165.491 1269.747,157.773 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc318 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1269.747,121.33 1276.572,113.608 1283.591,121.33 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc318 ? red : green" stroke-width="1.3"
- stroke-miterlimit="10"
- points="1269.747,126.107 1276.572,118.385 1283.591,126.107 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.pl1sc312 ? red : green"
- stroke-miterlimit="10"
- points="161.779,266.95 168.602,259.231 175.622,266.95 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc312 ? red : green"
- stroke-miterlimit="10"
- points="161.779,272.802 168.602,265.082 175.622,272.802 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc312 ? red : green"
- stroke-miterlimit="10"
- points="175.622,309.242 168.799,316.967 161.779,309.242 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc312 ? red : green"
- stroke-miterlimit="10"
- points="175.622,304.468 168.799,312.189 161.779,304.468 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.pl1sc313 ? red : green"
- stroke-miterlimit="10"
- points="425.779,266.95 432.602,259.231 439.621,266.95 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc313 ? red : green"
- stroke-miterlimit="10"
- points="425.779,272.802 432.602,265.082 439.621,272.802 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc313 ? red : green"
- stroke-miterlimit="10"
- points="439.621,309.242 432.799,316.967 425.779,309.242 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc313 ? red : green"
- stroke-miterlimit="10"
- points="439.621,304.468 432.799,312.189 425.779,304.468 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.pl1sc314 ? red : green"
- stroke-miterlimit="10"
- points="689.846,266.95 696.669,259.231 703.689,266.95 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc314 ? red : green"
- stroke-miterlimit="10"
- points="689.846,272.802 696.669,265.082 703.689,272.802 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc314 ? red : green"
- stroke-miterlimit="10"
- points="703.689,309.242 696.865,316.967 689.846,309.242 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc314 ? red : green"
- stroke-miterlimit="10"
- points="703.689,304.468 696.865,312.189 689.846,304.468 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.pl1sc315 ? red : green"
- stroke-miterlimit="10" points="954.167,266.95 960.99,259.231 968.01,266.95 ">
- </polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc315 ? red : green"
- stroke-miterlimit="10"
- points="954.167,272.802 960.99,265.082 968.01,272.802 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc315 ? red : green"
- stroke-miterlimit="10"
- points="968.01,309.242 961.188,316.967 954.167,309.242 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc315 ? red : green"
- stroke-miterlimit="10"
- points="968.01,304.468 961.188,312.189 954.167,304.468 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.pl1sc316 ? red : green"
- stroke-miterlimit="10"
- points="1268.453,266.95 1275.277,259.231 1282.297,266.95 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc316 ? red : green"
- stroke-miterlimit="10"
- points="1268.453,272.802 1275.277,265.082 1282.297,272.802 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc316 ? red : green"
- stroke-miterlimit="10"
- points="1282.297,309.242 1275.475,316.967 1268.453,309.242 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc316 ? red : green"
- stroke-miterlimit="10"
- points="1282.297,304.468 1275.475,312.189 1268.453,304.468 "></polyline>
- </g>
- <g>
- <polyline fill="none" :stroke="ajaxData.pl1sc317 ? red : green"
- stroke-miterlimit="10"
- points="1590.862,266.95 1597.686,259.231 1604.706,266.95 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc317 ? red : green"
- stroke-miterlimit="10"
- points="1590.862,272.802 1597.686,265.082 1604.706,272.802 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc317 ? red : green"
- stroke-miterlimit="10"
- points="1604.706,309.242 1597.881,316.967 1590.862,309.242 "></polyline>
- <polyline fill="none" :stroke="ajaxData.pl1sc317 ? red : green"
- stroke-miterlimit="10"
- points="1604.706,304.468 1597.881,312.189 1590.862,304.468 "></polyline>
- </g>
- </g>
- <g id="data">
- <g>
- <text transform="matrix(1 0 0 1 150.9871 155.4553)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- -.--
- </text>
- <text transform="matrix(1 0 0 1 150.9875 114.092)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- -.--
- </text>
- <text transform="matrix(1 0 0 1 150.9871 134.7874)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- -.--
- </text>
- <text transform="matrix(1 0 0 1 150.9871 175.9592)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- -.--
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 752.262 119.8499)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1laayt }}
- </text>
- <text transform="matrix(1 0 0 1 752.2615 139.5452)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1pkwyt }}
- </text>
- <text transform="matrix(1 0 0 1 752.2615 160.2112)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1qkvaryt }}
- </text>
- <text transform="matrix(1 0 0 1 752.2615 180.7151)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1cosyt }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1368.6311 109.6018)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1laawg }}
- </text>
- <text transform="matrix(1 0 0 1 1368.6311 129.2971)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1pkwwg }}
- </text>
- <text transform="matrix(1 0 0 1 1368.6311 149.9651)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1qkvarwg }}
- </text>
- <text transform="matrix(1 0 0 1 1368.6311 170.469)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1coswg }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 251.8352 278.092)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1blaacy }}
- </text>
- <text transform="matrix(1 0 0 1 251.8347 296.7874)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1bpcy }}
- </text>
- <text transform="matrix(1 0 0 1 251.8347 317.4553)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1bqcy }}
- </text>
- <text transform="matrix(1 0 0 1 251.8347 337.9592)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1bcoscy }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 519.3879 278.8108)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1laagf1 }}
- </text>
- <text transform="matrix(1 0 0 1 519.3875 297.5061)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1pkwgf1 }}
- </text>
- <text transform="matrix(1 0 0 1 519.3875 318.1741)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1qkvargf1 }}
- </text>
- <text transform="matrix(1 0 0 1 519.3875 338.678)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1cosgf1 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 778.0662 278.8108)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1laagf2 }}
- </text>
- <text transform="matrix(1 0 0 1 778.0657 297.5061)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1pkwgf2 }}
- </text>
- <text transform="matrix(1 0 0 1 778.0657 318.1741)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1qkvargf2 }}
- </text>
- <text transform="matrix(1 0 0 1 778.0657 338.678)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1cosgf2 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1053.7756 279.8147)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1laagf3 }}
- </text>
- <text transform="matrix(1 0 0 1 1053.7756 298.51)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1pkwgf3 }}
- </text>
- <text transform="matrix(1 0 0 1 1053.7756 319.176)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1qkvargf3 }}
- </text>
- <text transform="matrix(1 0 0 1 1053.7756 339.6799)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1cosgf3 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1360.9846 279.8147)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1laagf4 }}
- </text>
- <text transform="matrix(1 0 0 1 1360.9846 298.51)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1pkwgf4 }}
- </text>
- <text transform="matrix(1 0 0 1 1360.9846 319.176)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1qkvargf4 }}
- </text>
- <text transform="matrix(1 0 0 1 1360.9846 339.6799)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1cosgf4 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1700.4709 277.8147)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1laagf5 }}
- </text>
- <text transform="matrix(1 0 0 1 1700.4709 298.51)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1pkwgf5 }}
- </text>
- <text transform="matrix(1 0 0 1 1700.4709 319.176)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1qkvargf5 }}
- </text>
- <text transform="matrix(1 0 0 1 1700.4709 339.6799)" fill="#3B8646"
- font-family="'MicrosoftYaHei'" font-size="9.463">
- {{ ajaxData.pl1cosgf5 }}
- </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 319.9377 772.4983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1srdy01 }}
- </text>
- <text transform="matrix(1 0 0 1 387.1877 772.4983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1srdy02 }}
- </text>
- <text transform="matrix(1 0 0 1 441.9602 772.4983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1srdy03 }}
- </text>
- <text transform="matrix(1 0 0 1 509.2102 772.4983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1srdy04 }}
- </text>
- <text transform="matrix(1 0 0 1 585.7434 772.4983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1srdy05 }}
- </text>
- <text transform="matrix(1 0 0 1 652.9934 772.4983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1srdy06 }}
- </text>
- <text transform="matrix(1 0 0 1 711.7659 772.4983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1srdy07 }}
- </text>
- <text transform="matrix(1 0 0 1 779.0159 772.4983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1srdy08 }}
- </text>
- <text transform="matrix(1 0 0 1 850.4915 772.4983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1srdy09 }}
- </text>
- <text transform="matrix(1 0 0 1 917.7415 772.4983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1srdy10 }}
- </text>
- <text transform="matrix(1 0 0 1 976.5139 772.4983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1srdy11 }}
- </text>
- <text transform="matrix(1 0 0 1 1039.7639 772.4983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1srdy12 }}
- </text>
- <text transform="matrix(1 0 0 1 1107.2639 772.4983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1srdy13 }}
- </text>
- <text transform="matrix(1 0 0 1 1175.7639 772.4983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1srdy14 }}
- </text>
- <text transform="matrix(1 0 0 1 1239.7639 772.4983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1srdy15 }}
- </text>
- <text transform="matrix(1 0 0 1 1298.7639 772.4983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1srdy16 }}
- </text>
- <text transform="matrix(1 0 0 1 1496.7639 772.4983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1srdy17 }}
- </text>
- <text transform="matrix(1 0 0 1 1557.7639 772.4983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1srdy18 }}
- </text>
- <text transform="matrix(1 0 0 1 1651.2639 772.4983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1srdy19 }}
- </text>
- <text transform="matrix(1 0 0 1 319.9377 824.9983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1scgl01 }}
- </text>
- <text transform="matrix(1 0 0 1 387.1877 824.9983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1scgl02 }}
- </text>
- <text transform="matrix(1 0 0 1 441.9602 824.9983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1scgl03 }}
- </text>
- <text transform="matrix(1 0 0 1 509.2102 824.9983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1scgl04 }}
- </text>
- <text transform="matrix(1 0 0 1 585.7434 824.9983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1scgl05 }}
- </text>
- <text transform="matrix(1 0 0 1 652.9934 824.9983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1scgl06 }}
- </text>
- <text transform="matrix(1 0 0 1 711.7659 824.9983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1scgl07 }}
- </text>
- <text transform="matrix(1 0 0 1 779.0159 824.9983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1scgl08 }}
- </text>
- <text transform="matrix(1 0 0 1 850.4915 824.9983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1scgl09 }}
- </text>
- <text transform="matrix(1 0 0 1 917.7415 824.9983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1scgl10 }}
- </text>
- <text transform="matrix(1 0 0 1 976.5139 824.9983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1scgl11 }}
- </text>
- <text transform="matrix(1 0 0 1 1039.7639 824.9983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1scgl12 }}
- </text>
- <text transform="matrix(1 0 0 1 1107.2639 824.9983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1scgl13 }}
- </text>
- <text transform="matrix(1 0 0 1 1175.7639 824.9983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1scgl14 }}
- </text>
- <text transform="matrix(1 0 0 1 1239.7639 824.9983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1scgl15 }}
- </text>
- <text transform="matrix(1 0 0 1 1298.7639 824.9983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1scgl16 }}
- </text>
- <text transform="matrix(1 0 0 1 1496.7639 824.9983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1scgl17 }}
- </text>
- <text transform="matrix(1 0 0 1 1557.7639 824.9983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1scgl18 }}
- </text>
- <text transform="matrix(1 0 0 1 1651.2639 824.9983)" fill="#FFFFFF"
- font-family="'MicrosoftYaHei'" font-size="11.6452">
- {{ ajaxData.pl1scgl19 }}
- </text>
- </g>
- </g>
- </svg>
- </template>
- </previewPicture>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import previewPicture from "../previewPicture.vue";
- import {BoosterStation} from "./BoosterStation";
- import $ from "jquery";
- export default {
- components: {
- previewPicture,
- },
- data() {
- return {
- green: "#02A434",
- red: "#FF0000",
- ajaxData: {},
- interval: "",
- };
- },
- created() {
- this.boosterStation = new BoosterStation();
- this.refreshTPData();
- this.interval = setInterval(this.refreshTPData, 1000);
- },
- mounted() {
- this.$nextTick(() => {
- if (this.$store.state.themeName === "light") {
- for (let i = 0; i < $('#other text').length; i++) {
- let that = $('#other text').eq(i);
- let fill = that.attr('fill');
- let txt = parseInt(that.text());//数字转整数
- let bracket = that.text().indexOf('(');//判断是否包含(
- let zn = /.*[\u4e00-\u9fa5]+.*$/.test(that.text()); //判断是否包含中文
- if (fill === '#FFFFFF' && !isNaN(txt) && !zn) {
- that.attr('fill', '#000');
- }
- else if(fill === '#FFFFFF' && bracket != -1){
- that.attr('fill', '#000');
- }
- }
- for (let i = 0; i < $('#data text').length; i++) {
- let that = $('#data text').eq(i);
- let fill = that.attr('fill');
- if (fill === '#3B8646') {
- that.attr('fill', '#FFFFFF');
- }else{
- that.attr('fill', '#000');
- }
- }
- }
- })
- },
- methods: {
- closed() {
- clearInterval(this.interval);
- },
- refreshTPData() {
- this.boosterStation.getDatas("PL1_GDC", this.bindValue);
- },
- bindValue(msg) {
- this.ajaxData = msg;
- },
- },
- };
- </script>
- <style scoped>
- .center-bar {
- position: relative;
- box-sizing: border-box;
- height: 90vh;
- background-color: #000000;
- padding-top: 10px;
- padding-left: 5px;
- padding-right: 5px;
- padding-bottom: 5px;
- margin-top: 0;
- margin-right: 0;
- margin-bottom: 3px;
- margin-left: 0;
- display: flex;
- flex-direction: column;
- }
- .svg {
- margin-left: 5%;
- width: 90%;
- height: 90%;
- }
- .light #other line[stroke="#FFFFFF"]{
- stroke:#000000;
- }
- .light #other rect[stroke="#F7F8F8"]{
- stroke:#000000;
- }
- .light #other text[fill="#FFFFFF"][font-size="11.6452"]{
- fill:#000000;
- }
- </style>
|