123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050 |
- <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.0"
- id="图层_1"
- x="0px"
- y="0px"
- width="1755.701px"
- height="853.164px"
- viewBox="0 0 1755.701 853.164"
- enable-background="new 0 0 1755.701 853.164"
- xml:space="preserve"
- >
- <g xmlns="http://www.w3.org/2000/svg" id="other">
- <g>
- <rect x="1075.391" opacity="0.9" fill="#162320" enable-background="new " width="108.762" height="18.488"/>
- <rect x="1075.391" y="20.497" opacity="0.9" fill="#162320" enable-background="new " width="108.762" height="18.488"/>
- <rect x="1075.391" y="40.992" opacity="0.9" fill="#162320" enable-background="new " width="108.762" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 1094.1143 13.9502)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> la </text>
- <text transform="matrix(1 0 0 1 1103.4404 13.9502)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="9.6234"> (A) </text>
- <text transform="matrix(1 0 0 1 1116.6396 13.9502)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1078.2119 32.3096)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> P(MVar): </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1078.1885 54.5947)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> Q(MVar): </text>
- </g>
- <rect x="1075.391" y="61.482" opacity="0.9" fill="#162320" enable-background="new " width="108.762" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 1084.6885 73.2959)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ux </text>
- <text transform="matrix(1 0 0 1 1098.4658 73.2959)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 1116.6396 73.2959)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="1075.391" y="82.089" opacity="0.9" fill="#162320" enable-background="new " width="108.762" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 1089.4717 93.9023)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> F </text>
- <text transform="matrix(1 0 0 1 1098.4658 93.9023)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="9.6234"> (Hz) </text>
- <text transform="matrix(1 0 0 1 1116.6396 93.9023)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="1075.391" y="101.989" opacity="0.9" fill="#162320" enable-background="new " width="108.762" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 1093.165 115.9297)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> COSΦ: </text>
- </g>
- </g>
- <g>
- <rect x="223.104" y="273.91" opacity="0.9" fill="#162320" enable-background="new " width="108.761" height="18.488"/>
- <rect x="223.104" y="294.407" opacity="0.9" fill="#162320" enable-background="new " width="108.761" height="18.488"/>
- <rect x="223.104" y="314.902" opacity="0.9" fill="#162320" enable-background="new " width="108.761" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 241.8281 287.8604)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> la </text>
- <text transform="matrix(1 0 0 1 251.1543 287.8604)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="9.6234"> (A) </text>
- <text transform="matrix(1 0 0 1 264.3535 287.8604)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 225.9258 306.2197)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> P(MVar): </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 225.9023 328.5049)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> Q(MVar): </text>
- </g>
- <rect x="223.104" y="335.393" opacity="0.9" fill="#162320" enable-background="new " width="108.761" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 240.8789 349.333)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> COS: </text>
- </g>
- </g>
- <g>
- <rect x="223.104" y="432.944" opacity="0.9" fill="#162320" enable-background="new " width="108.761" height="18.487"/>
- <rect x="223.104" y="453.441" opacity="0.9" fill="#162320" enable-background="new " width="108.761" height="18.487"/>
- <rect x="223.104" y="473.937" opacity="0.9" fill="#162320" enable-background="new " width="108.761" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 241.8281 446.8945)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> la </text>
- <text transform="matrix(1 0 0 1 251.1543 446.8945)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="9.6234"> (A) </text>
- <text transform="matrix(1 0 0 1 264.3535 446.8945)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 225.9258 465.2539)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> P(MVar): </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 225.9023 487.5391)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> Q(MVar): </text>
- </g>
- <rect x="223.104" y="494.427" opacity="0.9" fill="#162320" enable-background="new " width="108.761" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 240.8789 508.3672)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> COS: </text>
- </g>
- </g>
- <g>
- <rect x="1282.632" y="273.91" opacity="0.9" fill="#162320" enable-background="new " width="108.76" height="18.488"/>
- <rect x="1282.632" y="294.407" opacity="0.9" fill="#162320" enable-background="new " width="108.76" height="18.488"/>
- <rect x="1282.632" y="314.902" opacity="0.9" fill="#162320" enable-background="new " width="108.76" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 1301.3555 287.8604)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> la </text>
- <text transform="matrix(1 0 0 1 1310.6816 287.8604)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="9.6234"> (A) </text>
- <text transform="matrix(1 0 0 1 1323.8809 287.8604)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1285.4531 306.2197)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> P(MVar): </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1285.4297 328.5049)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> Q(MVar): </text>
- </g>
- <rect x="1282.632" y="335.393" opacity="0.9" fill="#162320" enable-background="new " width="108.76" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 1300.4063 349.333)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> COS: </text>
- </g>
- </g>
- <g>
- <rect x="1282.632" y="432.944" opacity="0.9" fill="#162320" enable-background="new " width="108.76" height="18.487"/>
- <rect x="1282.632" y="453.441" opacity="0.9" fill="#162320" enable-background="new " width="108.76" height="18.487"/>
- <rect x="1282.632" y="473.937" opacity="0.9" fill="#162320" enable-background="new " width="108.76" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 1301.3555 446.8945)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> la </text>
- <text transform="matrix(1 0 0 1 1310.6816 446.8945)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="9.6234"> (A) </text>
- <text transform="matrix(1 0 0 1 1323.8809 446.8945)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1285.4531 465.2539)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> P(MVar): </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1285.4297 487.5391)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> Q(MVar): </text>
- </g>
- <rect x="1282.632" y="494.427" opacity="0.9" fill="#162320" enable-background="new " width="108.76" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 1300.4063 508.3672)" fill="#96A0A1" font-family="'MicrosoftYaHei'" font-size="11.3899"> COS: </text>
- </g>
- </g>
- <g>
- <rect x="881.479" y="122.963" fill="#971C55" width="3.048" height="66.809"/>
- <rect x="881.479" y="211.688" fill="#971C55" width="3.048" height="10.833"/>
- <text transform="matrix(1 0 0 1 953.1416 92.0361)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 111-0 </text>
- <text transform="matrix(1 0 0 1 899.7881 113.8691)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 111-3 </text>
- <text transform="matrix(1 0 0 1 899.7881 159.6191)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 111 </text>
- <text transform="matrix(1 0 0 1 899.7881 207.084)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 111-1 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="966.777" y1="71.52" x2="966.777" y2="59.219"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="958.314" y1="65.369" x2="966.777" y2="65.369"/>
-
- <line fill="none" stroke="#971C55" stroke-width="2.5" stroke-miterlimit="10" x1="953.664" y1="65.369" x2="958.473" y2="65.369"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="970.164" y1="68.98" x2="970.164" y2="61.758"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="973.549" y1="67.568" x2="973.549" y2="63.17"/>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 774.665 135.5605)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 111-03 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="829.987" y1="127.071" x2="829.987" y2="139.37"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="838.448" y1="133.223" x2="829.987" y2="133.223"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="826.599" y1="129.61" x2="826.599" y2="136.831"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="823.215" y1="131.021" x2="823.215" y2="135.421"/>
- </g>
- </g>
- <rect x="882.495" y="29.457" fill="#971C55" width="3.047" height="70.394"/>
- <rect x="884.337" y="63.846" fill="#971C55" width="21.158" height="3.047"/>
- <rect x="903.972" y="54.79" fill="#971C55" width="3.047" height="21.158"/>
- <rect x="911.438" y="54.79" fill="#971C55" width="3.047" height="21.158"/>
- <rect x="912.961" y="63.846" fill="#971C55" width="32.713" height="3.047"/>
- <rect x="944.151" y="54.79" fill="#971C55" width="3.047" height="21.158"/>
- <rect x="927.795" y="49.851" fill="#971C55" width="3.047" height="14.508"/>
- <rect x="951.618" y="54.79" fill="#971C55" width="3.047" height="21.158"/>
- <rect x="884.019" y="86.871" fill="#971C55" width="21.158" height="3.047"/>
- <rect x="860.569" y="132.077" fill="#971C55" width="21.157" height="3.047"/>
- <polygon fill="#971C55" points="877.907,30.184 884.025,17.164 890.13,30.188 "/>
- <g>
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" cx="929.636" cy="41.047" r="8.804"/>
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" cx="921.907" cy="27.77" r="8.804"/>
- <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" points="932.786,45.075 929.62,41.943 926.669,45.075 "/>
-
- <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" x1="929.554" y1="41.86" x2="929.554" y2="36.339"/>
- <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" points="925.06,32.138 921.894,29.006 918.942,32.138 "/>
-
- <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" x1="921.827" y1="28.923" x2="921.827" y2="23.401"/>
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" cx="936.728" cy="27.769" r="8.803"/>
- <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" points="939.88,32.138 936.714,29.006 933.763,32.138 "/>
-
- <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" x1="936.647" y1="28.923" x2="936.647" y2="23.401"/>
- </g>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="936.66" y1="95.883" x2="936.66" y2="83.584"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="928.197" y1="89.734" x2="936.66" y2="89.734"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="940.048" y1="93.345" x2="940.048" y2="86.123"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="943.433" y1="91.934" x2="943.433" y2="87.535"/>
- </g>
- </g>
- <text transform="matrix(1 0 0 1 953.1416 182.2773)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 111-01 </text>
- <rect x="884.019" y="177.112" fill="#971C55" width="21.158" height="3.047"/>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="936.66" y1="186.124" x2="936.66" y2="173.825"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="928.197" y1="179.976" x2="936.66" y2="179.976"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="940.048" y1="183.586" x2="940.048" y2="176.364"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="943.433" y1="182.175" x2="943.433" y2="177.776"/>
- </g>
- </g>
- </g>
- <g>
- <rect x="8.158" y="83.059" opacity="0.9" fill="#162320" enable-background="new " width="115.11" height="18.491"/>
- <rect x="8.158" y="103.556" opacity="0.9" fill="#162320" enable-background="new " width="115.11" height="18.49"/>
- <rect x="8.158" y="124.052" opacity="0.9" fill="#162320" enable-background="new " width="115.11" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 25.1016 97.0088)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ua </text>
- <text transform="matrix(1 0 0 1 39.9004 97.0088)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 58.0767 97.0088)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 24.1226 115.3691)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ub </text>
- <text transform="matrix(1 0 0 1 39.9004 115.3691)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 58.0757 115.3691)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 25.6855 137.6553)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uc </text>
- <text transform="matrix(1 0 0 1 39.9004 137.6553)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 58.0767 137.6553)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="8.158" y="144.364" opacity="0.9" fill="#162320" enable-background="new " width="115.11" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 23.2778 157.9678)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> 3U0 </text>
- <text transform="matrix(1 0 0 1 45.1396 157.9678)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (V) </text>
- <text transform="matrix(1 0 0 1 58.0757 157.9678)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- </g>
- <g>
- <rect x="8.158" y="444.174" opacity="0.9" fill="#162320" enable-background="new " width="115.11" height="18.491"/>
- <rect x="8.158" y="464.671" opacity="0.9" fill="#162320" enable-background="new " width="115.11" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 25.1016 458.124)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ua </text>
- <text transform="matrix(1 0 0 1 39.9004 458.124)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 58.0767 458.124)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 24.1226 476.4844)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ub </text>
- <text transform="matrix(1 0 0 1 39.9004 476.4844)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 58.0757 476.4844)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="8.158" y="485.209" opacity="0.9" fill="#162320" enable-background="new " width="115.11" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 23.2778 498.8115)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> 3U0 </text>
- <text transform="matrix(1 0 0 1 45.1396 498.8115)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (V) </text>
- <text transform="matrix(1 0 0 1 58.0757 498.8115)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- </g>
- <g>
- <rect x="228.825" y="110.965" opacity="0.9" fill="#162320" enable-background="new " width="115.109" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 238.4941 124.9063)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uab </text>
- <text transform="matrix(1 0 0 1 260.5679 124.9063)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 278.7432 124.9063)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="228.825" y="131.465" opacity="0.9" fill="#162320" enable-background="new " width="115.109" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 239.0781 145.4063)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ubc </text>
- <text transform="matrix(1 0 0 1 260.5679 145.4063)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 278.7432 145.4063)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="228.825" y="151.965" opacity="0.9" fill="#162320" enable-background="new " width="115.109" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 240.0571 165.9063)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uca </text>
- <text transform="matrix(1 0 0 1 260.5679 165.9063)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 278.7432 165.9063)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- </g>
- <g>
- <rect x="928.197" y="446.289" opacity="0.9" fill="#162320" enable-background="new " width="115.109" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 937.8662 460.2295)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Uab </text>
- <text transform="matrix(1 0 0 1 959.9404 460.2295)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 978.1152 460.2295)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="928.197" y="466.789" opacity="0.9" fill="#162320" enable-background="new " width="115.109" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 938.4502 480.7295)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> Ubc </text>
- <text transform="matrix(1 0 0 1 959.9404 480.7295)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (kV) </text>
- <text transform="matrix(1 0 0 1 978.1152 480.7295)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- <rect x="928.197" y="487.289" opacity="0.9" fill="#162320" enable-background="new " width="115.109" height="18.49"/>
- <g>
- <text transform="matrix(1 0 0 1 943.3174 501.2295)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> 3U0 </text>
- <text transform="matrix(1 0 0 1 965.1787 501.2295)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="9.6234"> (V) </text>
- <text transform="matrix(1 0 0 1 978.1143 501.2295)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="11.3899"> : </text>
- </g>
- </g>
- <text transform="matrix(0.9268 0 0 1 11.1357 211.6885)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.1235"> 110kV Ⅰ母线 </text>
- <g>
- <rect x="635.38" y="435.406" opacity="0.9" fill="#162320" enable-background="new " width="127.703" height="17.293"/>
- <rect x="635.38" y="454.575" opacity="0.9" fill="#162320" enable-background="new " width="127.703" height="17.293"/>
- <rect x="635.38" y="473.743" opacity="0.9" fill="#162320" enable-background="new " width="127.703" height="17.293"/>
- <g>
- <text transform="matrix(1 0 0 1 638.4219 447.6299)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="10.652"> 油面温度(℃): </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 638.4229 466.6299)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="10.652"> 绕阻温度(℃): </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 680.0576 486.8799)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="10.652"> 挡位 </text>
- </g>
- </g>
- <g>
- <rect x="1613.259" y="432.892" opacity="0.9" fill="#162320" enable-background="new " width="127.703" height="17.293"/>
- <rect x="1613.259" y="452.061" opacity="0.9" fill="#162320" enable-background="new " width="127.703" height="17.294"/>
- <rect x="1613.259" y="471.229" opacity="0.9" fill="#162320" enable-background="new " width="127.703" height="17.293"/>
- <g>
- <text transform="matrix(1 0 0 1 1616.3008 445.1152)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="10.652"> 油面温度(℃): </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1616.3027 464.1152)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="10.652"> 绕阻温度(℃): </text>
- </g>
- <g>
- <text transform="matrix(1 0 0 1 1657.9375 484.3652)" fill="#97A1A2" font-family="'MicrosoftYaHei'" font-size="10.652"> 挡位 </text>
- </g>
- </g>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="984.408" y1="276.369" x2="984.408" y2="288.67"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="992.871" y1="282.52" x2="984.408" y2="282.52"/>
-
- <line fill="none" stroke="#971C55" stroke-width="2.5" stroke-miterlimit="10" x1="1005.638" y1="282.52" x2="992.713" y2="282.52"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="981.021" y1="278.908" x2="981.021" y2="286.131"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="977.637" y1="280.32" x2="977.637" y2="284.719"/>
- </g>
- <rect x="1052.283" y="271.94" fill="#971C55" width="3.047" height="21.158"/>
- <rect x="1044.817" y="271.94" fill="#971C55" width="3.047" height="21.158"/>
- <rect x="1013.627" y="280.996" fill="#971C55" width="32.714" height="3.047"/>
- <rect x="1012.104" y="271.94" fill="#971C55" width="3.047" height="21.158"/>
- <rect x="1004.637" y="271.94" fill="#971C55" width="3.047" height="21.158"/>
- <text transform="matrix(1 0 0 1 1027.8916 262.0195)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 11-9 </text>
- <text transform="matrix(1 0 0 1 1113.8916 305.0195)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 11-09 </text>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1125.76" y1="289.798" x2="1125.76" y2="277.499"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1117.297" y1="283.649" x2="1125.76" y2="283.649"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1129.147" y1="287.26" x2="1129.147" y2="280.038"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1132.533" y1="285.849" x2="1132.533" y2="281.45"/>
- </g>
- </g>
- <rect x="485.419" y="270.247" fill="#971C55" width="3.047" height="66.809"/>
- <rect x="485.419" y="361.94" fill="#971C55" width="3.047" height="33.404"/>
- <text transform="matrix(1 0 0 1 557.0811 239.7754)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 102-0 </text>
- <text transform="matrix(1 0 0 1 498.5371 263.7754)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 102-1 </text>
- <text transform="matrix(1 0 0 1 503.7275 306.2197)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 102 </text>
- <text transform="matrix(1 0 0 1 503.7275 354.4512)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 102-3 </text>
- <g>
- <text transform="matrix(1 0 0 1 378.6045 283.5195)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 102-01 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="433.927" y1="275.03" x2="433.927" y2="287.329"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="442.388" y1="281.182" x2="433.927" y2="281.182"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="430.538" y1="277.569" x2="430.538" y2="284.79"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="427.154" y1="278.979" x2="427.154" y2="283.38"/>
- </g>
- </g>
- <rect x="486.435" y="224.289" fill="#971C55" width="3.048" height="23.437"/>
- <rect x="487.958" y="234.61" fill="#971C55" width="21.158" height="3.047"/>
- <rect x="1074.376" y="270.247" fill="#971C55" width="3.047" height="11.313"/>
- <rect x="1075.391" y="224.289" fill="#971C55" width="3.048" height="23.437"/>
- <rect x="464.509" y="280.036" fill="#971C55" width="21.158" height="3.047"/>
- <g>
- <text transform="matrix(1 0 0 1 379.6045 374.4404)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 102-03 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="434.927" y1="365.951" x2="434.927" y2="378.25"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="443.388" y1="372.103" x2="434.927" y2="372.103"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="431.538" y1="368.49" x2="431.538" y2="375.711"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="428.154" y1="369.9" x2="428.154" y2="374.301"/>
- </g>
- </g>
- <rect x="465.509" y="369.434" fill="#971C55" width="21.158" height="3.047"/>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="540.6" y1="243.622" x2="540.6" y2="231.323"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="532.137" y1="237.474" x2="540.6" y2="237.474"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="543.987" y1="241.084" x2="543.987" y2="233.862"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="547.372" y1="239.673" x2="547.372" y2="235.274"/>
- </g>
- </g>
- <text transform="matrix(1 0 0 1 557.0811 330.3184)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 102-02 </text>
- <rect x="487.958" y="325.153" fill="#971C55" width="21.158" height="3.047"/>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="540.6" y1="334.165" x2="540.6" y2="321.866"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="532.137" y1="328.017" x2="540.6" y2="328.017"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="543.987" y1="331.627" x2="543.987" y2="324.405"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="547.372" y1="330.216" x2="547.372" y2="325.817"/>
- </g>
- </g>
- <rect x="11.136" y="221.938" fill="#971C55" width="1744.565" height="2.25"/>
-
- <rect x="492.005" y="382.606" transform="matrix(-0.3454 -0.9385 0.9385 -0.3454 275.8579 1017.3743)" fill="#A9165D" width="1.504" height="59.742"/>
-
- <rect x="511.086" y="405.997" transform="matrix(0.4801 -0.8772 0.8772 0.4801 -108.8342 671.481)" fill="#CAA51A" width="1.943" height="43.116"/>
- <polygon fill="#A9165D" points="518.153,396.753 532.623,397.198 523.033,408.043 "/>
- <rect x="528.912" y="437.227" fill="#CAA51A" width="2.604" height="18.126"/>
- <rect x="528.912" y="477.22" fill="#3EB9B0" width="2.604" height="4.478"/>
- <g>
-
- <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="523.956" y1="482.688" x2="536.474" y2="482.688"/>
-
- <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="526.127" y1="486.007" x2="534.303" y2="486.007"/>
-
- <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="527.913" y1="489.511" x2="532.517" y2="489.511"/>
- </g>
- <polygon fill="#CAA51A" points="533.46,455.245 530.212,464.476 526.969,455.243 "/>
-
- <rect x="525.101" y="445.521" fill="none" stroke="#CAA51A" stroke-width="2" stroke-miterlimit="10" width="10.229" height="32.14"/>
- <rect x="1074.087" y="283.52" fill="#971C55" width="2.605" height="21.609"/>
- <rect x="1074.087" y="326.996" fill="#3EB9B0" width="2.605" height="4.477"/>
- <g>
-
- <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="1069.132" y1="332.464" x2="1081.649" y2="332.464"/>
-
- <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="1071.302" y1="335.783" x2="1079.478" y2="335.783"/>
-
- <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="1073.089" y1="339.287" x2="1077.692" y2="339.287"/>
- </g>
- <polygon fill="#971C55" points="1078.636,305.021 1075.388,314.252 1072.144,305.02 "/>
-
- <rect x="1070.276" y="295.298" fill="none" stroke="#971C55" stroke-width="2" stroke-miterlimit="10" width="10.229" height="32.139"/>
- <g>
- <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="488.429" cy="424.016" r="11.213"/>
- <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="488.431" cy="405.558" r="11.213"/>
- <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="484.416,429.147 488.449,425.159 492.207,429.147 "/>
-
- <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="488.533" y1="425.053" x2="488.533" y2="418.021"/>
- <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="484.416,411.121 488.449,407.132 492.207,411.121 "/>
-
- <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="488.533" y1="407.027" x2="488.533" y2="399.994"/>
- <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="503.889" cy="414.723" r="11.212"/>
- <polygon fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="501.651,418.875 501.651,410.571 508.499,414.949 "/>
- </g>
- <rect x="484.961" y="516.904" fill="#CAA51A" width="2.25" height="29.32"/>
- <rect x="484.961" y="435.332" fill="#CAA51A" width="2.25" height="25.375"/>
- <g>
- <rect x="552.836" y="400.162" fill="#44426C" width="72.314" height="20.818"/>
- <text transform="matrix(1 0 0 1 568.7319 414.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> #2主变 </text>
- </g>
- <g>
- <rect x="1044.349" y="356.452" fill="#44426C" width="72.314" height="20.818"/>
- <text transform="matrix(1 0 0 1 1049.4385 371.0049)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 110母线PT </text>
- </g>
- <g>
- <rect x="1617.388" y="398.718" fill="#44426C" width="72.314" height="20.818"/>
- <text transform="matrix(1 0 0 1 1633.2832 413.2705)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> #1主变 </text>
- </g>
- <rect x="1053.808" y="280.997" fill="#971C55" width="41.374" height="3.047"/>
- <polyline fill="#971C55" points="1000.049,283.406 1000.049,313.686 998.065,313.686 998.065,283.406 "/>
- <polyline fill="#971C55" points="1033.881,284.406 1033.881,305.264 1031.897,305.264 1031.897,284.406 "/>
- <rect x="998.317" y="312.33" fill="#971C55" width="25.192" height="1.982"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" cx="1039.536" cy="326.589" r="8.804"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" cx="1024.259" cy="326.589" r="8.804"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" points="1036.386,322.563 1039.552,325.693 1042.503,322.563 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" x1="1039.618" y1="325.776" x2="1039.618" y2="331.298"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" cx="1039.536" cy="341.102" r="8.804"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" cx="1024.259" cy="341.102" r="8.804"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" points="1036.386,337.075 1039.552,340.206 1042.503,337.075 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" x1="1039.618" y1="340.289" x2="1039.618" y2="345.811"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" points="1021.106,336.734 1024.272,339.867 1027.224,336.734 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" x1="1024.34" y1="339.95" x2="1024.34" y2="345.471"/>
- <circle fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" cx="1031.455" cy="313.77" r="8.803"/>
- <polyline fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" points="1028.304,309.4 1031.47,312.533 1034.42,309.4 "/>
-
- <line fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" x1="1031.535" y1="312.615" x2="1031.535" y2="318.138"/>
- <polygon fill="none" stroke="#A01A59" stroke-width="1.2" stroke-miterlimit="10" points="1025.34,330.646 1025.34,324.128 1019.965,327.563 "/>
- <rect x="406.2" y="404.569" fill="#971C55" width="69.888" height="3.049"/>
- <rect x="406.2" y="404.569" fill="#971C55" width="3.047" height="17.438"/>
- <text transform="matrix(1 0 0 1 448.0142 487.5391)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 302 </text>
- <text transform="matrix(1 0 0 1 360.5142 442.1885)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 021-0 </text>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="402.718" y1="453.743" x2="415.017" y2="453.743"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="408.868" y1="445.278" x2="408.868" y2="453.743"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="405.257" y1="457.127" x2="412.478" y2="457.127"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="406.667" y1="460.512" x2="411.068" y2="460.512"/>
- </g>
- </g>
- <rect x="433.24" y="404.362" fill="#971C55" width="2.604" height="21.637"/>
- <rect x="433.24" y="444.864" fill="#40B0A7" width="2.604" height="4.479"/>
- <g>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="428.283" y1="450.334" x2="440.801" y2="450.334"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="430.455" y1="453.651" x2="438.631" y2="453.651"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="432.24" y1="457.155" x2="436.844" y2="457.155"/>
- </g>
- <rect x="456.279" y="445.305" fill="#40B0A7" width="2.604" height="4.479"/>
- <g>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="451.323" y1="450.772" x2="463.84" y2="450.772"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="453.494" y1="454.092" x2="461.669" y2="454.092"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="455.28" y1="457.596" x2="459.883" y2="457.596"/>
- </g>
- <polygon fill="#971C55" points="437.787,425.889 434.539,435.122 431.296,425.887 "/>
- <polygon fill="#971C55" points="449.959,445.264 457.588,432.118 465.203,445.267 "/>
- <rect x="456.279" y="407.815" fill="#971C55" width="2.604" height="4.479"/>
- <polygon fill="#971C55" points="465.203,412.335 457.574,425.479 449.959,412.332 "/>
-
- <rect x="429.428" y="416.168" fill="none" stroke="#A01A59" stroke-width="2.3" stroke-miterlimit="10" width="10.229" height="29.14"/>
- <rect x="1551.164" y="270.247" fill="#971C55" width="3.047" height="66.809"/>
- <rect x="1551.164" y="361.94" fill="#971C55" width="3.047" height="33.404"/>
- <text transform="matrix(1 0 0 1 1622.8262 239.7754)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 101-0 </text>
- <text transform="matrix(1 0 0 1 1564.2813 263.7754)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 101-1 </text>
- <text transform="matrix(1 0 0 1 1569.4727 306.2197)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 101 </text>
- <text transform="matrix(1 0 0 1 1569.4727 354.4512)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 101-3 </text>
- <g>
- <text transform="matrix(1 0 0 1 1444.3496 283.5195)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 101-01 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1499.671" y1="275.03" x2="1499.671" y2="287.329"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1508.132" y1="281.182" x2="1499.671" y2="281.182"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1496.282" y1="277.569" x2="1496.282" y2="284.79"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1492.899" y1="278.979" x2="1492.899" y2="283.38"/>
- </g>
- </g>
- <rect x="1552.179" y="224.289" fill="#971C55" width="3.047" height="23.437"/>
- <rect x="1553.702" y="234.61" fill="#971C55" width="21.158" height="3.047"/>
- <rect x="1530.253" y="280.036" fill="#971C55" width="21.158" height="3.047"/>
- <g>
- <text transform="matrix(1 0 0 1 1445.3496 374.4404)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 101-03 </text>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1500.671" y1="365.951" x2="1500.671" y2="378.25"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1509.132" y1="372.103" x2="1500.671" y2="372.103"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1497.282" y1="368.49" x2="1497.282" y2="375.711"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1493.899" y1="369.9" x2="1493.899" y2="374.301"/>
- </g>
- </g>
- <rect x="1531.253" y="369.434" fill="#971C55" width="21.158" height="3.047"/>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1606.345" y1="243.622" x2="1606.345" y2="231.323"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1597.882" y1="237.474" x2="1606.345" y2="237.474"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1609.731" y1="241.084" x2="1609.731" y2="233.862"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1613.116" y1="239.673" x2="1613.116" y2="235.274"/>
- </g>
- </g>
- <text transform="matrix(1 0 0 1 1622.8262 330.3184)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 101-02 </text>
- <rect x="1553.702" y="325.153" fill="#971C55" width="21.158" height="3.047"/>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1606.345" y1="334.165" x2="1606.345" y2="321.866"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1597.882" y1="328.017" x2="1606.345" y2="328.017"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1609.731" y1="331.627" x2="1609.731" y2="324.405"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1613.116" y1="330.216" x2="1613.116" y2="325.817"/>
- </g>
- </g>
-
- <rect x="1557.76" y="382.591" transform="matrix(-0.3454 -0.9385 0.9385 -0.3454 1709.7263 2017.5233)" fill="#A9165D" width="1.504" height="59.743"/>
-
- <rect x="1576.82" y="405.972" transform="matrix(0.4801 -0.8772 0.8772 0.4801 445.2793 1606.3535)" fill="#CAA51A" width="1.943" height="43.116"/>
- <polygon fill="#A9165D" points="1583.897,396.753 1598.367,397.198 1588.778,408.043 "/>
- <rect x="1594.657" y="437.227" fill="#CAA51A" width="2.604" height="18.126"/>
- <rect x="1594.657" y="477.22" fill="#3EB9B0" width="2.604" height="4.478"/>
- <g>
-
- <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="1589.7" y1="482.688" x2="1602.218" y2="482.688"/>
-
- <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="1591.872" y1="486.007" x2="1600.048" y2="486.007"/>
-
- <line fill="none" stroke="#3FAFA7" stroke-width="1.6" stroke-miterlimit="10" x1="1593.657" y1="489.511" x2="1598.261" y2="489.511"/>
- </g>
- <polygon fill="#CAA51A" points="1599.205,455.245 1595.956,464.476 1592.714,455.243 "/>
-
- <rect x="1590.845" y="445.521" fill="none" stroke="#CAA51A" stroke-width="2" stroke-miterlimit="10" width="10.229" height="32.14"/>
- <g>
- <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="1554.173" cy="424.016" r="11.213"/>
- <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="1554.176" cy="405.558" r="11.213"/>
- <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="1550.161,429.147 1554.193,425.159 1557.952,429.147 "/>
-
- <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="1554.277" y1="425.053" x2="1554.277" y2="418.021"/>
- <polyline fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="1550.161,411.121 1554.193,407.132 1557.952,411.121 "/>
-
- <line fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" x1="1554.277" y1="407.027" x2="1554.277" y2="399.994"/>
- <circle fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" cx="1569.634" cy="414.723" r="11.212"/>
- <polygon fill="none" stroke="#A9165D" stroke-width="2" stroke-miterlimit="10" points="1567.396,418.875 1567.396,410.571 1574.243,414.949 "/>
- </g>
- <rect x="1550.706" y="516.904" fill="#CAA51A" width="2.25" height="29.32"/>
- <rect x="1550.706" y="435.332" fill="#CAA51A" width="2.25" height="25.375"/>
- <rect x="1471.944" y="404.569" fill="#971C55" width="69.889" height="3.049"/>
- <rect x="1471.944" y="404.569" fill="#971C55" width="3.047" height="17.438"/>
- <text transform="matrix(1 0 0 1 1512.7617 485.2793)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 301 </text>
- <text transform="matrix(1 0 0 1 1430.2617 440.6514)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 011-0 </text>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1468.463" y1="453.743" x2="1480.762" y2="453.743"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1474.612" y1="445.278" x2="1474.612" y2="453.743"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1471.001" y1="457.127" x2="1478.223" y2="457.127"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1472.411" y1="460.512" x2="1476.813" y2="460.512"/>
- </g>
- </g>
- <rect x="1498.984" y="404.362" fill="#971C55" width="2.604" height="21.637"/>
- <rect x="1498.984" y="444.864" fill="#40B0A7" width="2.604" height="4.479"/>
- <g>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1494.027" y1="450.334" x2="1506.546" y2="450.334"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1496.2" y1="453.651" x2="1504.376" y2="453.651"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1497.984" y1="457.155" x2="1502.589" y2="457.155"/>
- </g>
- <rect x="1522.022" y="445.305" fill="#40B0A7" width="2.605" height="4.479"/>
- <g>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1517.067" y1="450.772" x2="1529.585" y2="450.772"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1519.239" y1="454.092" x2="1527.413" y2="454.092"/>
-
- <line fill="none" stroke="#41A8A0" stroke-width="1.6" stroke-miterlimit="10" x1="1521.024" y1="457.596" x2="1525.628" y2="457.596"/>
- </g>
- <polygon fill="#971C55" points="1503.532,425.889 1500.284,435.122 1497.04,425.887 "/>
- <polygon fill="#971C55" points="1515.704,445.264 1523.333,432.118 1530.948,445.267 "/>
- <rect x="1522.022" y="407.815" fill="#971C55" width="2.605" height="4.479"/>
- <polygon fill="#971C55" points="1530.948,412.335 1523.318,425.479 1515.704,412.332 "/>
-
- <rect x="1495.173" y="416.168" fill="none" stroke="#A01A59" stroke-width="2.3" stroke-miterlimit="10" width="10.229" height="29.14"/>
- <text transform="matrix(0.9268 0 0 1 11.1357 535.3135)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.1235"> 35kV Ⅱ母线 </text>
- <text transform="matrix(0.9268 0 0 1 932.5674 535.3135)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.1235"> 35kV Ⅰ母线 </text>
-
- <rect x="424.19" y="634.959" fill="none" stroke="#CAA51A" stroke-width="2" stroke-miterlimit="10" width="10.229" height="32.14"/>
-
- <rect x="1602.376" y="634.118" fill="none" stroke="#CAA51A" stroke-width="2" stroke-miterlimit="10" width="10.229" height="32.14"/>
- </g>
- <g>
- <rect x="1606.354" y="549.24" fill="#CAA51A" width="2.25" height="12.485"/>
- <g>
- <rect x="576.662" y="717.162" fill="#44426C" width="72.313" height="20.817"/>
- <text transform="matrix(1 0 0 1 584.001 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 2号滤波器 </text>
- </g>
- <g>
- <rect x="496.466" y="717.162" fill="#44426C" width="72.314" height="20.817"/>
- <text transform="matrix(1 0 0 1 503.8052 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 2号电抗器 </text>
- </g>
- <g>
- <rect x="393.636" y="717.162" fill="#44426C" width="72.314" height="20.817"/>
- <text transform="matrix(1 0 0 1 396.6357 731.4512)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="10.5694"> 35KVⅡ母PT </text>
- </g>
- <g>
- <rect x="289.427" y="717.162" fill="#44426C" width="72.314" height="20.817"/>
- <text transform="matrix(1 0 0 1 300.4507 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场四线 </text>
- </g>
- <g>
- <rect x="206.423" y="717.162" fill="#44426C" width="72.314" height="20.817"/>
- <text transform="matrix(1 0 0 1 217.4468 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场五线 </text>
- </g>
- <g>
- <rect x="123.749" y="717.162" fill="#44426C" width="72.314" height="20.817"/>
- <text transform="matrix(1 0 0 1 134.7729 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场六线 </text>
- </g>
- <text transform="matrix(1 0 0 1 581.3286 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 321 </text>
- <text transform="matrix(1 0 0 1 498.5371 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 322 </text>
- <text transform="matrix(1 0 0 1 391.2036 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 32-9 </text>
- <rect x="11.136" y="546.226" fill="#C3A121" width="824.35" height="2.654"/>
- <text transform="matrix(1 0 0 1 589.5151 700.2949)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
- <rect x="594.025" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="612.818" y="621.387" fill="#CAA51A" width="2.25" height="75.479"/>
- <rect x="612.818" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
- <text transform="matrix(1 0 0 1 751.8286 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 300 </text>
- <text transform="matrix(1 0 0 1 938.8281 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 300-1 </text>
- <rect x="783.318" y="621.387" fill="#CAA51A" width="2.25" height="15.042"/>
- <rect x="783.424" y="634.183" fill="#CAA51A" width="200.411" height="2.25"/>
- <rect x="783.318" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
- <rect x="982.318" y="621.387" fill="#CAA51A" width="2.25" height="15.042"/>
- <rect x="982.318" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
- <polygon fill="#CAA51A" points="618.548,696.714 613.938,706.521 609.339,696.71 "/>
- <text transform="matrix(1 0 0 1 293.499 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 323 </text>
- <text transform="matrix(1 0 0 1 301.6855 700.2949)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
- <rect x="306.195" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="324.989" y="621.387" fill="#CAA51A" width="2.25" height="75.479"/>
- <rect x="324.989" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
- <polygon fill="#CAA51A" points="330.718,696.714 326.109,706.521 321.509,696.71 "/>
- <text transform="matrix(1 0 0 1 208.8081 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 324 </text>
- <text transform="matrix(1 0 0 1 216.9946 700.2949)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
- <rect x="221.504" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="240.298" y="621.387" fill="#CAA51A" width="2.25" height="75.479"/>
- <rect x="240.298" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
- <polygon fill="#CAA51A" points="246.027,696.714 241.418,706.521 236.818,696.71 "/>
- <text transform="matrix(1 0 0 1 127.1265 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 325 </text>
- <text transform="matrix(1 0 0 1 135.313 700.2949)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
- <rect x="139.823" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="158.616" y="621.387" fill="#CAA51A" width="2.25" height="75.479"/>
- <rect x="158.616" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
- <polygon fill="#CAA51A" points="164.346,696.714 159.736,706.521 155.137,696.71 "/>
- <text transform="matrix(1 0 0 1 506.229 700.2949)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
- <rect x="510.739" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="529.532" y="621.387" fill="#CAA51A" width="2.25" height="75.479"/>
- <rect x="529.532" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
- <polygon fill="#CAA51A" points="535.262,696.714 530.652,706.521 526.053,696.71 "/>
- <rect x="408.644" y="627.054" fill="#C3A121" width="2.25" height="22.135"/>
- <rect x="409.292" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
- <g>
-
- <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="402.89" y1="650.819" x2="416.611" y2="650.819"/>
-
- <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="405.722" y1="654.597" x2="413.778" y2="654.597"/>
-
- <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="407.295" y1="658.373" x2="412.205" y2="658.373"/>
- </g>
- <rect x="428.086" y="586.737" fill="#CAA51A" width="2.25" height="89.972"/>
- <rect x="428.086" y="549.24" fill="#CAA51A" width="2.25" height="20.375"/>
- <g>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="429.159" cy="700.099" r="8.804"/>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="429.16" cy="684.821" r="8.804"/>
- <polyline fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="433.437,703.818 430.305,700.65 433.437,697.699 "/>
-
- <line fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" x1="430.222" y1="700.585" x2="424.701" y2="700.585"/>
- <polyline fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="433.437,687.881 430.305,684.713 433.437,681.762 "/>
-
- <line fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" x1="430.222" y1="684.647" x2="424.701" y2="684.647"/>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="416.34" cy="692.017" r="8.803"/>
- <polyline fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="419.617,695.076 416.485,691.91 419.617,688.959 "/>
-
- <line fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" x1="416.402" y1="691.844" x2="410.88" y2="691.844"/>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="442.082" cy="692.017" r="8.803"/>
- <polygon fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="440.325,695.277 440.325,688.758 445.701,692.195 "/>
- </g>
- <g>
- <rect x="1571.904" y="717.162" fill="#44426C" width="72.313" height="20.817"/>
- <text transform="matrix(1 0 0 1 1571.8867 731.9414)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.6793"> 35KVⅠ母PT </text>
- </g>
- <g>
- <rect x="1207.66" y="717.162" fill="#44426C" width="72.313" height="20.817"/>
- <text transform="matrix(1 0 0 1 1214.999 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 1号站用变 </text>
- </g>
- <g>
- <rect x="1113.892" y="717.162" fill="#44426C" width="72.314" height="20.817"/>
- <text transform="matrix(1 0 0 1 1121.2314 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 1号滤波器 </text>
- </g>
- <g>
- <rect x="1029.126" y="717.162" fill="#44426C" width="72.314" height="20.817"/>
- <text transform="matrix(1 0 0 1 1036.4658 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 1号电抗器 </text>
- </g>
- <text transform="matrix(1 0 0 1 1569.4727 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 31-9 </text>
- <rect x="932.567" y="546.226" fill="#C3A121" width="822.084" height="2.654"/>
- <text transform="matrix(1 0 0 1 1116.2764 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 315 </text>
- <text transform="matrix(1 0 0 1 1184.6104 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 314 </text>
- <text transform="matrix(1 0 0 1 1124.4639 700.2949)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
- <rect x="1128.325" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
- <rect x="1128.974" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1123.569" y1="677.709" x2="1135.868" y2="677.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1129.722" y1="669.247" x2="1129.722" y2="677.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1126.108" y1="681.095" x2="1133.33" y2="681.095"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1127.519" y1="684.479" x2="1131.92" y2="684.479"/>
- </g>
- </g>
- <rect x="1044.95" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1040.194" y1="677.709" x2="1052.493" y2="677.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1046.347" y1="669.247" x2="1046.347" y2="677.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1042.733" y1="681.095" x2="1049.955" y2="681.095"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1044.144" y1="684.479" x2="1048.545" y2="684.479"/>
- </g>
- </g>
- <rect x="593.774" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="589.019" y1="677.709" x2="601.317" y2="677.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="595.171" y1="669.247" x2="595.171" y2="677.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="591.558" y1="681.095" x2="598.779" y2="681.095"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="592.968" y1="684.479" x2="597.369" y2="684.479"/>
- </g>
- </g>
- <rect x="510.488" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="505.732" y1="677.709" x2="518.031" y2="677.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="511.885" y1="669.247" x2="511.885" y2="677.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="508.271" y1="681.095" x2="515.493" y2="681.095"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="509.682" y1="684.479" x2="514.083" y2="684.479"/>
- </g>
- </g>
- <rect x="304.06" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="299.304" y1="677.709" x2="311.603" y2="677.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="305.456" y1="669.247" x2="305.456" y2="677.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="301.843" y1="681.095" x2="309.064" y2="681.095"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="303.253" y1="684.479" x2="307.654" y2="684.479"/>
- </g>
- </g>
- <rect x="221.254" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="216.498" y1="677.709" x2="228.797" y2="677.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="222.65" y1="669.247" x2="222.65" y2="677.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="219.037" y1="681.095" x2="226.259" y2="681.095"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="220.447" y1="684.479" x2="224.849" y2="684.479"/>
- </g>
- </g>
- <rect x="137.629" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="132.874" y1="677.709" x2="145.172" y2="677.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="139.026" y1="669.247" x2="139.026" y2="677.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="135.413" y1="681.095" x2="142.634" y2="681.095"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="136.823" y1="684.479" x2="141.224" y2="684.479"/>
- </g>
- </g>
- <rect x="1147.767" y="621.387" fill="#CAA51A" width="2.25" height="75.479"/>
- <rect x="1147.767" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
- <polygon fill="#CAA51A" points="1153.496,696.714 1148.887,706.521 1144.287,696.71 "/>
- <g>
- <rect x="1298.712" y="717.162" fill="#44426C" width="72.314" height="20.817"/>
- <text transform="matrix(1 0 0 1 1309.7363 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场三线 </text>
- </g>
- <text transform="matrix(1 0 0 1 1301.0977 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 313 </text>
- <text transform="matrix(1 0 0 1 1309.2832 700.2949)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
- <rect x="1313.146" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
- <rect x="1313.794" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1308.39" y1="677.709" x2="1320.688" y2="677.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1314.542" y1="669.247" x2="1314.542" y2="677.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1310.929" y1="681.095" x2="1318.15" y2="681.095"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1312.339" y1="684.479" x2="1316.74" y2="684.479"/>
- </g>
- </g>
- <rect x="1332.587" y="621.387" fill="#CAA51A" width="2.25" height="75.479"/>
- <rect x="1332.587" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
- <polygon fill="#CAA51A" points="1338.316,696.714 1333.707,706.521 1329.107,696.71 "/>
- <g>
- <rect x="1382.712" y="717.162" fill="#44426C" width="72.314" height="20.817"/>
- <text transform="matrix(1 0 0 1 1393.7363 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场二线 </text>
- </g>
- <text transform="matrix(1 0 0 1 1385.0977 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 312 </text>
- <text transform="matrix(1 0 0 1 1393.2832 700.2949)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
- <rect x="1397.146" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
- <rect x="1397.794" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1392.39" y1="677.709" x2="1404.688" y2="677.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1398.542" y1="669.247" x2="1398.542" y2="677.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1394.929" y1="681.095" x2="1402.15" y2="681.095"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1396.339" y1="684.479" x2="1400.74" y2="684.479"/>
- </g>
- </g>
- <rect x="1416.587" y="621.387" fill="#CAA51A" width="2.25" height="75.479"/>
- <rect x="1416.587" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
- <polygon fill="#CAA51A" points="1422.316,696.714 1417.707,706.521 1413.107,696.71 "/>
- <g>
- <rect x="1465.433" y="717.162" fill="#44426C" width="72.314" height="20.817"/>
- <text transform="matrix(1 0 0 1 1476.457 731.7158)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="12.5667"> 风场一线 </text>
- </g>
- <text transform="matrix(1 0 0 1 1467.8184 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 311 </text>
- <text transform="matrix(1 0 0 1 1476.0039 700.2949)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
- <rect x="1479.866" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
- <rect x="1480.515" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1475.11" y1="677.709" x2="1487.409" y2="677.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1481.263" y1="669.247" x2="1481.263" y2="677.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1477.649" y1="681.095" x2="1484.871" y2="681.095"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1479.06" y1="684.479" x2="1483.461" y2="684.479"/>
- </g>
- </g>
- <rect x="1499.308" y="621.387" fill="#CAA51A" width="2.25" height="75.479"/>
- <rect x="1499.308" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
- <polygon fill="#CAA51A" points="1505.037,696.714 1500.428,706.521 1495.828,696.71 "/>
- <rect x="1223.126" y="627.054" fill="#C3A121" width="2.25" height="17.839"/>
- <rect x="1223.774" y="627.054" fill="#C3A121" width="18.918" height="2.25"/>
- <g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1218.37" y1="673.709" x2="1230.669" y2="673.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1224.522" y1="669.247" x2="1224.522" y2="673.709"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1220.909" y1="677.095" x2="1228.131" y2="677.095"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1222.319" y1="680.479" x2="1226.721" y2="680.479"/>
- </g>
- <g>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1215.76" y1="696.893" x2="1228.059" y2="696.893"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1221.912" y1="692.431" x2="1221.912" y2="696.893"/>
-
- <line fill="none" stroke="#CAA51A" stroke-width="2.5" stroke-miterlimit="10" x1="1221.912" y1="684.893" x2="1221.912" y2="693.431"/>
- <line fill="none" stroke="#CAA51A" stroke-miterlimit="10" x1="1241.069" y1="684.893" x2="1220.911" y2="684.893"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1218.299" y1="700.278" x2="1225.521" y2="700.278"/>
-
- <line fill="none" stroke="#42B0A8" stroke-width="2.5" stroke-miterlimit="10" x1="1219.709" y1="703.663" x2="1224.11" y2="703.663"/>
- </g>
- </g>
- <rect x="1241.567" y="621.387" fill="#CAA51A" width="2.25" height="40.341"/>
- <rect x="1241.567" y="693.878" fill="#CAA51A" width="2.25" height="3.387"/>
- <rect x="1241.567" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
- <polygon fill="#CAA51A" points="1247.297,696.714 1242.688,706.521 1238.088,696.71 "/>
- <text transform="matrix(1 0 0 1 1032.5029 598.334)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> 316 </text>
- <text transform="matrix(1 0 0 1 1040.6904 700.2949)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
- <text transform="matrix(1 0 0 1 1192.3564 654.5967)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="11.9907"> -0 </text>
- <rect x="1045.2" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
- <rect x="1063.993" y="621.387" fill="#CAA51A" width="2.25" height="75.479"/>
- <rect x="1063.993" y="549.24" fill="#CAA51A" width="2.25" height="13.375"/>
- <polygon fill="#CAA51A" points="1069.723,696.714 1065.113,706.521 1060.514,696.71 "/>
- <rect x="1586.912" y="627.054" fill="#C3A121" width="2.25" height="22.135"/>
- <rect x="1587.562" y="627.054" fill="#C3A121" width="20.5" height="2.25"/>
- <g>
-
- <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="1581.158" y1="650.819" x2="1594.879" y2="650.819"/>
-
- <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="1583.99" y1="654.597" x2="1592.047" y2="654.597"/>
-
- <line fill="none" stroke="#C3A121" stroke-width="2.5" stroke-miterlimit="10" x1="1585.563" y1="658.373" x2="1590.474" y2="658.373"/>
- </g>
- <rect x="1606.354" y="578.849" fill="#CAA51A" width="2.25" height="97.86"/>
- <g>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="1607.428" cy="700.099" r="8.804"/>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="1607.429" cy="684.821" r="8.804"/>
- <polyline fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="1611.705,703.818 1608.574,700.65 1611.705,697.699 "/>
-
- <line fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" x1="1608.49" y1="700.585" x2="1602.969" y2="700.585"/>
- <polyline fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="1611.705,687.881 1608.574,684.713 1611.705,681.762 "/>
-
- <line fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" x1="1608.49" y1="684.647" x2="1602.969" y2="684.647"/>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="1594.608" cy="692.017" r="8.803"/>
- <polyline fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="1597.885,695.076 1594.754,691.91 1597.885,688.959 "/>
-
- <line fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" x1="1594.67" y1="691.844" x2="1589.147" y2="691.844"/>
- <circle fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" cx="1620.351" cy="692.017" r="8.803"/>
- <polygon fill="none" stroke="#CAA51A" stroke-width="1.2" stroke-miterlimit="10" points="1618.594,695.277 1618.594,688.758 1623.97,692.195 "/>
- </g>
- <g>
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" cx="1242.181" cy="684.963" r="8.915"/>
- <polyline fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" points="1239.082,689.294 1242.29,686.123 1245.278,689.294 "/>
-
- <line fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" x1="1242.181" y1="686.038" x2="1242.181" y2="680.446"/>
- <circle fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" cx="1242.181" cy="670.854" r="8.915"/>
- <polygon fill="none" stroke="#A9165D" stroke-width="1.2" stroke-miterlimit="10" points="1245.481,673.507 1238.88,673.507 1242.36,668.063 "/>
- </g>
- </g>
- <g>
- <g>
- <text transform="matrix(1 0 0 1 22.7139 790.7725)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="10.7648"> la( </text>
- <text transform="matrix(1 0 0 1 35.124 790.7725)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="8.6118"> A </text>
- <text transform="matrix(1 0 0 1 41.1826 790.7725)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="10.7648"> ): </text>
- <text transform="matrix(1 0 0 1 10.5498 816.625)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="10.7648"> P( </text>
- <text transform="matrix(1 0 0 1 22.731 816.625)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="8.6118"> kVar </text>
- <text transform="matrix(1 0 0 1 41.1826 816.625)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="10.7648"> ): </text>
- <text transform="matrix(1 0 0 1 10.2549 842.4756)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="10.7648"> Q( </text>
- <text transform="matrix(1 0 0 1 22.623 842.4756)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="8.6118"> kVar </text>
- <text transform="matrix(1 0 0 1 41.1826 842.4756)" fill="#FFFFFF" font-family="'MicrosoftYaHei'" font-size="10.7648"> ): </text>
- </g>
- </g>
- </g>
- <g id="data">
- <text
- transform="matrix(1 0 0 1 70.8325 97.6743)"
- fill="#1A823B"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qsuakv }}
- </text>
- <text
- transform="matrix(1 0 0 1 70.832 115.3691)"
- fill="#1A823B"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qsubkv }}
- </text>
- <text
- transform="matrix(1 0 0 1 70.832 136.0361)"
- fill="#1A823B"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qsuckv }}
- </text>
- <text
- transform="matrix(1 0 0 1 70.832 156.3486)"
- fill="#1A823B"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qs3u0v }}
- </text>
- <text
- transform="matrix(1 0 0 1 291.499 122.957)"
- fill="#1A823B"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qsuabkv }}
- </text>
- <text
- transform="matrix(1 0 0 1 291.499 143.457)"
- fill="#1A823B"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qsubckv }}
- </text>
- <text
- transform="matrix(1 0 0 1 291.499 163.957)"
- fill="#1A823B"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qsuackv }}
- </text>
- <text
- transform="matrix(1 0 0 1 1129.3975 13.6143)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qslaakv }}
- </text>
- <text
- transform="matrix(1 0 0 1 1129.3955 32.3096)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qspmw }}
- </text>
- <text
- transform="matrix(1 0 0 1 1129.3955 52.9775)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qsqmvar }}
- </text>
- <text
- transform="matrix(1 0 0 1 1129.3955 73.2959)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qsuxkv }}
- </text>
- <text
- transform="matrix(1 0 0 1 1129.3955 93.9023)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qsfhz }}
- </text>
- <text
- transform="matrix(1 0 0 1 1129.3955 115.9824)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qscos }}
- </text>
- <text
- transform="matrix(1 0 0 1 277.1113 287.5244)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qslaazb2s }}
- </text>
- <text
- transform="matrix(1 0 0 1 277.1094 306.2197)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qspmwzb2s }}
- </text>
- <text
- transform="matrix(1 0 0 1 277.1094 326.8877)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qsqmvarzb2s }}
- </text>
- <text
- transform="matrix(1 0 0 1 277.1094 349.3857)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qscoszb2s }}
- </text>
- <text
- transform="matrix(1 0 0 1 1336.6387 287.5244)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qslaazb1s }}
- </text>
- <text
- transform="matrix(1 0 0 1 1336.6367 306.2197)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qspmwzb1s }}
- </text>
- <text
- transform="matrix(1 0 0 1 1336.6367 327.8877)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qsqmvarzb1s }}
- </text>
- <text
- transform="matrix(1 0 0 1 1336.6367 349.3857)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qscoszb1s }}
- </text>
- <text
- transform="matrix(1 0 0 1 70.8325 458.79)"
- fill="#1A823B"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qsuakvzb2 }}
- </text>
- <text
- transform="matrix(1 0 0 1 70.832 476.4844)"
- fill="#1A823B"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qsuabkvzb2 }}
- </text>
- <text
- transform="matrix(1 0 0 1 70.832 497.1934)"
- fill="#1A823B"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qs3uozb2 }}
- </text>
- <text
- transform="matrix(1 0 0 1 277.1113 446.5586)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qslaazb2x }}
- </text>
- <text
- transform="matrix(1 0 0 1 277.1094 465.2539)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qspmwzb2x }}
- </text>
- <text
- transform="matrix(1 0 0 1 277.1094 485.9219)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qsqmvarzb2x }}
- </text>
- <text
- transform="matrix(1 0 0 1 277.1094 508.4199)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qscoszb2x }}
- </text>
- <text
- transform="matrix(1 0 0 1 709.6748 448.9365)"
- fill="#1A823B"
- font-family="'MicrosoftYaHei'"
- font-size="8.85"
- >
- {{ ajaxData.qsymwdzb2 }}
- </text>
- <text
- transform="matrix(1 0 0 1 709.6748 466.29)"
- fill="#1A823B"
- font-family="'MicrosoftYaHei'"
- font-size="8.85"
- >
- {{ ajaxData.qsrzwdzb2 }}
- </text>
- <text
- transform="matrix(1 0 0 1 709.6748 485.6201)"
- fill="#1A823B"
- font-family="'MicrosoftYaHei'"
- font-size="8.85"
- >
- {{ ajaxData.qsdwzb2 }}
- </text>
- <text
- transform="matrix(1 0 0 1 990.8711 458.2813)"
- fill="#1A823B"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qsuakvzb1 }}
- </text>
- <text
- transform="matrix(1 0 0 1 990.8711 478.7813)"
- fill="#1A823B"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qsuabkvzb1 }}
- </text>
- <text
- transform="matrix(1 0 0 1 990.8711 501.2813)"
- fill="#1A823B"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qs3u0vzb1 }}
- </text>
- <text
- transform="matrix(1 0 0 1 1336.6387 446.5586)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qslaazb1x }}
- </text>
- <text
- transform="matrix(1 0 0 1 1336.6367 466.2539)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qspmwzb1x }}
- </text>
- <text
- transform="matrix(1 0 0 1 1336.6367 486.9219)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qsqmvarzb1x }}
- </text>
- <text
- transform="matrix(1 0 0 1 1336.6367 508.4199)"
- fill="#217E3A"
- font-family="'MicrosoftYaHei'"
- font-size="9.463"
- >
- {{ ajaxData.qscoszb1x }}
- </text>
- <text
- transform="matrix(1 0 0 1 1687.5547 446.4219)"
- fill="#1A823B"
- font-family="'MicrosoftYaHei'"
- font-size="8.85"
- >
- {{ ajaxData.qsymwdzb1 }}
- </text>
- <text
- transform="matrix(1 0 0 1 1687.5547 463.7754)"
- fill="#1A823B"
- font-family="'MicrosoftYaHei'"
- font-size="8.85"
- >
- {{ ajaxData.qsrzwdzb1 }}
- </text>
- <text
- transform="matrix(1 0 0 1 1687.5547 483.1055)"
- fill="#1A823B"
- font-family="'MicrosoftYaHei'"
- font-size="8.85"
- >
- {{ ajaxData.qsdwzb1 }}
- </text>
- <g>
- <text
- transform="matrix(1 0 0 1 141.3398 790.7725)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qslaafc6 }}
- </text>
- <text
- transform="matrix(1 0 0 1 141.3398 816.625)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qspkwfc6 }}
- </text>
- <text
- transform="matrix(1 0 0 1 141.3398 842.4756)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qsqkvarfc6 }}
- </text>
- </g>
- <g>
- <text
- transform="matrix(1 0 0 1 227.0698 790.7725)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qslaafc5 }}
- </text>
- <text
- transform="matrix(1 0 0 1 227.0698 816.625)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qspkwfc5 }}
- </text>
- <text
- transform="matrix(1 0 0 1 227.0698 842.4756)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qsqkvarfc5 }}
- </text>
- </g>
- <g>
- <text
- transform="matrix(1 0 0 1 309.5898 790.7725)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qslaafc4 }}
- </text>
- <text
- transform="matrix(1 0 0 1 309.5898 816.625)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qspkwfc4 }}
- </text>
- <text
- transform="matrix(1 0 0 1 309.5898 842.4756)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qsqkvarfc4 }}
- </text>
- </g>
- <g>
- <text
- transform="matrix(1 0 0 1 514.2163 790.7725)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qslaadk2 }}
- </text>
- <text
- transform="matrix(1 0 0 1 514.2163 816.625)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qspkwdk2 }}
- </text>
- <text
- transform="matrix(1 0 0 1 514.2163 842.4756)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qsqkvardk2 }}
- </text>
- </g>
- <g>
- <text
- transform="matrix(1 0 0 1 599.9463 790.7725)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qslaalb2 }}
- </text>
- <text
- transform="matrix(1 0 0 1 599.9463 816.625)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qspkwlb2 }}
- </text>
- <text
- transform="matrix(1 0 0 1 599.9463 842.4756)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qsqkvarlb2 }}
- </text>
- </g>
- <g>
- <text
- transform="matrix(1 0 0 1 1057.8447 790.7725)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qslaadk1 }}
- </text>
- <text
- transform="matrix(1 0 0 1 1057.8447 816.625)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qspkwdk1 }}
- </text>
- <text
- transform="matrix(1 0 0 1 1057.8447 842.4756)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qsqkvardk1 }}
- </text>
- </g>
- <g>
- <text
- transform="matrix(1 0 0 1 1143.5747 790.7725)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qslaalb1 }}
- </text>
- <text
- transform="matrix(1 0 0 1 1143.5747 816.625)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qspkwlb1 }}
- </text>
- <text
- transform="matrix(1 0 0 1 1143.5747 842.4756)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qsqkvarlb1 }}
- </text>
- </g>
- <g>
- <text
- transform="matrix(1 0 0 1 1242.1802 790.7725)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qslaazy }}
- </text>
- <text
- transform="matrix(1 0 0 1 1242.1802 816.625)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qspkwzy }}
- </text>
- <text
- transform="matrix(1 0 0 1 1242.1807 842.4756)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qsqkvarzy }}
- </text>
- </g>
- <g>
- <text
- transform="matrix(1 0 0 1 1332.4658 790.7725)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qslaafc3 }}
- </text>
- <text
- transform="matrix(1 0 0 1 1332.4658 816.625)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qspkwfc3 }}
- </text>
- <text
- transform="matrix(1 0 0 1 1332.4658 842.4756)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qsqkvarfc3 }}
- </text>
- </g>
- <g>
- <text
- transform="matrix(1 0 0 1 1413.1074 790.7725)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qslaafc2 }}
- </text>
- <text
- transform="matrix(1 0 0 1 1413.1074 816.625)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qspkwfc2 }}
- </text>
- <text
- transform="matrix(1 0 0 1 1413.1074 842.4756)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qsqkvarfc2 }}
- </text>
- </g>
- <g>
- <text
- transform="matrix(1 0 0 1 1494.0273 790.7725)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qslaafc1 }}
- </text>
- <text
- transform="matrix(1 0 0 1 1494.0273 816.625)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qspkwfc1 }}
- </text>
- <text
- transform="matrix(1 0 0 1 1494.0273 842.4756)"
- fill="#FFFFFF"
- font-family="'MicrosoftYaHei'"
- font-size="10.7648"
- >
- {{ ajaxData.qsqkvarfc1 }}
- </text>
- </g>
- </g>
- <g id="kg">
- <g id="qskg1110" v-if="ajaxData.qskg1110">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="906.082"
- y1="97.238"
- x2="906.082"
- y2="79.973"
- />
- <path
- fill="#9E2224"
- d="M922.671,90.672c-1.421,0-2.574-1.155-2.574-2.571s1.156-2.573,2.574-2.573s2.571,1.155,2.571,2.573 C925.242,89.516,924.089,90.672,922.671,90.672 M922.671,92.703c2.545,0,4.604-2.061,4.604-4.604s-2.062-4.604-4.604-4.604 s-4.604,2.063-4.604,4.604S920.125,92.703,922.671,92.703L922.671,92.703z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="906.306"
- y1="88.098"
- x2="919.056"
- y2="88.098"
- />
- </g>
- <g id="on_1_" v-else-if="ajaxData.qskg1110 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="906.082"
- y1="97.238"
- x2="906.082"
- y2="79.973"
- />
- <path
- fill="#27963A"
- d="M922.671,90.672c-1.421,0-2.576-1.155-2.576-2.571s1.155-2.573,2.576-2.573 c1.418,0,2.571,1.155,2.571,2.573C925.242,89.516,924.089,90.672,922.671,90.672 M922.671,92.703 c2.543,0,4.604-2.061,4.604-4.604s-2.062-4.604-4.604-4.604c-2.546,0-4.606,2.063-4.606,4.604S920.125,92.703,922.671,92.703 L922.671,92.703z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="908.24"
- y1="81.639"
- x2="919.056"
- y2="88.605"
- />
- </g>
- <g id="qskg11103" v-if="ajaxData.qskg11103">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="859.664"
- y1="123.444"
- x2="859.664"
- y2="140.71"
- />
- <path
- fill="#9E2224"
- d="M843.075,130.015c1.421,0,2.574,1.154,2.574,2.569c0,1.421-1.156,2.573-2.574,2.573 s-2.571-1.157-2.571-2.573C840.504,131.165,841.657,130.015,843.075,130.015 M843.075,127.981c-2.545,0-4.604,2.061-4.604,4.604 s2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604C847.681,130.038,845.621,127.981,843.075,127.981L843.075,127.981z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="859.44"
- y1="132.585"
- x2="846.69"
- y2="132.585"
- />
- </g>
- <g id="on_15_" v-else-if="ajaxData.qskg11103 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="859.664"
- y1="123.444"
- x2="859.664"
- y2="140.71"
- />
- <path
- fill="#27963A"
- d="M843.075,130.015c1.421,0,2.576,1.154,2.576,2.569c0,1.421-1.155,2.573-2.576,2.573 c-1.418,0-2.571-1.157-2.571-2.573C840.504,131.165,841.657,130.015,843.075,130.015 M843.075,127.981 c-2.543,0-4.604,2.061-4.604,4.604s2.062,4.604,4.604,4.604c2.546,0,4.606-2.063,4.606-4.604 C847.683,130.038,845.621,127.981,843.075,127.981L843.075,127.981z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="857.506"
- y1="139.044"
- x2="846.69"
- y2="132.077"
- />
- </g>
- <g id="qskg1113" v-if="ajaxData.qskg1113">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="873.862"
- y1="101.884"
- x2="891.128"
- y2="101.884"
- />
- <path
- fill="#9E2224"
- d="M883.003,115.899c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57c-1.42,0-2.574-1.155-2.574-2.57 C880.426,117.056,881.582,115.899,883.003,115.899 M883.003,113.869c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604 c2.545,0,4.604-2.061,4.604-4.604C887.608,115.93,885.547,113.869,883.003,113.869L883.003,113.869z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="883.003"
- y1="102.11"
- x2="883.003"
- y2="114.862"
- />
- </g>
- <g id="on_19_" v-else-if="ajaxData.qskg1113 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="873.862"
- y1="101.884"
- x2="891.128"
- y2="101.884"
- />
- <path
- fill="#27963A"
- d="M883.003,115.899c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57c-1.42,0-2.574-1.155-2.574-2.57 C880.426,117.056,881.582,115.899,883.003,115.899 M883.003,113.869c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604 c2.545,0,4.604-2.061,4.604-4.604C887.608,115.93,885.547,113.869,883.003,113.869L883.003,113.869z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="889.458"
- y1="104.045"
- x2="882.496"
- y2="114.862"
- />
- </g>
- <g id="qskg1111" v-if="ajaxData.qskg1111">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="874.37"
- y1="190.494"
- x2="891.637"
- y2="190.494"
- />
- <path
- fill="#9E2224"
- d="M883.512,204.51c1.418,0,2.574,1.156,2.574,2.572c0,1.418-1.158,2.57-2.574,2.57 c-1.42,0-2.574-1.154-2.574-2.57S882.09,204.51,883.512,204.51 M883.512,202.48c-2.545,0-4.604,2.061-4.604,4.604 c0,2.545,2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604C888.116,204.537,886.056,202.48,883.512,202.48L883.512,202.48 z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="883.512"
- y1="190.723"
- x2="883.512"
- y2="203.472"
- />
- </g>
- <g id="on_18_" v-else-if="ajaxData.qskg1111 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="874.37"
- y1="190.494"
- x2="891.637"
- y2="190.494"
- />
- <path
- fill="#27963A"
- d="M883.512,204.51c1.418,0,2.574,1.156,2.574,2.572c0,1.422-1.158,2.57-2.574,2.57 c-1.42,0-2.574-1.154-2.574-2.57C880.935,205.664,882.09,204.51,883.512,204.51 M883.512,202.48c-2.545,0-4.604,2.061-4.604,4.604 s2.063,4.604,4.604,4.604c2.545,0,4.604-2.062,4.604-4.604S886.056,202.48,883.512,202.48L883.512,202.48z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="889.967"
- y1="192.658"
- x2="883.004"
- y2="203.472"
- />
- </g>
- <g id="qskg11101" v-if="ajaxData.qskg11101">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="906.082"
- y1="187.479"
- x2="906.082"
- y2="170.214"
- />
- <path
- fill="#9E2224"
- d="M922.671,180.913c-1.421,0-2.574-1.155-2.574-2.571s1.156-2.573,2.574-2.573s2.571,1.155,2.571,2.573 C925.242,179.757,924.089,180.913,922.671,180.913 M922.671,182.944c2.545,0,4.604-2.061,4.604-4.604s-2.062-4.604-4.604-4.604 s-4.604,2.063-4.604,4.604S920.125,182.944,922.671,182.944L922.671,182.944z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="906.306"
- y1="178.339"
- x2="919.056"
- y2="178.339"
- />
- </g>
- <g id="on_2_" v-else-if="ajaxData.qskg11101 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="906.082"
- y1="187.479"
- x2="906.082"
- y2="170.214"
- />
- <path
- fill="#27963A"
- d="M922.671,180.913c-1.421,0-2.576-1.155-2.576-2.571s1.155-2.573,2.576-2.573 c1.418,0,2.571,1.155,2.571,2.573C925.242,179.757,924.089,180.913,922.671,180.913 M922.671,182.944 c2.543,0,4.604-2.061,4.604-4.604s-2.062-4.604-4.604-4.604c-2.546,0-4.606,2.063-4.606,4.604S920.125,182.944,922.671,182.944 L922.671,182.944z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="908.24"
- y1="171.88"
- x2="919.056"
- y2="178.847"
- />
- </g>
- <g id="qskg1109" v-if="ajaxData.qskg1109">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1095.182"
- y1="291.153"
- x2="1095.182"
- y2="273.888"
- />
- <path
- fill="#9E2224"
- d="M1111.771,284.587c-1.422,0-2.574-1.155-2.574-2.571s1.156-2.573,2.574-2.573s2.57,1.155,2.57,2.573 C1114.342,283.431,1113.189,284.587,1111.771,284.587 M1111.771,286.618c2.545,0,4.604-2.061,4.604-4.604 s-2.061-4.604-4.604-4.604s-4.604,2.063-4.604,4.604S1109.225,286.618,1111.771,286.618L1111.771,286.618z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1095.406"
- y1="282.013"
- x2="1108.156"
- y2="282.013"
- />
- </g>
- <g id="on_7_" v-else-if="ajaxData.qskg1109 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1095.182"
- y1="291.153"
- x2="1095.182"
- y2="273.888"
- />
- <path
- fill="#27963A"
- d="M1111.771,284.587c-1.422,0-2.576-1.155-2.576-2.571s1.154-2.573,2.576-2.573 c1.418,0,2.57,1.155,2.57,2.573C1114.342,283.431,1113.189,284.587,1111.771,284.587 M1111.771,286.618 c2.543,0,4.604-2.061,4.604-4.604s-2.061-4.604-4.604-4.604c-2.547,0-4.607,2.063-4.607,4.604S1109.225,286.618,1111.771,286.618 L1111.771,286.618z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1097.34"
- y1="275.554"
- x2="1108.156"
- y2="282.521"
- />
- </g>
- <g id="qskg1021" v-if="ajaxData.qskg1021">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="477.801"
- y1="250.21"
- x2="495.068"
- y2="250.21"
- />
- <path
- fill="#9E2224"
- d="M486.943,264.226c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57c-1.42,0-2.574-1.155-2.574-2.57 C484.366,265.382,485.521,264.226,486.943,264.226 M486.943,262.195c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604 c2.545,0,4.604-2.061,4.604-4.604C491.547,264.256,489.487,262.195,486.943,262.195L486.943,262.195z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="486.943"
- y1="250.437"
- x2="486.943"
- y2="263.188"
- />
- </g>
- <g id="on_8_" v-else-if="ajaxData.qskg1021 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="477.801"
- y1="250.21"
- x2="495.068"
- y2="250.21"
- />
- <path
- fill="#27963A"
- d="M486.943,264.226c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57c-1.42,0-2.574-1.155-2.574-2.57 C484.366,265.382,485.521,264.226,486.943,264.226 M486.943,262.195c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604 c2.545,0,4.604-2.061,4.604-4.604C491.547,264.256,489.487,262.195,486.943,262.195L486.943,262.195z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="493.398"
- y1="252.371"
- x2="486.435"
- y2="263.188"
- />
- </g>
- <g id="qskg1023" v-if="ajaxData.qskg1023">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="477.801"
- y1="341.903"
- x2="495.068"
- y2="341.903"
- />
- <path
- fill="#9E2224"
- d="M486.943,355.919c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57c-1.42,0-2.574-1.155-2.574-2.57 C484.366,357.075,485.521,355.919,486.943,355.919 M486.943,353.889c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604 c2.545,0,4.604-2.061,4.604-4.604C491.547,355.949,489.487,353.889,486.943,353.889L486.943,353.889z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="486.943"
- y1="342.13"
- x2="486.943"
- y2="354.882"
- />
- </g>
- <g id="on_6_" v-else-if="ajaxData.qskg1023 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="477.801"
- y1="341.903"
- x2="495.068"
- y2="341.903"
- />
- <path
- fill="#27963A"
- d="M486.943,355.919c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57c-1.42,0-2.574-1.155-2.574-2.57 C484.366,357.075,485.521,355.919,486.943,355.919 M486.943,353.889c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604 c2.545,0,4.604-2.061,4.604-4.604C491.547,355.949,489.487,353.889,486.943,353.889L486.943,353.889z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="493.398"
- y1="344.064"
- x2="486.435"
- y2="354.882"
- />
- </g>
- <g id="qskg10201" v-if="ajaxData.qskg10201">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="463.604"
- y1="271.403"
- x2="463.604"
- y2="288.669"
- />
- <path
- fill="#9E2224"
- d="M447.015,277.974c1.421,0,2.574,1.154,2.574,2.569c0,1.421-1.156,2.573-2.574,2.573 s-2.571-1.157-2.571-2.573C444.443,279.124,445.597,277.974,447.015,277.974 M447.015,275.94c-2.545,0-4.604,2.061-4.604,4.604 s2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604C451.62,277.997,449.561,275.94,447.015,275.94L447.015,275.94z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="463.38"
- y1="280.544"
- x2="450.63"
- y2="280.544"
- />
- </g>
- <g id="on_5_" v-else-if="ajaxData.qskg10201 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="463.604"
- y1="271.403"
- x2="463.604"
- y2="288.669"
- />
- <path
- fill="#27963A"
- d="M447.015,277.974c1.421,0,2.576,1.154,2.576,2.569c0,1.421-1.155,2.573-2.576,2.573 c-1.418,0-2.571-1.157-2.571-2.573C444.443,279.124,445.597,277.974,447.015,277.974 M447.015,275.94 c-2.543,0-4.604,2.061-4.604,4.604s2.062,4.604,4.604,4.604c2.546,0,4.606-2.063,4.606-4.604 C451.622,277.997,449.561,275.94,447.015,275.94L447.015,275.94z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="461.445"
- y1="287.003"
- x2="450.63"
- y2="280.036"
- />
- </g>
- <g id="qskg119" v-if="ajaxData.qskg119">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1066.757"
- y1="250.21"
- x2="1084.024"
- y2="250.21"
- />
- <path
- fill="#9E2224"
- d="M1075.899,264.226c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57 c-1.42,0-2.574-1.155-2.574-2.57C1073.321,265.382,1074.478,264.226,1075.899,264.226 M1075.899,262.195 c-2.545,0-4.605,2.062-4.605,4.604s2.063,4.604,4.605,4.604c2.545,0,4.604-2.061,4.604-4.604 C1080.503,264.256,1078.442,262.195,1075.899,262.195L1075.899,262.195z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1075.899"
- y1="250.437"
- x2="1075.899"
- y2="263.188"
- />
- </g>
- <g id="on_3_" v-else-if="ajaxData.qskg119 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1066.757"
- y1="250.21"
- x2="1084.024"
- y2="250.21"
- />
- <path
- fill="#27963A"
- d="M1075.899,264.226c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57 c-1.42,0-2.574-1.155-2.574-2.57C1073.321,265.382,1074.478,264.226,1075.899,264.226 M1075.899,262.195 c-2.545,0-4.605,2.062-4.605,4.604s2.063,4.604,4.605,4.604c2.545,0,4.604-2.061,4.604-4.604 C1080.503,264.256,1078.442,262.195,1075.899,262.195L1075.899,262.195z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1082.354"
- y1="252.371"
- x2="1075.392"
- y2="263.188"
- />
- </g>
- <g id="qskg10203" v-if="ajaxData.qskg10203">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="464.604"
- y1="362.324"
- x2="464.604"
- y2="379.59"
- />
- <path
- fill="#9E2224"
- d="M448.015,368.895c1.421,0,2.574,1.154,2.574,2.569c0,1.421-1.156,2.573-2.574,2.573 s-2.571-1.157-2.571-2.573C445.443,370.045,446.597,368.895,448.015,368.895 M448.015,366.861c-2.545,0-4.604,2.061-4.604,4.604 s2.062,4.604,4.604,4.604s4.604-2.063,4.604-4.604C452.62,368.918,450.561,366.861,448.015,366.861L448.015,366.861z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="464.38"
- y1="371.465"
- x2="451.63"
- y2="371.465"
- />
- </g>
- <g id="on_9_" v-else-if="ajaxData.qskg10203 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="464.604"
- y1="362.324"
- x2="464.604"
- y2="379.59"
- />
- <path
- fill="#27963A"
- d="M448.015,368.895c1.421,0,2.576,1.154,2.576,2.569c0,1.421-1.155,2.573-2.576,2.573 c-1.418,0-2.571-1.157-2.571-2.573C445.443,370.045,446.597,368.895,448.015,368.895 M448.015,366.861 c-2.543,0-4.604,2.061-4.604,4.604s2.062,4.604,4.604,4.604c2.546,0,4.606-2.063,4.606-4.604 C452.622,368.918,450.561,366.861,448.015,366.861L448.015,366.861z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="462.445"
- y1="377.924"
- x2="451.63"
- y2="370.957"
- />
- </g>
- <g id="qskg1020" v-if="ajaxData.qskg1020">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="510.021"
- y1="244.978"
- x2="510.021"
- y2="227.712"
- />
- <path
- fill="#9E2224"
- d="M526.61,238.411c-1.421,0-2.574-1.155-2.574-2.571s1.156-2.573,2.574-2.573s2.571,1.155,2.571,2.573 C529.182,237.255,528.028,238.411,526.61,238.411 M526.61,240.442c2.545,0,4.604-2.061,4.604-4.604s-2.062-4.604-4.604-4.604 s-4.604,2.063-4.604,4.604S524.064,240.442,526.61,240.442L526.61,240.442z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="510.245"
- y1="235.837"
- x2="522.995"
- y2="235.837"
- />
- </g>
- <g id="on_4_" v-else-if="ajaxData.qskg1020 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="510.021"
- y1="244.978"
- x2="510.021"
- y2="227.712"
- />
- <path
- fill="#27963A"
- d="M526.61,238.411c-1.421,0-2.576-1.155-2.576-2.571s1.155-2.573,2.576-2.573 c1.418,0,2.571,1.155,2.571,2.573C529.182,237.255,528.028,238.411,526.61,238.411 M526.61,240.442 c2.543,0,4.604-2.061,4.604-4.604s-2.062-4.604-4.604-4.604c-2.546,0-4.606,2.063-4.606,4.604S524.064,240.442,526.61,240.442 L526.61,240.442z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="512.18"
- y1="229.378"
- x2="522.995"
- y2="236.345"
- />
- </g>
- <g id="qskg10202" v-if="ajaxData.qskg10202">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="510.021"
- y1="335.521"
- x2="510.021"
- y2="318.255"
- />
- <path
- fill="#9E2224"
- d="M526.61,328.954c-1.421,0-2.574-1.155-2.574-2.571s1.156-2.573,2.574-2.573s2.571,1.155,2.571,2.573 C529.182,327.798,528.028,328.954,526.61,328.954 M526.61,330.985c2.545,0,4.604-2.061,4.604-4.604s-2.062-4.604-4.604-4.604 s-4.604,2.063-4.604,4.604S524.064,330.985,526.61,330.985L526.61,330.985z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="510.245"
- y1="326.38"
- x2="522.995"
- y2="326.38"
- />
- </g>
- <g id="on_10_" v-else-if="ajaxData.qskg10202 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="510.021"
- y1="335.521"
- x2="510.021"
- y2="318.255"
- />
- <path
- fill="#27963A"
- d="M526.61,328.954c-1.421,0-2.576-1.155-2.576-2.571s1.155-2.573,2.576-2.573 c1.418,0,2.571,1.155,2.571,2.573C529.182,327.798,528.028,328.954,526.61,328.954 M526.61,330.985 c2.543,0,4.604-2.061,4.604-4.604s-2.062-4.604-4.604-4.604c-2.546,0-4.606,2.063-4.606,4.604S524.064,330.985,526.61,330.985 L526.61,330.985z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="512.18"
- y1="319.921"
- x2="522.995"
- y2="326.888"
- />
- </g>
- <g id="qskg0210" v-if="ajaxData.qskg0210">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="399.091"
- y1="424.063"
- x2="416.357"
- y2="424.063"
- />
- <path
- fill="#9E2224"
- d="M405.659,440.651c0-1.421,1.156-2.57,2.571-2.57c1.421,0,2.573,1.154,2.573,2.57 c0,1.418-1.157,2.571-2.573,2.571C406.812,443.225,405.659,442.069,405.659,440.651 M403.627,440.651 c0,2.545,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.541-2.061-4.604-4.604-4.604 C405.685,436.047,403.627,438.107,403.627,440.651L403.627,440.651z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="408.232"
- y1="424.289"
- x2="408.232"
- y2="437.041"
- />
- </g>
- <g id="on_28_" v-else-if="ajaxData.qskg0210 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="399.091"
- y1="424.063"
- x2="416.357"
- y2="424.063"
- />
- <path
- fill="#27963A"
- d="M405.659,440.651c0-1.421,1.156-2.575,2.571-2.575c1.421,0,2.573,1.156,2.573,2.575 c0,1.42-1.157,2.571-2.573,2.571C406.812,443.225,405.659,442.069,405.659,440.651 M403.627,440.651 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604s-2.061-4.604-4.604-4.604 C405.685,436.044,403.627,438.107,403.627,440.651L403.627,440.651z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="414.691"
- y1="426.221"
- x2="407.724"
- y2="437.041"
- />
- </g>
- <g id="qskg1011" v-if="ajaxData.qskg1011">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1543.546"
- y1="250.21"
- x2="1560.813"
- y2="250.21"
- />
- <path
- fill="#9E2224"
- d="M1552.688,264.226c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57 c-1.42,0-2.574-1.155-2.574-2.57C1550.11,265.382,1551.266,264.226,1552.688,264.226 M1552.688,262.195 c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.061,4.604-4.604 C1557.292,264.256,1555.231,262.195,1552.688,262.195L1552.688,262.195z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1552.688"
- y1="250.437"
- x2="1552.688"
- y2="263.188"
- />
- </g>
- <g id="on_20_" v-else-if="ajaxData.qskg1011 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1543.546"
- y1="250.21"
- x2="1560.813"
- y2="250.21"
- />
- <path
- fill="#27963A"
- d="M1552.688,264.226c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57 c-1.42,0-2.574-1.155-2.574-2.57C1550.11,265.382,1551.266,264.226,1552.688,264.226 M1552.688,262.195 c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.061,4.604-4.604 C1557.292,264.256,1555.231,262.195,1552.688,262.195L1552.688,262.195z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1559.143"
- y1="252.371"
- x2="1552.18"
- y2="263.188"
- />
- </g>
- <g id="qskg1013" v-if="ajaxData.qskg1013">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1543.546"
- y1="341.903"
- x2="1560.813"
- y2="341.903"
- />
- <path
- fill="#9E2224"
- d="M1552.688,355.919c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57 c-1.42,0-2.574-1.155-2.574-2.57C1550.11,357.075,1551.266,355.919,1552.688,355.919 M1552.688,353.889 c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.061,4.604-4.604 C1557.292,355.949,1555.231,353.889,1552.688,353.889L1552.688,353.889z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1552.688"
- y1="342.13"
- x2="1552.688"
- y2="354.882"
- />
- </g>
- <g id="on_17_" v-else-if="ajaxData.qskg1013 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1543.546"
- y1="341.903"
- x2="1560.813"
- y2="341.903"
- />
- <path
- fill="#27963A"
- d="M1552.688,355.919c1.418,0,2.574,1.158,2.574,2.574s-1.158,2.57-2.574,2.57 c-1.42,0-2.574-1.155-2.574-2.57C1550.11,357.075,1551.266,355.919,1552.688,355.919 M1552.688,353.889 c-2.545,0-4.604,2.062-4.604,4.604s2.063,4.604,4.604,4.604c2.545,0,4.604-2.061,4.604-4.604 C1557.292,355.949,1555.231,353.889,1552.688,353.889L1552.688,353.889z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1559.143"
- y1="344.064"
- x2="1552.18"
- y2="354.882"
- />
- </g>
- <g id="qskg10101" v-if="ajaxData.qskg10101">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1529.349"
- y1="271.403"
- x2="1529.349"
- y2="288.669"
- />
- <path
- fill="#9E2224"
- d="M1512.759,277.974c1.422,0,2.574,1.154,2.574,2.569c0,1.421-1.156,2.573-2.574,2.573 s-2.57-1.157-2.57-2.573C1510.188,279.124,1511.341,277.974,1512.759,277.974 M1512.759,275.94c-2.545,0-4.604,2.061-4.604,4.604 s2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604C1517.364,277.997,1515.306,275.94,1512.759,275.94L1512.759,275.94z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1529.124"
- y1="280.544"
- x2="1516.374"
- y2="280.544"
- />
- </g>
- <g id="on_16_" v-else-if="ajaxData.qskg10101 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1529.349"
- y1="271.403"
- x2="1529.349"
- y2="288.669"
- />
- <path
- fill="#27963A"
- d="M1512.759,277.974c1.422,0,2.576,1.154,2.576,2.569c0,1.421-1.154,2.573-2.576,2.573 c-1.418,0-2.57-1.157-2.57-2.573C1510.188,279.124,1511.341,277.974,1512.759,277.974 M1512.759,275.94 c-2.543,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604c2.547,0,4.607-2.063,4.607-4.604 C1517.366,277.997,1515.306,275.94,1512.759,275.94L1512.759,275.94z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1527.19"
- y1="287.003"
- x2="1516.374"
- y2="280.036"
- />
- </g>
- <g id="qskg10103" v-if="ajaxData.qskg10103">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1530.349"
- y1="362.324"
- x2="1530.349"
- y2="379.59"
- />
- <path
- fill="#9E2224"
- d="M1513.759,368.895c1.422,0,2.574,1.154,2.574,2.569c0,1.421-1.156,2.573-2.574,2.573 s-2.57-1.157-2.57-2.573C1511.188,370.045,1512.341,368.895,1513.759,368.895 M1513.759,366.861 c-2.545,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604s4.604-2.063,4.604-4.604 C1518.364,368.918,1516.306,366.861,1513.759,366.861L1513.759,366.861z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1530.124"
- y1="371.465"
- x2="1517.374"
- y2="371.465"
- />
- </g>
- <g id="on_14_" v-else-if="ajaxData.qskg10103 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1530.349"
- y1="362.324"
- x2="1530.349"
- y2="379.59"
- />
- <path
- fill="#27963A"
- d="M1513.759,368.895c1.422,0,2.576,1.154,2.576,2.569c0,1.421-1.154,2.573-2.576,2.573 c-1.418,0-2.57-1.157-2.57-2.573C1511.188,370.045,1512.341,368.895,1513.759,368.895 M1513.759,366.861 c-2.543,0-4.604,2.061-4.604,4.604s2.061,4.604,4.604,4.604c2.547,0,4.607-2.063,4.607-4.604 C1518.366,368.918,1516.306,366.861,1513.759,366.861L1513.759,366.861z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1528.19"
- y1="377.924"
- x2="1517.374"
- y2="370.957"
- />
- </g>
- <g id="qskg1010" v-if="ajaxData.qskg1010">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1575.767"
- y1="244.978"
- x2="1575.767"
- y2="227.712"
- />
- <path
- fill="#9E2224"
- d="M1592.354,238.411c-1.42,0-2.574-1.155-2.574-2.571s1.156-2.573,2.574-2.573s2.572,1.155,2.572,2.573 C1594.927,237.255,1593.772,238.411,1592.354,238.411 M1592.354,240.442c2.545,0,4.605-2.061,4.605-4.604 s-2.063-4.604-4.605-4.604s-4.604,2.063-4.604,4.604S1589.81,240.442,1592.354,240.442L1592.354,240.442z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1575.989"
- y1="235.837"
- x2="1588.739"
- y2="235.837"
- />
- </g>
- <g id="on_13_" v-else-if="ajaxData.qskg1010 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1575.767"
- y1="244.978"
- x2="1575.767"
- y2="227.712"
- />
- <path
- fill="#27963A"
- d="M1592.354,238.411c-1.42,0-2.576-1.155-2.576-2.571s1.156-2.573,2.576-2.573 c1.418,0,2.572,1.155,2.572,2.573C1594.927,237.255,1593.772,238.411,1592.354,238.411 M1592.354,240.442 c2.543,0,4.605-2.061,4.605-4.604s-2.063-4.604-4.605-4.604c-2.545,0-4.605,2.063-4.605,4.604S1589.81,240.442,1592.354,240.442 L1592.354,240.442z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1577.925"
- y1="229.378"
- x2="1588.739"
- y2="236.345"
- />
- </g>
- <g id="qskg10102" v-if="ajaxData.qskg10102">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1575.767"
- y1="335.521"
- x2="1575.767"
- y2="318.255"
- />
- <path
- fill="#9E2224"
- d="M1592.354,328.954c-1.42,0-2.574-1.155-2.574-2.571s1.156-2.573,2.574-2.573s2.572,1.155,2.572,2.573 C1594.927,327.798,1593.772,328.954,1592.354,328.954 M1592.354,330.985c2.545,0,4.605-2.061,4.605-4.604 s-2.063-4.604-4.605-4.604s-4.604,2.063-4.604,4.604S1589.81,330.985,1592.354,330.985L1592.354,330.985z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1575.989"
- y1="326.38"
- x2="1588.739"
- y2="326.38"
- />
- </g>
- <g id="on_12_" v-else-if="ajaxData.qskg10102 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1575.767"
- y1="335.521"
- x2="1575.767"
- y2="318.255"
- />
- <path
- fill="#27963A"
- d="M1592.354,328.954c-1.42,0-2.576-1.155-2.576-2.571s1.156-2.573,2.576-2.573 c1.418,0,2.572,1.155,2.572,2.573C1594.927,327.798,1593.772,328.954,1592.354,328.954 M1592.354,330.985 c2.543,0,4.605-2.061,4.605-4.604s-2.063-4.604-4.605-4.604c-2.545,0-4.605,2.063-4.605,4.604S1589.81,330.985,1592.354,330.985 L1592.354,330.985z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1577.925"
- y1="319.921"
- x2="1588.739"
- y2="326.888"
- />
- </g>
- <g id="qskg0110" v-if="ajaxData.dwkkg3130">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1464.835"
- y1="424.063"
- x2="1482.102"
- y2="424.063"
- />
- <path
- fill="#9E2224"
- d="M1471.403,440.651c0-1.421,1.156-2.57,2.571-2.57c1.421,0,2.573,1.154,2.573,2.57 c0,1.418-1.157,2.571-2.573,2.571C1472.557,443.225,1471.403,442.069,1471.403,440.651 M1469.372,440.651 c0,2.545,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604c0-2.541-2.061-4.604-4.604-4.604 C1471.43,436.047,1469.372,438.107,1469.372,440.651L1469.372,440.651z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1473.977"
- y1="424.289"
- x2="1473.977"
- y2="437.041"
- />
- </g>
- <g id="on_11_" v-else-if="ajaxData.dwkkg3130 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1464.835"
- y1="424.063"
- x2="1482.102"
- y2="424.063"
- />
- <path
- fill="#27963A"
- d="M1471.403,440.651c0-1.421,1.156-2.575,2.571-2.575c1.421,0,2.573,1.156,2.573,2.575 c0,1.42-1.157,2.571-2.573,2.571C1472.557,443.225,1471.403,442.069,1471.403,440.651 M1469.372,440.651 c0,2.543,2.063,4.604,4.604,4.604s4.604-2.062,4.604-4.604s-2.061-4.604-4.604-4.604 C1471.43,436.044,1469.372,438.107,1469.372,440.651L1469.372,440.651z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1480.436"
- y1="426.221"
- x2="1473.469"
- y2="437.041"
- />
- </g>
- <g id="qskg3150" v-if="ajaxData.qskg3150">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1119.942"
- y1="648.029"
- x2="1137.209"
- y2="648.029"
- />
- <path
- fill="#9E2224"
- d="M1126.513,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C1127.664,667.191,1126.513,666.039,1126.513,664.62 M1124.479,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C1126.536,660.014,1124.479,662.074,1124.479,664.62L1124.479,664.62z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1129.084"
- y1="648.254"
- x2="1129.084"
- y2="661.006"
- />
- </g>
- <g id="on_27_" v-else-if="ajaxData.qskg3150 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1119.942"
- y1="648.029"
- x2="1137.209"
- y2="648.029"
- />
- <path
- fill="#27963A"
- d="M1126.513,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C1127.664,667.191,1126.513,666.039,1126.513,664.62 M1124.479,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C1126.536,660.011,1124.479,662.074,1124.479,664.62L1124.479,664.62z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1135.543"
- y1="650.188"
- x2="1128.575"
- y2="661.006"
- />
- </g>
- <g id="qskg3160" v-if="ajaxData.qskg3160">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1036.567"
- y1="648.029"
- x2="1053.834"
- y2="648.029"
- />
- <path
- fill="#9E2224"
- d="M1043.138,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C1044.289,667.191,1043.138,666.039,1043.138,664.62 M1041.104,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C1043.161,660.014,1041.104,662.074,1041.104,664.62L1041.104,664.62z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1045.709"
- y1="648.254"
- x2="1045.709"
- y2="661.006"
- />
- </g>
- <g id="on_26_" v-else-if="ajaxData.qskg3160 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1036.567"
- y1="648.029"
- x2="1053.834"
- y2="648.029"
- />
- <path
- fill="#27963A"
- d="M1043.138,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C1044.289,667.191,1043.138,666.039,1043.138,664.62 M1041.104,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C1043.161,660.011,1041.104,662.074,1041.104,664.62L1041.104,664.62z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1052.168"
- y1="650.188"
- x2="1045.2"
- y2="661.006"
- />
- </g>
- <g id="qskg3210" v-if="ajaxData.qskg3210">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="585.392"
- y1="648.029"
- x2="602.658"
- y2="648.029"
- />
- <path
- fill="#9E2224"
- d="M591.962,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C593.113,667.191,591.962,666.039,591.962,664.62 M589.929,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C591.985,660.014,589.929,662.074,589.929,664.62L589.929,664.62z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="594.533"
- y1="648.254"
- x2="594.533"
- y2="661.006"
- />
- </g>
- <g id="on_21_" v-else-if="ajaxData.qskg3210 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="585.392"
- y1="648.029"
- x2="602.658"
- y2="648.029"
- />
- <path
- fill="#27963A"
- d="M591.962,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C593.113,667.191,591.962,666.039,591.962,664.62 M589.929,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C591.985,660.011,589.929,662.074,589.929,664.62L589.929,664.62z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="600.992"
- y1="650.188"
- x2="594.024"
- y2="661.006"
- />
- </g>
- <g id="qskg3220" v-if="ajaxData.qskg3220">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="502.105"
- y1="648.029"
- x2="519.372"
- y2="648.029"
- />
- <path
- fill="#9E2224"
- d="M508.676,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C509.827,667.191,508.676,666.039,508.676,664.62 M506.643,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C508.699,660.014,506.643,662.074,506.643,664.62L506.643,664.62z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="511.247"
- y1="648.254"
- x2="511.247"
- y2="661.006"
- />
- </g>
- <g id="on_22_" v-else-if="ajaxData.qskg3220 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="502.105"
- y1="648.029"
- x2="519.372"
- y2="648.029"
- />
- <path
- fill="#27963A"
- d="M508.676,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C509.827,667.191,508.676,666.039,508.676,664.62 M506.643,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C508.699,660.011,506.643,662.074,506.643,664.62L506.643,664.62z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="517.706"
- y1="650.188"
- x2="510.738"
- y2="661.006"
- />
- </g>
- <g id="qskg3230" v-if="ajaxData.qskg3230">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="295.677"
- y1="648.029"
- x2="312.943"
- y2="648.029"
- />
- <path
- fill="#9E2224"
- d="M302.247,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C303.398,667.191,302.247,666.039,302.247,664.62 M300.214,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C302.271,660.014,300.214,662.074,300.214,664.62L300.214,664.62z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="304.818"
- y1="648.254"
- x2="304.818"
- y2="661.006"
- />
- </g>
- <g id="on_23_" v-else-if="ajaxData.qskg3230 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="295.677"
- y1="648.029"
- x2="312.943"
- y2="648.029"
- />
- <path
- fill="#27963A"
- d="M302.247,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C303.398,667.191,302.247,666.039,302.247,664.62 M300.214,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C302.271,660.011,300.214,662.074,300.214,664.62L300.214,664.62z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="311.277"
- y1="650.188"
- x2="304.31"
- y2="661.006"
- />
- </g>
- <g id="qskg3240" v-if="ajaxData.qskg3240">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="212.871"
- y1="648.029"
- x2="230.138"
- y2="648.029"
- />
- <path
- fill="#9E2224"
- d="M219.441,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C220.593,667.191,219.441,666.039,219.441,664.62 M217.408,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C219.465,660.014,217.408,662.074,217.408,664.62L217.408,664.62z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="222.013"
- y1="648.254"
- x2="222.013"
- y2="661.006"
- />
- </g>
- <g id="on_24_" v-else-if="ajaxData.qskg3240 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="212.871"
- y1="648.029"
- x2="230.138"
- y2="648.029"
- />
- <path
- fill="#27963A"
- d="M219.441,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C220.593,667.191,219.441,666.039,219.441,664.62 M217.408,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C219.465,660.011,217.408,662.074,217.408,664.62L217.408,664.62z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="228.472"
- y1="650.188"
- x2="221.504"
- y2="661.006"
- />
- </g>
- <g id="qskg3250" v-if="ajaxData.qskg3250">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="129.247"
- y1="648.029"
- x2="146.513"
- y2="648.029"
- />
- <path
- fill="#9E2224"
- d="M135.817,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C136.968,667.191,135.817,666.039,135.817,664.62 M133.784,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C135.84,660.014,133.784,662.074,133.784,664.62L133.784,664.62z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="138.388"
- y1="648.254"
- x2="138.388"
- y2="661.006"
- />
- </g>
- <g id="on_31_" v-else-if="ajaxData.qskg3250 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="129.247"
- y1="648.029"
- x2="146.513"
- y2="648.029"
- />
- <path
- fill="#27963A"
- d="M135.817,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C136.968,667.191,135.817,666.039,135.817,664.62 M133.784,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C135.84,660.011,133.784,662.074,133.784,664.62L133.784,664.62z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="144.847"
- y1="650.188"
- x2="137.879"
- y2="661.006"
- />
- </g>
- <g id="qskg3130" v-if="ajaxData.qskg3130">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1304.763"
- y1="648.029"
- x2="1322.029"
- y2="648.029"
- />
- <path
- fill="#9E2224"
- d="M1311.333,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C1312.484,667.191,1311.333,666.039,1311.333,664.62 M1309.3,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C1311.356,660.014,1309.3,662.074,1309.3,664.62L1309.3,664.62z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1313.904"
- y1="648.254"
- x2="1313.904"
- y2="661.006"
- />
- </g>
- <g id="on_32_" v-else-if="ajaxData.qskg3130 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1304.763"
- y1="648.029"
- x2="1322.029"
- y2="648.029"
- />
- <path
- fill="#27963A"
- d="M1311.333,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C1312.484,667.191,1311.333,666.039,1311.333,664.62 M1309.3,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C1311.356,660.011,1309.3,662.074,1309.3,664.62L1309.3,664.62z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1320.363"
- y1="650.188"
- x2="1313.396"
- y2="661.006"
- />
- </g>
- <g id="qskg3120" v-if="ajaxData.qskg3120">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1388.763"
- y1="648.029"
- x2="1406.029"
- y2="648.029"
- />
- <path
- fill="#9E2224"
- d="M1395.333,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C1396.484,667.191,1395.333,666.039,1395.333,664.62 M1393.3,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C1395.356,660.014,1393.3,662.074,1393.3,664.62L1393.3,664.62z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1397.904"
- y1="648.254"
- x2="1397.904"
- y2="661.006"
- />
- </g>
- <g id="on_33_" v-else-if="ajaxData.qskg3120 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1388.763"
- y1="648.029"
- x2="1406.029"
- y2="648.029"
- />
- <path
- fill="#27963A"
- d="M1395.333,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C1396.484,667.191,1395.333,666.039,1395.333,664.62 M1393.3,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C1395.356,660.011,1393.3,662.074,1393.3,664.62L1393.3,664.62z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1404.363"
- y1="650.188"
- x2="1397.396"
- y2="661.006"
- />
- </g>
- <g id="qskg3110" v-if="ajaxData.qskg3110">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1471.483"
- y1="648.029"
- x2="1488.75"
- y2="648.029"
- />
- <path
- fill="#9E2224"
- d="M1478.054,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C1479.205,667.191,1478.054,666.039,1478.054,664.62 M1476.021,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C1478.077,660.014,1476.021,662.074,1476.021,664.62L1476.021,664.62z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1480.625"
- y1="648.254"
- x2="1480.625"
- y2="661.006"
- />
- </g>
- <g id="on_34_" v-else-if="ajaxData.qskg3110 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1471.483"
- y1="648.029"
- x2="1488.75"
- y2="648.029"
- />
- <path
- fill="#27963A"
- d="M1478.054,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C1479.205,667.191,1478.054,666.039,1478.054,664.62 M1476.021,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C1478.077,660.011,1476.021,662.074,1476.021,664.62L1476.021,664.62z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1487.084"
- y1="650.188"
- x2="1480.116"
- y2="661.006"
- />
- </g>
- <g id="qskg3140" v-if="ajaxData.qskg3140">
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1214.743"
- y1="648.029"
- x2="1232.01"
- y2="648.029"
- />
- <path
- fill="#9E2224"
- d="M1221.313,664.62c0-1.423,1.155-2.573,2.57-2.573c1.421,0,2.572,1.156,2.572,2.573 s-1.156,2.568-2.572,2.568C1222.465,667.191,1221.313,666.039,1221.313,664.62 M1219.28,664.62c0,2.544,2.061,4.604,4.604,4.604 s4.604-2.061,4.604-4.604c0-2.544-2.061-4.604-4.604-4.604C1221.337,660.014,1219.28,662.074,1219.28,664.62L1219.28,664.62z"
- />
- <line
- fill="none"
- stroke="#9E2224"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1223.885"
- y1="648.254"
- x2="1223.885"
- y2="661.006"
- />
- </g>
- <g id="on_29_" v-else-if="ajaxData.qskg3140 == false">
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2.5"
- stroke-miterlimit="10"
- x1="1214.743"
- y1="648.029"
- x2="1232.01"
- y2="648.029"
- />
- <path
- fill="#27963A"
- d="M1221.313,664.62c0-1.423,1.155-2.576,2.57-2.576c1.421,0,2.572,1.155,2.572,2.576 c0,1.419-1.156,2.568-2.572,2.568C1222.465,667.191,1221.313,666.039,1221.313,664.62 M1219.28,664.62 c0,2.543,2.061,4.604,4.604,4.604s4.604-2.061,4.604-4.604c0-2.546-2.061-4.606-4.604-4.606 C1221.337,660.011,1219.28,662.074,1219.28,664.62L1219.28,664.62z"
- />
- <line
- fill="none"
- stroke="#27963A"
- stroke-width="2"
- stroke-miterlimit="10"
- x1="1230.344"
- y1="650.188"
- x2="1223.376"
- y2="661.006"
- />
- </g>
- </g>
- <g id="dlq">
- <rect
- x="875.013"
- y="144.824"
- :fill="ajaxData.qsdlq111 ? red : green"
- width="15.98"
- height="24.202"
- />
- <rect
- x="478.953"
- y="292.108"
- :fill="ajaxData.qsdlq102 ? red : green"
- width="15.98"
- height="24.202"
- />
- <rect
- x="1544.697"
- y="292.108"
- :fill="ajaxData.qsdlq101 ? red : green"
- width="15.98"
- height="24.202"
- />
- <rect
- x="478.355"
- y="476.034"
- :fill="ajaxData.qsdlq302 ? red : green"
- width="15.462"
- height="24.008"
- />
- <rect
- x="1544.1"
- y="476.034"
- :fill="ajaxData.qsdlq301 ? red : green"
- width="15.462"
- height="24.008"
- />
- <rect
- x="152.01"
- y="580.707"
- :fill="ajaxData.qsdlq325 ? red : green"
- width="15.463"
- height="24.008"
- />
- <rect
- x="233.691"
- y="580.707"
- :fill="ajaxData.qsdlq324 ? red : green"
- width="15.463"
- height="24.008"
- />
- <rect
- x="318.382"
- y="580.707"
- :fill="ajaxData.qsdlq323 ? red : green"
- width="15.463"
- height="24.008"
- />
- <rect
- x="522.926"
- y="580.707"
- :fill="ajaxData.qsdlq322 ? red : green"
- width="15.463"
- height="24.008"
- />
- <rect
- x="606.212"
- y="580.707"
- :fill="ajaxData.qsdlq321 ? red : green"
- width="15.463"
- height="24.008"
- />
- <rect
- x="776.712"
- y="580.707"
- :fill="ajaxData.qsdlq300 ? red : green"
- width="15.463"
- height="24.008"
- />
- <rect
- x="1057.387"
- y="580.707"
- :fill="ajaxData.qsdlq316 ? red : green"
- width="15.463"
- height="24.008"
- />
- <rect
- x="1141.16"
- y="580.707"
- :fill="ajaxData.qsdlq315 ? red : green"
- width="15.463"
- height="24.008"
- />
- <rect
- x="1234.961"
- y="580.707"
- :fill="ajaxData.qsdlq314 ? red : green"
- width="15.463"
- height="24.008"
- />
- <rect
- x="1325.98"
- y="580.707"
- :fill="ajaxData.qsdlq313 ? red : green"
- width="15.463"
- height="24.008"
- />
- <rect
- x="1409.98"
- y="580.707"
- :fill="ajaxData.qsdlq312 ? red : green"
- width="15.463"
- height="24.008"
- />
- <rect
- x="1492.701"
- y="580.707"
- :fill="ajaxData.qsdlq311 ? red : green"
- width="15.463"
- height="24.008"
- />
- </g>
- <g id="sc">
- <g>
- <polyline
- fill="none"
- :stroke="ajaxData.qssc302 ? red : green"
- stroke-miterlimit="10"
- points="478.802,467.081 485.625,459.361 492.645,467.081 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc302 ? red : green"
- stroke-miterlimit="10"
- points="478.802,472.931 485.625,465.212 492.645,472.931 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc302 ? red : green"
- stroke-miterlimit="10"
- points="492.645,509.374 485.822,517.096 478.802,509.374 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc302 ? red : green"
- stroke-miterlimit="10"
- points="492.645,504.597 485.822,512.319 478.802,504.597 "
- />
- </g>
- <g>
- <polyline
- fill="none"
- :stroke="ajaxData.qssc301 ? red : green"
- stroke-miterlimit="10"
- points="1544.546,467.081 1551.37,459.361 1558.39,467.081 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc301 ? red : green"
- stroke-miterlimit="10"
- points="1544.546,472.931 1551.37,465.212 1558.39,472.931 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc301 ? red : green"
- stroke-miterlimit="10"
- points="1558.39,509.374 1551.566,517.096 1544.546,509.374 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc301 ? red : green"
- stroke-miterlimit="10"
- points="1558.39,504.597 1551.566,512.319 1544.546,504.597 "
- />
- </g>
- <g>
- <polyline
- fill="none"
- :stroke="ajaxData.qssc325 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="166.663,613.668 159.841,621.387 152.819,613.668 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc325 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="166.663,607.818 159.841,615.537 152.819,607.818 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc325 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="152.819,576.152 159.644,568.43 166.663,576.152 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc325 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="152.819,568.992 159.644,561.27 166.663,568.992 "
- />
- </g>
- <g>
- <polyline
- fill="none"
- :stroke="ajaxData.qssc324 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="248.345,613.668 241.522,621.387 234.501,613.668 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc324 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="248.345,607.818 241.522,615.537 234.501,607.818 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc324 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="234.501,576.152 241.325,568.43 248.345,576.152 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc324 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="234.501,568.992 241.325,561.27 248.345,568.992 "
- />
- </g>
- <g>
- <polyline
- fill="none"
- :stroke="ajaxData.qssc323 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="333.036,613.668 326.213,621.387 319.192,613.668 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc323 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="333.036,607.818 326.213,615.537 319.192,607.818 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc323 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="319.192,576.152 326.016,568.43 333.036,576.152 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc323 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="319.192,568.992 326.016,561.27 333.036,568.992 "
- />
- </g>
- <g>
- <polyline
- fill="none"
- :stroke="ajaxData.qssc329 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="422.289,583.152 429.113,575.43 436.133,583.152 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc329 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="422.289,575.992 429.113,568.27 436.133,575.992 "
- />
- </g>
- <g>
- <polyline
- fill="none"
- :stroke="ajaxData.qssc322 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="537.579,613.668 530.757,621.387 523.735,613.668 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc322 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="537.579,607.818 530.757,615.537 523.735,607.818 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc322 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="523.735,576.152 530.56,568.43 537.579,576.152 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc322 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="523.735,568.992 530.56,561.27 537.579,568.992 "
- />
- </g>
- <g>
- <polyline
- fill="none"
- :stroke="ajaxData.qssc321 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="620.865,613.668 614.043,621.387 607.021,613.668 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc321 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="620.865,607.818 614.043,615.537 607.021,607.818 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc321 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="607.021,576.152 613.846,568.43 620.865,576.152 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc321 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="607.021,568.992 613.846,561.27 620.865,568.992 "
- />
- </g>
- <g>
- <polyline
- fill="none"
- :stroke="ajaxData.qssc300 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="791.365,613.668 784.543,621.387 777.521,613.668 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc300 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="791.365,607.818 784.543,615.537 777.521,607.818 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc300 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="777.521,576.152 784.346,568.43 791.365,576.152 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc300 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="777.521,568.992 784.346,561.27 791.365,568.992 "
- />
- </g>
- <g>
- <polyline
- fill="none"
- :stroke="ajaxData.qssc3001 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="990.365,613.668 983.543,621.387 976.521,613.668 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc3001 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="990.365,607.818 983.543,615.537 976.521,607.818 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc3001 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="976.521,576.152 983.346,568.43 990.365,576.152 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc3001 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="976.521,568.992 983.346,561.27 990.365,568.992 "
- />
- </g>
- <g>
- <polyline
- fill="none"
- :stroke="ajaxData.qssc316 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1072.04,613.668 1065.218,621.387 1058.196,613.668 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc316 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1072.04,607.818 1065.218,615.537 1058.196,607.818 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc316 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1058.196,576.152 1065.021,568.43 1072.04,576.152 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc316 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1058.196,568.992 1065.021,561.27 1072.04,568.992 "
- />
- </g>
- <g>
- <polyline
- fill="none"
- :stroke="ajaxData.qssc315 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1155.813,613.668 1148.991,621.387 1141.97,613.668 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc315 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1155.813,607.818 1148.991,615.537 1141.97,607.818 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc315 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1141.97,576.152 1148.794,568.43 1155.813,576.152 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc315 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1141.97,568.992 1148.794,561.27 1155.813,568.992 "
- />
- </g>
- <g>
- <polyline
- fill="none"
- :stroke="ajaxData.qssc314 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1249.614,613.668 1242.792,621.387 1235.771,613.668 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc314 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1249.614,607.818 1242.792,615.537 1235.771,607.818 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc314 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1235.771,576.152 1242.595,568.43 1249.614,576.152 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc314 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1235.771,568.992 1242.595,561.27 1249.614,568.992 "
- />
- </g>
- <g>
- <polyline
- fill="none"
- :stroke="ajaxData.qssc313 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1340.634,613.668 1333.812,621.387 1326.79,613.668 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc313 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1340.634,607.818 1333.812,615.537 1326.79,607.818 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc313 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1326.79,576.152 1333.614,568.43 1340.634,576.152 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc313 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1326.79,568.992 1333.614,561.27 1340.634,568.992 "
- />
- </g>
- <g>
- <polyline
- fill="none"
- :stroke="ajaxData.qssc312 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1424.634,613.668 1417.812,621.387 1410.79,613.668 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc312 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1424.634,607.818 1417.812,615.537 1410.79,607.818 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc312 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1410.79,576.152 1417.614,568.43 1424.634,576.152 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc312 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1410.79,568.992 1417.614,561.27 1424.634,568.992 "
- />
- </g>
- <g>
- <polyline
- fill="none"
- :stroke="ajaxData.qssc311 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1507.354,613.668 1500.532,621.387 1493.511,613.668 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc311 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1507.354,607.818 1500.532,615.537 1493.511,607.818 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc311 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1493.511,576.152 1500.335,568.43 1507.354,576.152 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc311 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1493.511,568.992 1500.335,561.27 1507.354,568.992 "
- />
- </g>
- <g>
- <polyline
- fill="none"
- :stroke="ajaxData.qssc319 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1600.558,575.264 1607.382,567.541 1614.401,575.264 "
- />
- <polyline
- fill="none"
- :stroke="ajaxData.qssc319 ? red : green"
- stroke-width="1.3"
- stroke-miterlimit="10"
- points="1600.558,568.104 1607.382,560.381 1614.401,568.104 "
- />
- </g>
- </g>
- </svg>
- </template>
- </previewPicture>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import previewPicture from "../previewPicture.vue";
- import { BoosterStation } from "./BoosterStation";
- 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);
- },
- methods: {
- closed() {
- clearInterval(this.interval);
- },
- refreshTPData() {
- this.boosterStation.getDatas("QS_FDC", 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%;
- }
- </style>
|