巡检异常.html 224 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>巡检异常</title>
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
  6. <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
  7. <link href="resources/css/axure_rp_page.css" type="text/css" rel="stylesheet"/>
  8. <link href="data/styles.css" type="text/css" rel="stylesheet"/>
  9. <link href="files/巡检异常/styles.css" type="text/css" rel="stylesheet"/>
  10. <link href="https://fonts.googleapis.com" rel="preconnect"/>
  11. <link href="https://fonts.gstatic.com" rel="preconnect"/>
  12. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet"/>
  13. <script src="resources/scripts/jquery-3.7.1.min.js"></script>
  14. <script src="resources/scripts/axure/axQuery.js"></script>
  15. <script src="resources/scripts/axure/globals.js"></script>
  16. <script src="resources/scripts/axutils.js"></script>
  17. <script src="resources/scripts/axure/annotation.js"></script>
  18. <script src="resources/scripts/axure/axQuery.std.js"></script>
  19. <script src="resources/scripts/axure/doc.js"></script>
  20. <script src="resources/scripts/messagecenter.js"></script>
  21. <script src="resources/scripts/axure/events.js"></script>
  22. <script src="resources/scripts/axure/recording.js"></script>
  23. <script src="resources/scripts/axure/action.js"></script>
  24. <script src="resources/scripts/axure/expr.js"></script>
  25. <script src="resources/scripts/axure/geometry.js"></script>
  26. <script src="resources/scripts/axure/flyout.js"></script>
  27. <script src="resources/scripts/axure/model.js"></script>
  28. <script src="resources/scripts/axure/repeater.js"></script>
  29. <script src="resources/scripts/axure/sto.js"></script>
  30. <script src="resources/scripts/axure/utils.temp.js"></script>
  31. <script src="resources/scripts/axure/variables.js"></script>
  32. <script src="resources/scripts/axure/drag.js"></script>
  33. <script src="resources/scripts/axure/move.js"></script>
  34. <script src="resources/scripts/axure/visibility.js"></script>
  35. <script src="resources/scripts/axure/style.js"></script>
  36. <script src="resources/scripts/axure/adaptive.js"></script>
  37. <script src="resources/scripts/axure/tree.js"></script>
  38. <script src="resources/scripts/axure/init.temp.js"></script>
  39. <script src="resources/scripts/axure/legacy.js"></script>
  40. <script src="resources/scripts/axure/viewer.js"></script>
  41. <script src="resources/scripts/axure/math.js"></script>
  42. <script src="resources/scripts/axure/jquery.nicescroll.min.js"></script>
  43. <script src="data/document.js"></script>
  44. <script src="files/巡检异常/data.js"></script>
  45. <script type="text/javascript">
  46. $axure.utils.getTransparentGifPath = function() { return 'resources/images/transparent.gif'; };
  47. $axure.utils.getOtherPath = function() { return 'resources/Other.html'; };
  48. $axure.utils.getReloadPath = function() { return 'resources/reload.html'; };
  49. </script>
  50. </head>
  51. <body>
  52. <div id="base" class="">
  53. <!-- Unnamed (客户管理端-一级) -->
  54. <div id="u32060" class="nopointer ax_default">
  55. <!-- Unnamed (Rectangle) -->
  56. <div id="u32061" class="ax_default box_2 transition">
  57. <div id="u32061_div" class=""></div>
  58. <div id="u32061_text" class="text " style="display:none; visibility: hidden">
  59. <p></p>
  60. </div>
  61. </div>
  62. <!-- Unnamed (Rectangle) -->
  63. <div id="u32062" class="ax_default label transition">
  64. <div id="u32062_div" class=""></div>
  65. <div id="u32062_text" class="text ">
  66. <p><span>课后延时慧学平台</span></p>
  67. </div>
  68. </div>
  69. <!-- Unnamed (Rectangle) -->
  70. <div id="u32063" class="ax_default box_2 transition">
  71. <div id="u32063_div" class=""></div>
  72. <div id="u32063_text" class="text " style="display:none; visibility: hidden">
  73. <p></p>
  74. </div>
  75. </div>
  76. <!-- Unnamed (Group) -->
  77. <div id="u32064" class="ax_default" data-left="19" data-top="10" data-width="204" data-height="31" layer-opacity="1">
  78. <!-- Unnamed (Ellipse) -->
  79. <div id="u32065" class="ax_default ellipse transition">
  80. <svg data="images/pc网页端/u5.svg" id="u32065_img" class="img generatedImage">
  81. <defs>
  82. <pattern id="u32065_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  83. <mask fill="white" id="u32065_img_cl2539">
  84. <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " fill-rule="evenodd" />
  85. </mask>
  86. </defs>
  87. <g transform="matrix(1 0 0 1 -19 -10 )">
  88. <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 19 10 )" class="fill" />
  89. <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 19 10 )" class="stroke" mask="url(#u32065_img_cl2539)" />
  90. </g>
  91. </svg>
  92. <div id="u32065_text" class="text ">
  93. <p><span>logo</span></p>
  94. </div>
  95. </div>
  96. <!-- Unnamed (Rectangle) -->
  97. <div id="u32066" class="ax_default label transition">
  98. <div id="u32066_div" class=""></div>
  99. <div id="u32066_text" class="text ">
  100. <p><span>保利智慧社区管理平台</span></p>
  101. </div>
  102. </div>
  103. </div>
  104. <!-- Unnamed (Rectangle) -->
  105. <div id="u32067" class="ax_default box_2 transition">
  106. <div id="u32067_div" class=""></div>
  107. <div id="u32067_text" class="text " style="display:none; visibility: hidden">
  108. <p></p>
  109. </div>
  110. </div>
  111. <!-- Unnamed (Group) -->
  112. <div id="u32068" class="ax_default" data-left="20" data-top="171" data-width="52" data-height="22" layer-opacity="1">
  113. <!-- Unnamed (Rectangle) -->
  114. <div id="u32069" class="ax_default label transition">
  115. <div id="u32069_div" class=""></div>
  116. <div id="u32069_text" class="text ">
  117. <p><span>项目</span></p>
  118. </div>
  119. </div>
  120. <!-- Unnamed (Placeholder) -->
  121. <div id="u32070" class="ax_default placeholder transition">
  122. <svg data="images/巡检异常/u32070.svg" id="u32070_img" class="img generatedImage">
  123. <defs>
  124. <pattern id="u32070_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  125. <mask fill="white" id="u32070_img_cl4268">
  126. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  127. </mask>
  128. </defs>
  129. <g transform="matrix(1 0 0 1 -20 -175 )">
  130. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 175 )" class="fill" />
  131. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 175 )" class="stroke" mask="url(#u32070_img_cl4268)" />
  132. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 175 )" class="stroke" />
  133. </g>
  134. </svg>
  135. <div id="u32070_text" class="text " style="display:none; visibility: hidden">
  136. <p></p>
  137. </div>
  138. </div>
  139. </div>
  140. <!-- Unnamed (Group) -->
  141. <div id="u32071" class="ax_default" data-left="20" data-top="381" data-width="52" data-height="22" layer-opacity="1">
  142. <!-- Unnamed (Rectangle) -->
  143. <div id="u32072" class="ax_default label transition">
  144. <div id="u32072_div" class=""></div>
  145. <div id="u32072_text" class="text ">
  146. <p><span>企业</span></p>
  147. </div>
  148. </div>
  149. <!-- Unnamed (Placeholder) -->
  150. <div id="u32073" class="ax_default placeholder transition">
  151. <svg data="images/巡检异常/u32073.svg" id="u32073_img" class="img generatedImage">
  152. <defs>
  153. <pattern id="u32073_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  154. <mask fill="white" id="u32073_img_cl4269">
  155. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  156. </mask>
  157. </defs>
  158. <g transform="matrix(1 0 0 1 -20 -385 )">
  159. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 385 )" class="fill" />
  160. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 385 )" class="stroke" mask="url(#u32073_img_cl4269)" />
  161. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 385 )" class="stroke" />
  162. </g>
  163. </svg>
  164. <div id="u32073_text" class="text " style="display:none; visibility: hidden">
  165. <p></p>
  166. </div>
  167. </div>
  168. </div>
  169. <!-- Unnamed (Group) -->
  170. <div id="u32074" class="ax_default" data-left="20" data-top="133" data-width="68" data-height="22" layer-opacity="1">
  171. <!-- Unnamed (Rectangle) -->
  172. <div id="u32075" class="ax_default label transition">
  173. <div id="u32075_div" class=""></div>
  174. <div id="u32075_text" class="text ">
  175. <p><span>可视化</span></p>
  176. </div>
  177. </div>
  178. <!-- Unnamed (Placeholder) -->
  179. <div id="u32076" class="ax_default placeholder transition">
  180. <svg data="images/巡检异常/u32076.svg" id="u32076_img" class="img generatedImage">
  181. <defs>
  182. <pattern id="u32076_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  183. <mask fill="white" id="u32076_img_cl4270">
  184. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  185. </mask>
  186. </defs>
  187. <g transform="matrix(1 0 0 1 -20 -137 )">
  188. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 137 )" class="fill" />
  189. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 137 )" class="stroke" mask="url(#u32076_img_cl4270)" />
  190. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 137 )" class="stroke" />
  191. </g>
  192. </svg>
  193. <div id="u32076_text" class="text " style="display:none; visibility: hidden">
  194. <p></p>
  195. </div>
  196. </div>
  197. </div>
  198. <!-- Unnamed (Group) -->
  199. <div id="u32077" class="ax_default" data-left="20" data-top="423" data-width="52" data-height="22" layer-opacity="1">
  200. <!-- Unnamed (Rectangle) -->
  201. <div id="u32078" class="ax_default label transition">
  202. <div id="u32078_div" class=""></div>
  203. <div id="u32078_text" class="text ">
  204. <p><span>标签</span></p>
  205. </div>
  206. </div>
  207. <!-- Unnamed (Placeholder) -->
  208. <div id="u32079" class="ax_default placeholder transition">
  209. <svg data="images/巡检异常/u32079.svg" id="u32079_img" class="img generatedImage">
  210. <defs>
  211. <pattern id="u32079_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  212. <mask fill="white" id="u32079_img_cl4271">
  213. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  214. </mask>
  215. </defs>
  216. <g transform="matrix(1 0 0 1 -20 -427 )">
  217. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 427 )" class="fill" />
  218. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 427 )" class="stroke" mask="url(#u32079_img_cl4271)" />
  219. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 427 )" class="stroke" />
  220. </g>
  221. </svg>
  222. <div id="u32079_text" class="text " style="display:none; visibility: hidden">
  223. <p></p>
  224. </div>
  225. </div>
  226. </div>
  227. <!-- Unnamed (Group) -->
  228. <div id="u32080" class="ax_default" data-left="20" data-top="297" data-width="52" data-height="22" layer-opacity="1">
  229. <!-- Unnamed (Rectangle) -->
  230. <div id="u32081" class="ax_default label transition">
  231. <div id="u32081_div" class=""></div>
  232. <div id="u32081_text" class="text ">
  233. <p><span>财务</span></p>
  234. </div>
  235. </div>
  236. <!-- Unnamed (Placeholder) -->
  237. <div id="u32082" class="ax_default placeholder transition">
  238. <svg data="images/巡检异常/u32082.svg" id="u32082_img" class="img generatedImage">
  239. <defs>
  240. <pattern id="u32082_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  241. <mask fill="white" id="u32082_img_cl4272">
  242. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  243. </mask>
  244. </defs>
  245. <g transform="matrix(1 0 0 1 -20 -301 )">
  246. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 301 )" class="fill" />
  247. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 301 )" class="stroke" mask="url(#u32082_img_cl4272)" />
  248. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 301 )" class="stroke" />
  249. </g>
  250. </svg>
  251. <div id="u32082_text" class="text " style="display:none; visibility: hidden">
  252. <p></p>
  253. </div>
  254. </div>
  255. </div>
  256. <!-- Unnamed (Group) -->
  257. <div id="u32083" class="ax_default" data-left="20" data-top="213" data-width="52" data-height="22" layer-opacity="1">
  258. <!-- Unnamed (Rectangle) -->
  259. <div id="u32084" class="ax_default label transition">
  260. <div id="u32084_div" class=""></div>
  261. <div id="u32084_text" class="text ">
  262. <p><span>空间</span></p>
  263. </div>
  264. </div>
  265. <!-- Unnamed (Placeholder) -->
  266. <div id="u32085" class="ax_default placeholder transition">
  267. <svg data="images/巡检异常/u32085.svg" id="u32085_img" class="img generatedImage">
  268. <defs>
  269. <pattern id="u32085_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  270. <mask fill="white" id="u32085_img_cl4273">
  271. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  272. </mask>
  273. </defs>
  274. <g transform="matrix(1 0 0 1 -20 -217 )">
  275. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 217 )" class="fill" />
  276. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 217 )" class="stroke" mask="url(#u32085_img_cl4273)" />
  277. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 217 )" class="stroke" />
  278. </g>
  279. </svg>
  280. <div id="u32085_text" class="text " style="display:none; visibility: hidden">
  281. <p></p>
  282. </div>
  283. </div>
  284. </div>
  285. <!-- Unnamed (Group) -->
  286. <div id="u32086" class="ax_default" data-left="20" data-top="339" data-width="52" data-height="22" layer-opacity="1">
  287. <!-- Unnamed (Rectangle) -->
  288. <div id="u32087" class="ax_default label transition">
  289. <div id="u32087_div" class=""></div>
  290. <div id="u32087_text" class="text ">
  291. <p><span>办公</span></p>
  292. </div>
  293. </div>
  294. <!-- Unnamed (Placeholder) -->
  295. <div id="u32088" class="ax_default placeholder transition">
  296. <svg data="images/巡检异常/u32088.svg" id="u32088_img" class="img generatedImage">
  297. <defs>
  298. <pattern id="u32088_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  299. <mask fill="white" id="u32088_img_cl4274">
  300. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  301. </mask>
  302. </defs>
  303. <g transform="matrix(1 0 0 1 -20 -343 )">
  304. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 343 )" class="fill" />
  305. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 343 )" class="stroke" mask="url(#u32088_img_cl4274)" />
  306. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 343 )" class="stroke" />
  307. </g>
  308. </svg>
  309. <div id="u32088_text" class="text " style="display:none; visibility: hidden">
  310. <p></p>
  311. </div>
  312. </div>
  313. </div>
  314. <!-- Unnamed (Group) -->
  315. <div id="u32089" class="ax_default" data-left="20" data-top="465" data-width="52" data-height="22" layer-opacity="1">
  316. <!-- Unnamed (Rectangle) -->
  317. <div id="u32090" class="ax_default label transition">
  318. <div id="u32090_div" class=""></div>
  319. <div id="u32090_text" class="text ">
  320. <p><span>系统</span></p>
  321. </div>
  322. </div>
  323. <!-- Unnamed (Placeholder) -->
  324. <div id="u32091" class="ax_default placeholder transition">
  325. <svg data="images/巡检异常/u32091.svg" id="u32091_img" class="img generatedImage">
  326. <defs>
  327. <pattern id="u32091_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  328. <mask fill="white" id="u32091_img_cl4275">
  329. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  330. </mask>
  331. </defs>
  332. <g transform="matrix(1 0 0 1 -20 -469 )">
  333. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 469 )" class="fill" />
  334. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 469 )" class="stroke" mask="url(#u32091_img_cl4275)" />
  335. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 469 )" class="stroke" />
  336. </g>
  337. </svg>
  338. <div id="u32091_text" class="text " style="display:none; visibility: hidden">
  339. <p></p>
  340. </div>
  341. </div>
  342. </div>
  343. <!-- Unnamed (Group) -->
  344. <div id="u32092" class="ax_default" data-left="20" data-top="1144" data-width="61" data-height="22" layer-opacity="1">
  345. <!-- Unnamed (Rectangle) -->
  346. <div id="u32093" class="ax_default label transition">
  347. <div id="u32093_div" class=""></div>
  348. <div id="u32093_text" class="text ">
  349. <p><span>消息</span></p>
  350. </div>
  351. </div>
  352. <!-- Unnamed (Placeholder) -->
  353. <div id="u32094" class="ax_default placeholder transition">
  354. <svg data="images/巡检异常/u32094.svg" id="u32094_img" class="img generatedImage">
  355. <defs>
  356. <pattern id="u32094_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  357. <mask fill="white" id="u32094_img_cl4276">
  358. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  359. </mask>
  360. </defs>
  361. <g transform="matrix(1 0 0 1 -20 -1144 )">
  362. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1144 )" class="fill" />
  363. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1144 )" class="stroke" mask="url(#u32094_img_cl4276)" />
  364. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1144 )" class="stroke" />
  365. </g>
  366. </svg>
  367. <div id="u32094_text" class="text " style="display:none; visibility: hidden">
  368. <p></p>
  369. </div>
  370. </div>
  371. </div>
  372. <!-- Unnamed (Group) -->
  373. <div id="u32095" class="ax_default" data-left="20" data-top="1186" data-width="61" data-height="22" layer-opacity="1">
  374. <!-- Unnamed (Rectangle) -->
  375. <div id="u32096" class="ax_default label transition">
  376. <div id="u32096_div" class=""></div>
  377. <div id="u32096_text" class="text ">
  378. <p><span>设置</span></p>
  379. </div>
  380. </div>
  381. <!-- Unnamed (Placeholder) -->
  382. <div id="u32097" class="ax_default placeholder transition">
  383. <svg data="images/巡检异常/u32097.svg" id="u32097_img" class="img generatedImage">
  384. <defs>
  385. <pattern id="u32097_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  386. <mask fill="white" id="u32097_img_cl4277">
  387. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  388. </mask>
  389. </defs>
  390. <g transform="matrix(1 0 0 1 -20 -1186 )">
  391. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1186 )" class="fill" />
  392. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1186 )" class="stroke" mask="url(#u32097_img_cl4277)" />
  393. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1186 )" class="stroke" />
  394. </g>
  395. </svg>
  396. <div id="u32097_text" class="text " style="display:none; visibility: hidden">
  397. <p></p>
  398. </div>
  399. </div>
  400. </div>
  401. <!-- Unnamed (Group) -->
  402. <div id="u32098" class="ax_default" data-left="20" data-top="255" data-width="52" data-height="22" layer-opacity="1">
  403. <!-- Unnamed (Rectangle) -->
  404. <div id="u32099" class="ax_default label transition">
  405. <div id="u32099_div" class=""></div>
  406. <div id="u32099_text" class="text ">
  407. <p><span>收费</span></p>
  408. </div>
  409. </div>
  410. <!-- Unnamed (Placeholder) -->
  411. <div id="u32100" class="ax_default placeholder transition">
  412. <svg data="images/巡检异常/u32100.svg" id="u32100_img" class="img generatedImage">
  413. <defs>
  414. <pattern id="u32100_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  415. <mask fill="white" id="u32100_img_cl4278">
  416. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  417. </mask>
  418. </defs>
  419. <g transform="matrix(1 0 0 1 -20 -259 )">
  420. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 259 )" class="fill" />
  421. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 259 )" class="stroke" mask="url(#u32100_img_cl4278)" />
  422. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 259 )" class="stroke" />
  423. </g>
  424. </svg>
  425. <div id="u32100_text" class="text " style="display:none; visibility: hidden">
  426. <p></p>
  427. </div>
  428. </div>
  429. </div>
  430. <!-- Unnamed (Group) -->
  431. <div id="u32101" class="ax_default" data-left="1194" data-top="11" data-width="386" data-height="27" layer-opacity="1">
  432. <!-- Unnamed (Droplist) -->
  433. <div id="u32102" class="ax_default droplist transition">
  434. <div id="u32102_div" class=""></div>
  435. <select id="u32102_input" class="u32102_input">
  436. <option class="u32102_input_option" value="西安中尚硕房地产开发有限公司">西安中尚硕房地产开发有限公司</option>
  437. </select>
  438. </div>
  439. <!-- Unnamed (Placeholder) -->
  440. <div id="u32103" class="ax_default placeholder transition">
  441. <svg data="images/巡检异常/u32103.svg" id="u32103_img" class="img generatedImage">
  442. <defs>
  443. <pattern id="u32103_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  444. <mask fill="white" id="u32103_img_cl4279">
  445. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  446. </mask>
  447. </defs>
  448. <g transform="matrix(1 0 0 1 -1194 -14 )">
  449. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 1194 14 )" class="fill" />
  450. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1194 14 )" class="stroke" mask="url(#u32103_img_cl4279)" />
  451. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1194 14 )" class="stroke" />
  452. </g>
  453. </svg>
  454. <div id="u32103_text" class="text " style="display:none; visibility: hidden">
  455. <p></p>
  456. </div>
  457. </div>
  458. <!-- Unnamed (Rectangle) -->
  459. <div id="u32104" class="ax_default label transition">
  460. <div id="u32104_div" class=""></div>
  461. <div id="u32104_text" class="text ">
  462. <p><span>进入运营后台</span></p>
  463. </div>
  464. </div>
  465. <!-- Unnamed (Vertical line) -->
  466. <div id="u32105" class="ax_default line1 transition">
  467. <svg data="images/pc网页端/u45.svg" id="u32105_img" class="img generatedImage">
  468. <g transform="matrix(1 0 0 1 -1452 -19 )">
  469. <path d="M 0.5 0 L 0.5 11 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 1)" fill="none" transform="matrix(1 0 0 1 1452 19 )" class="stroke" />
  470. </g>
  471. </svg>
  472. <div id="u32105_text" class="text " style="display:none; visibility: hidden">
  473. <p></p>
  474. </div>
  475. </div>
  476. </div>
  477. <!-- Unnamed (Group) -->
  478. <div id="u32106" class="ax_default" data-left="20" data-top="1081" data-width="61" data-height="22" layer-opacity="1">
  479. <!-- Unnamed (Rectangle) -->
  480. <div id="u32107" class="ax_default label transition">
  481. <div id="u32107_div" class=""></div>
  482. <div id="u32107_text" class="text ">
  483. <p><span>应用</span></p>
  484. </div>
  485. </div>
  486. <!-- Unnamed (Placeholder) -->
  487. <div id="u32108" class="ax_default placeholder transition">
  488. <svg data="images/巡检异常/u32108.svg" id="u32108_img" class="img generatedImage">
  489. <defs>
  490. <pattern id="u32108_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  491. <mask fill="white" id="u32108_img_cl4280">
  492. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  493. </mask>
  494. </defs>
  495. <g transform="matrix(1 0 0 1 -20 -1081 )">
  496. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1081 )" class="fill" />
  497. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1081 )" class="stroke" mask="url(#u32108_img_cl4280)" />
  498. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1081 )" class="stroke" />
  499. </g>
  500. </svg>
  501. <div id="u32108_text" class="text " style="display:none; visibility: hidden">
  502. <p></p>
  503. </div>
  504. </div>
  505. </div>
  506. <!-- Unnamed (Line) -->
  507. <div id="u32109" class="ax_default line1 transition">
  508. <svg data="images/pc网页端/u49.svg" id="u32109_img" class="img generatedImage">
  509. <g transform="matrix(1 0 0 1 -20 -1123 )">
  510. <path d="M 0 0.5 L 68 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 1123 )" class="stroke" />
  511. </g>
  512. </svg>
  513. <div id="u32109_text" class="text " style="display:none; visibility: hidden">
  514. <p></p>
  515. </div>
  516. </div>
  517. <!-- Unnamed (Line) -->
  518. <div id="u32110" class="ax_default line1 transition">
  519. <svg data="images/pc网页端/u49.svg" id="u32110_img" class="img generatedImage">
  520. <g transform="matrix(1 0 0 1 -20 -1123 )">
  521. <path d="M 0 0.5 L 68 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 1123 )" class="stroke" />
  522. </g>
  523. </svg>
  524. <div id="u32110_text" class="text " style="display:none; visibility: hidden">
  525. <p></p>
  526. </div>
  527. </div>
  528. <!-- Unnamed (Line) -->
  529. <div id="u32111" class="ax_default line1 transition">
  530. <svg data="images/pc网页端/u51.svg" id="u32111_img" class="img generatedImage">
  531. <g transform="matrix(1 0 0 1 -20 -112 )">
  532. <path d="M 0 0.5 L 56 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 112 )" class="stroke" />
  533. </g>
  534. </svg>
  535. <div id="u32111_text" class="text " style="display:none; visibility: hidden">
  536. <p></p>
  537. </div>
  538. </div>
  539. <!-- Unnamed (Group) -->
  540. <div id="u32112" class="ax_default" data-left="20" data-top="71" data-width="56" data-height="22" layer-opacity="1">
  541. <!-- Unnamed (Rectangle) -->
  542. <div id="u32113" class="ax_default label transition">
  543. <div id="u32113_div" class=""></div>
  544. <div id="u32113_text" class="text ">
  545. <p><span>主页</span></p>
  546. </div>
  547. </div>
  548. <!-- Unnamed (Shape) -->
  549. <div id="u32114" class="ax_default icon transition">
  550. <svg data="images/pc网页端/u54.svg" id="u32114_img" class="img generatedImage">
  551. <defs>
  552. <pattern id="u32114_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  553. <mask fill="white" id="u32114_img_cl2553">
  554. <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " fill-rule="evenodd" />
  555. </mask>
  556. </defs>
  557. <g transform="matrix(1 0 0 1 -20 -75 )">
  558. <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 20 75 )" class="fill" />
  559. <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 20 75 )" class="stroke" mask="url(#u32114_img_cl2553)" />
  560. <path d="M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 20 75 )" class="stroke" mask="url(#u32114_img_cl2553)" />
  561. </g>
  562. </svg>
  563. <div id="u32114_text" class="text " style="display:none; visibility: hidden">
  564. <p></p>
  565. </div>
  566. </div>
  567. </div>
  568. </div>
  569. <!-- Unnamed (Rectangle) -->
  570. <div id="u32115" class="ax_default box_2 transition">
  571. <div id="u32115_div" class=""></div>
  572. <div id="u32115_text" class="text " style="display:none; visibility: hidden">
  573. <p></p>
  574. </div>
  575. </div>
  576. <!-- Unnamed (Rectangle) -->
  577. <div id="u32116" class="ax_default box_2 transition">
  578. <div id="u32116_div" class=""></div>
  579. <div id="u32116_text" class="text " style="display:none; visibility: hidden">
  580. <p></p>
  581. </div>
  582. </div>
  583. <!-- Unnamed (Rectangle) -->
  584. <div id="u32117" class="ax_default paragraph transition">
  585. <div id="u32117_div" class=""></div>
  586. <div id="u32117_text" class="text ">
  587. <p><span>巡检异常</span></p>
  588. </div>
  589. </div>
  590. <!-- Unnamed (Group) -->
  591. <div id="u32118" class="ax_default" data-left="351" data-top="180" data-width="259" data-height="100" layer-opacity="1">
  592. <!-- Unnamed (Rectangle) -->
  593. <div id="u32119" class="ax_default box_3 transition">
  594. <div id="u32119_div" class=""></div>
  595. <div id="u32119_text" class="text " style="display:none; visibility: hidden">
  596. <p></p>
  597. </div>
  598. </div>
  599. <!-- Unnamed (Rectangle) -->
  600. <div id="u32120" class="ax_default paragraph transition">
  601. <div id="u32120_div" class=""></div>
  602. <div id="u32120_text" class="text ">
  603. <p><span>巡检异常统计</span></p>
  604. </div>
  605. </div>
  606. <!-- Unnamed (Rectangle) -->
  607. <div id="u32121" class="ax_default paragraph transition">
  608. <div id="u32121_div" class=""></div>
  609. <div id="u32121_text" class="text ">
  610. <p><span>数据更新时间:2024/04/3 12:56:33</span></p>
  611. </div>
  612. </div>
  613. <!-- Unnamed (Group) -->
  614. <div id="u32122" class="ax_default" data-left="541" data-top="202" data-width="46" data-height="17" layer-opacity="1">
  615. <!-- Unnamed (Image) -->
  616. <div id="u32123" class="ax_default image transition">
  617. <img id="u32123_img" class="img " src="images/巡检异常/u32123.png"/>
  618. <div id="u32123_text" class="text " style="display:none; visibility: hidden">
  619. <p></p>
  620. </div>
  621. </div>
  622. <!-- Unnamed (Rectangle) -->
  623. <div id="u32124" class="ax_default label transition">
  624. <div id="u32124_div" class=""></div>
  625. <div id="u32124_text" class="text ">
  626. <p><span style="text-decoration:underline ;">刷新</span></p>
  627. </div>
  628. </div>
  629. </div>
  630. </div>
  631. <!-- Unnamed (Group) -->
  632. <div id="u32125" class="ax_default" data-left="621" data-top="180" data-width="396" data-height="100" layer-opacity="1">
  633. <!-- Unnamed (Rectangle) -->
  634. <div id="u32126" class="ax_default box_3 transition">
  635. <div id="u32126_div" class=""></div>
  636. <div id="u32126_text" class="text " style="display:none; visibility: hidden">
  637. <p></p>
  638. </div>
  639. </div>
  640. <!-- Unnamed (Rectangle) -->
  641. <div id="u32127" class="ax_default paragraph transition">
  642. <div id="u32127_div" class=""></div>
  643. <div id="u32127_text" class="text ">
  644. <p><span>34</span></p>
  645. </div>
  646. </div>
  647. <!-- Unnamed (Rectangle) -->
  648. <div id="u32128" class="ax_default paragraph transition">
  649. <div id="u32128_div" class=""></div>
  650. <div id="u32128_text" class="text ">
  651. <p><span>异常总数</span></p>
  652. </div>
  653. </div>
  654. <!-- Unnamed (Rectangle) -->
  655. <div id="u32129" class="ax_default paragraph transition">
  656. <div id="u32129_div" class=""></div>
  657. <div id="u32129_text" class="text ">
  658. <p><span>待处理:</span></p><p><span>处理中:</span></p>
  659. </div>
  660. </div>
  661. <!-- Unnamed (Rectangle) -->
  662. <div id="u32130" class="ax_default paragraph transition">
  663. <div id="u32130_div" class=""></div>
  664. <div id="u32130_text" class="text ">
  665. <p><span>已完成:</span></p><p><span>已关闭:</span></p>
  666. </div>
  667. </div>
  668. <!-- Unnamed (Rectangle) -->
  669. <div id="u32131" class="ax_default paragraph transition">
  670. <div id="u32131_div" class=""></div>
  671. <div id="u32131_text" class="text ">
  672. <p><span>5</span></p><p><span>10</span></p>
  673. </div>
  674. </div>
  675. <!-- Unnamed (Rectangle) -->
  676. <div id="u32132" class="ax_default paragraph transition">
  677. <div id="u32132_div" class=""></div>
  678. <div id="u32132_text" class="text ">
  679. <p><span>18</span></p><p><span>1</span></p>
  680. </div>
  681. </div>
  682. </div>
  683. <!-- Unnamed (Group) -->
  684. <div id="u32133" class="ax_default" data-left="1028" data-top="180" data-width="173" data-height="100" layer-opacity="1">
  685. <!-- Unnamed (Rectangle) -->
  686. <div id="u32134" class="ax_default box_3 transition">
  687. <div id="u32134_div" class=""></div>
  688. <div id="u32134_text" class="text " style="display:none; visibility: hidden">
  689. <p></p>
  690. </div>
  691. </div>
  692. <!-- Unnamed (Rectangle) -->
  693. <div id="u32135" class="ax_default paragraph transition">
  694. <div id="u32135_div" class=""></div>
  695. <div id="u32135_text" class="text ">
  696. <p><span>11</span></p>
  697. </div>
  698. </div>
  699. <!-- Unnamed (Rectangle) -->
  700. <div id="u32136" class="ax_default paragraph transition">
  701. <div id="u32136_div" class=""></div>
  702. <div id="u32136_text" class="text ">
  703. <p><span>本月异常总数</span></p>
  704. </div>
  705. </div>
  706. </div>
  707. <!-- Unnamed (Group) -->
  708. <div id="u32137" class="ax_default" data-left="1212" data-top="180" data-width="173" data-height="100" layer-opacity="1">
  709. <!-- Unnamed (Rectangle) -->
  710. <div id="u32138" class="ax_default box_3 transition">
  711. <div id="u32138_div" class=""></div>
  712. <div id="u32138_text" class="text " style="display:none; visibility: hidden">
  713. <p></p>
  714. </div>
  715. </div>
  716. <!-- Unnamed (Rectangle) -->
  717. <div id="u32139" class="ax_default paragraph transition">
  718. <div id="u32139_div" class=""></div>
  719. <div id="u32139_text" class="text ">
  720. <p><span>10</span></p>
  721. </div>
  722. </div>
  723. <!-- Unnamed (Rectangle) -->
  724. <div id="u32140" class="ax_default paragraph transition">
  725. <div id="u32140_div" class=""></div>
  726. <div id="u32140_text" class="text ">
  727. <p><span>上月异常总数</span></p>
  728. </div>
  729. </div>
  730. <!-- Unnamed (Rectangle) -->
  731. <div id="u32141" class="ax_default paragraph transition">
  732. <div id="u32141_div" class=""></div>
  733. <div id="u32141_text" class="text ">
  734. <p><span>环比:10%</span></p>
  735. </div>
  736. </div>
  737. </div>
  738. <!-- Unnamed (Group) -->
  739. <div id="u32142" class="ax_default" data-left="1395" data-top="180" data-width="173" data-height="100" layer-opacity="1">
  740. <!-- Unnamed (Rectangle) -->
  741. <div id="u32143" class="ax_default box_3 transition">
  742. <div id="u32143_div" class=""></div>
  743. <div id="u32143_text" class="text " style="display:none; visibility: hidden">
  744. <p></p>
  745. </div>
  746. </div>
  747. <!-- Unnamed (Rectangle) -->
  748. <div id="u32144" class="ax_default paragraph transition">
  749. <div id="u32144_div" class=""></div>
  750. <div id="u32144_text" class="text ">
  751. <p><span>10</span></p>
  752. </div>
  753. </div>
  754. <!-- Unnamed (Rectangle) -->
  755. <div id="u32145" class="ax_default paragraph transition">
  756. <div id="u32145_div" class=""></div>
  757. <div id="u32145_text" class="text ">
  758. <p><span>去年同期异常总数</span></p>
  759. </div>
  760. </div>
  761. <!-- Unnamed (Rectangle) -->
  762. <div id="u32146" class="ax_default paragraph transition">
  763. <div id="u32146_div" class=""></div>
  764. <div id="u32146_text" class="text ">
  765. <p><span>同比:-5%</span></p>
  766. </div>
  767. </div>
  768. </div>
  769. <!-- Unnamed (Table) -->
  770. <div id="u32147" class="ax_default">
  771. <!-- Unnamed (Table cell) -->
  772. <div id="u32148" class="ax_default table_cell1 transition">
  773. <svg data="images/巡检异常/u32148.svg" id="u32148_img" class="img generatedImage" viewbox="0 0 40 39">
  774. <path d="M 1 1 L 40 1 L 40 39 L 1 39 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" class="fill" />
  775. <path d="M 0.5 1 L 0.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" class="stroke" />
  776. <path d="M 0 0.5 L 40 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" class="stroke" />
  777. </svg>
  778. <div id="u32148_text" class="text " style="display:none; visibility: hidden">
  779. <p></p>
  780. </div>
  781. </div>
  782. <!-- Unnamed (Table cell) -->
  783. <div id="u32149" class="ax_default table_cell1 transition">
  784. <svg data="images/巡检异常/u32149.svg" id="u32149_img" class="img generatedImage" viewbox="40 0 100 39">
  785. <path d="M 1 1 L 100 1 L 100 39 L 1 39 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 40 0 )" class="fill" />
  786. <path d="M 0.5 1 L 0.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 40 0 )" class="stroke" />
  787. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 40 0 )" class="stroke" />
  788. </svg>
  789. <div id="u32149_text" class="text ">
  790. <p><span>ID</span></p>
  791. </div>
  792. </div>
  793. <!-- Unnamed (Table cell) -->
  794. <div id="u32150" class="ax_default table_cell1 transition">
  795. <svg data="images/巡检异常/u32150.svg" id="u32150_img" class="img generatedImage" viewbox="140 0 100 39">
  796. <path d="M 1 1 L 100 1 L 100 39 L 1 39 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 140 0 )" class="fill" />
  797. <path d="M 0.5 1 L 0.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 140 0 )" class="stroke" />
  798. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 140 0 )" class="stroke" />
  799. </svg>
  800. <div id="u32150_text" class="text ">
  801. <p><span>异常名称</span></p>
  802. </div>
  803. </div>
  804. <!-- Unnamed (Table cell) -->
  805. <div id="u32151" class="ax_default table_cell1 transition">
  806. <svg data="images/巡检异常/u32151.svg" id="u32151_img" class="img generatedImage" viewbox="240 0 100 39">
  807. <path d="M 1 1 L 100 1 L 100 39 L 1 39 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 240 0 )" class="fill" />
  808. <path d="M 0.5 1 L 0.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 240 0 )" class="stroke" />
  809. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 240 0 )" class="stroke" />
  810. </svg>
  811. <div id="u32151_text" class="text ">
  812. <p><span>异常类别</span></p>
  813. </div>
  814. </div>
  815. <!-- Unnamed (Table cell) -->
  816. <div id="u32152" class="ax_default table_cell1 transition">
  817. <svg data="images/巡检异常/u32152.svg" id="u32152_img" class="img generatedImage" viewbox="340 0 100 39">
  818. <path d="M 1 1 L 100 1 L 100 39 L 1 39 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 340 0 )" class="fill" />
  819. <path d="M 0.5 1 L 0.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 0 )" class="stroke" />
  820. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 0 )" class="stroke" />
  821. </svg>
  822. <div id="u32152_text" class="text ">
  823. <p><span>异常对象</span></p>
  824. </div>
  825. </div>
  826. <!-- Unnamed (Table cell) -->
  827. <div id="u32153" class="ax_default table_cell1 transition">
  828. <svg data="images/巡检异常/u32153.svg" id="u32153_img" class="img generatedImage" viewbox="440 0 100 39">
  829. <path d="M 1 1 L 100 1 L 100 39 L 1 39 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 440 0 )" class="fill" />
  830. <path d="M 0.5 1 L 0.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 440 0 )" class="stroke" />
  831. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 440 0 )" class="stroke" />
  832. </svg>
  833. <div id="u32153_text" class="text ">
  834. <p><span>异常信息</span></p>
  835. </div>
  836. </div>
  837. <!-- Unnamed (Table cell) -->
  838. <div id="u32154" class="ax_default table_cell1 transition">
  839. <svg data="images/巡检异常/u32154.svg" id="u32154_img" class="img generatedImage" viewbox="540 0 100 39">
  840. <path d="M 1 1 L 100 1 L 100 39 L 1 39 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 540 0 )" class="fill" />
  841. <path d="M 0.5 1 L 0.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 540 0 )" class="stroke" />
  842. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 540 0 )" class="stroke" />
  843. </svg>
  844. <div id="u32154_text" class="text ">
  845. <p><span>异常等级</span></p>
  846. </div>
  847. </div>
  848. <!-- Unnamed (Table cell) -->
  849. <div id="u32155" class="ax_default table_cell1 transition">
  850. <svg data="images/巡检异常/u32155.svg" id="u32155_img" class="img generatedImage" viewbox="640 0 100 39">
  851. <path d="M 1 1 L 100 1 L 100 39 L 1 39 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 640 0 )" class="fill" />
  852. <path d="M 0.5 1 L 0.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 640 0 )" class="stroke" />
  853. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 640 0 )" class="stroke" />
  854. </svg>
  855. <div id="u32155_text" class="text ">
  856. <p><span>状态</span></p>
  857. </div>
  858. </div>
  859. <!-- Unnamed (Table cell) -->
  860. <div id="u32156" class="ax_default table_cell1 transition">
  861. <svg data="images/巡检异常/u32156.svg" id="u32156_img" class="img generatedImage" viewbox="740 0 100 39">
  862. <path d="M 1 1 L 100 1 L 100 39 L 1 39 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 740 0 )" class="fill" />
  863. <path d="M 0.5 1 L 0.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 740 0 )" class="stroke" />
  864. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 740 0 )" class="stroke" />
  865. </svg>
  866. <div id="u32156_text" class="text ">
  867. <p><span>报修单号</span></p>
  868. </div>
  869. </div>
  870. <!-- Unnamed (Table cell) -->
  871. <div id="u32157" class="ax_default table_cell1 transition">
  872. <svg data="images/巡检异常/u32157.svg" id="u32157_img" class="img generatedImage" viewbox="840 0 100 39">
  873. <path d="M 1 1 L 100 1 L 100 39 L 1 39 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 840 0 )" class="fill" />
  874. <path d="M 0.5 1 L 0.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 840 0 )" class="stroke" />
  875. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 840 0 )" class="stroke" />
  876. </svg>
  877. <div id="u32157_text" class="text ">
  878. <p><span>上报人</span></p>
  879. </div>
  880. </div>
  881. <!-- Unnamed (Table cell) -->
  882. <div id="u32158" class="ax_default table_cell1 transition">
  883. <svg data="images/巡检异常/u32158.svg" id="u32158_img" class="img generatedImage" viewbox="940 0 100 39">
  884. <path d="M 1 1 L 100 1 L 100 39 L 1 39 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 940 0 )" class="fill" />
  885. <path d="M 0.5 1 L 0.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 0 )" class="stroke" />
  886. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 0 )" class="stroke" />
  887. </svg>
  888. <div id="u32158_text" class="text ">
  889. <p><span>上报时间</span></p>
  890. </div>
  891. </div>
  892. <!-- Unnamed (Table cell) -->
  893. <div id="u32159" class="ax_default table_cell1 transition">
  894. <svg data="images/巡检异常/u32159.svg" id="u32159_img" class="img generatedImage" viewbox="1040 0 100 39">
  895. <path d="M 1 1 L 100 1 L 100 39 L 1 39 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 1040 0 )" class="fill" />
  896. <path d="M 0.5 1 L 0.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 0 )" class="stroke" />
  897. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 0 )" class="stroke" />
  898. </svg>
  899. <div id="u32159_text" class="text ">
  900. <p><span>关闭时间</span></p>
  901. </div>
  902. </div>
  903. <!-- Unnamed (Table cell) -->
  904. <div id="u32160" class="ax_default table_cell1 transition">
  905. <svg data="images/巡检异常/u32160.svg" id="u32160_img" class="img generatedImage" viewbox="1140 0 80 39">
  906. <path d="M 1 1 L 79 1 L 79 39 L 1 39 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 1140 0 )" class="fill" />
  907. <path d="M 0.5 1 L 0.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 0 )" class="stroke" />
  908. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 0 )" class="stroke" />
  909. <path d="M 79.5 1 L 79.5 39 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 0 )" class="stroke" />
  910. </svg>
  911. <div id="u32160_text" class="text ">
  912. <p><span>操作</span></p>
  913. </div>
  914. </div>
  915. <!-- Unnamed (Table cell) -->
  916. <div id="u32161" class="ax_default table_cell1 transition">
  917. <svg data="images/巡检异常/u32161.svg" id="u32161_img" class="img generatedImage" viewbox="0 39 40 38">
  918. <path d="M 1 1 L 40 1 L 40 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 39 )" class="fill" />
  919. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 39 )" class="stroke" />
  920. <path d="M 0 0.5 L 40 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 39 )" class="stroke" />
  921. </svg>
  922. <div id="u32161_text" class="text " style="display:none; visibility: hidden">
  923. <p></p>
  924. </div>
  925. </div>
  926. <!-- Unnamed (Table cell) -->
  927. <div id="u32162" class="ax_default table_cell1 transition">
  928. <svg data="images/巡检异常/u32162.svg" id="u32162_img" class="img generatedImage" viewbox="40 39 100 38">
  929. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 40 39 )" class="fill" />
  930. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 40 39 )" class="stroke" />
  931. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 40 39 )" class="stroke" />
  932. </svg>
  933. <div id="u32162_text" class="text ">
  934. <p><span>点击之后查看详情</span></p>
  935. </div>
  936. </div>
  937. <!-- Unnamed (Table cell) -->
  938. <div id="u32163" class="ax_default table_cell1 transition">
  939. <svg data="images/巡检异常/u32163.svg" id="u32163_img" class="img generatedImage" viewbox="140 39 100 38">
  940. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 140 39 )" class="fill" />
  941. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 140 39 )" class="stroke" />
  942. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 140 39 )" class="stroke" />
  943. </svg>
  944. <div id="u32163_text" class="text ">
  945. <p><span>火灾隐患</span></p>
  946. </div>
  947. </div>
  948. <!-- Unnamed (Table cell) -->
  949. <div id="u32164" class="ax_default table_cell1 transition">
  950. <svg data="images/巡检异常/u32164.svg" id="u32164_img" class="img generatedImage" viewbox="240 39 100 38">
  951. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 240 39 )" class="fill" />
  952. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 240 39 )" class="stroke" />
  953. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 240 39 )" class="stroke" />
  954. </svg>
  955. <div id="u32164_text" class="text ">
  956. <p><span>安装规范</span></p>
  957. </div>
  958. </div>
  959. <!-- Unnamed (Table cell) -->
  960. <div id="u32165" class="ax_default table_cell1 transition">
  961. <svg data="images/巡检异常/u32165.svg" id="u32165_img" class="img generatedImage" viewbox="340 39 100 38">
  962. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 340 39 )" class="fill" />
  963. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 39 )" class="stroke" />
  964. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 39 )" class="stroke" />
  965. </svg>
  966. <div id="u32165_text" class="text ">
  967. <p><span>区域</span></p>
  968. </div>
  969. </div>
  970. <!-- Unnamed (Table cell) -->
  971. <div id="u32166" class="ax_default table_cell1 transition">
  972. <svg data="images/巡检异常/u32166.svg" id="u32166_img" class="img generatedImage" viewbox="440 39 100 38">
  973. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 440 39 )" class="fill" />
  974. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 440 39 )" class="stroke" />
  975. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 440 39 )" class="stroke" />
  976. </svg>
  977. <div id="u32166_text" class="text ">
  978. <p><span>名称;名称;</span></p>
  979. </div>
  980. </div>
  981. <!-- Unnamed (Table cell) -->
  982. <div id="u32167" class="ax_default table_cell1 transition">
  983. <svg data="images/巡检异常/u32167.svg" id="u32167_img" class="img generatedImage" viewbox="540 39 100 38">
  984. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 540 39 )" class="fill" />
  985. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 540 39 )" class="stroke" />
  986. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 540 39 )" class="stroke" />
  987. </svg>
  988. <div id="u32167_text" class="text " style="display:none; visibility: hidden">
  989. <p></p>
  990. </div>
  991. </div>
  992. <!-- Unnamed (Table cell) -->
  993. <div id="u32168" class="ax_default table_cell1 transition">
  994. <svg data="images/巡检异常/u32168.svg" id="u32168_img" class="img generatedImage" viewbox="640 39 100 38">
  995. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 640 39 )" class="fill" />
  996. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 640 39 )" class="stroke" />
  997. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 640 39 )" class="stroke" />
  998. </svg>
  999. <div id="u32168_text" class="text ">
  1000. <p><span>待处理</span></p>
  1001. </div>
  1002. </div>
  1003. <!-- Unnamed (Table cell) -->
  1004. <div id="u32169" class="ax_default table_cell1 transition">
  1005. <svg data="images/巡检异常/u32169.svg" id="u32169_img" class="img generatedImage" viewbox="740 39 100 38">
  1006. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 740 39 )" class="fill" />
  1007. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 740 39 )" class="stroke" />
  1008. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 740 39 )" class="stroke" />
  1009. </svg>
  1010. <div id="u32169_text" class="text " style="display:none; visibility: hidden">
  1011. <p></p>
  1012. </div>
  1013. </div>
  1014. <!-- Unnamed (Table cell) -->
  1015. <div id="u32170" class="ax_default table_cell1 transition">
  1016. <svg data="images/巡检异常/u32170.svg" id="u32170_img" class="img generatedImage" viewbox="840 39 100 38">
  1017. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 840 39 )" class="fill" />
  1018. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 840 39 )" class="stroke" />
  1019. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 840 39 )" class="stroke" />
  1020. </svg>
  1021. <div id="u32170_text" class="text " style="display:none; visibility: hidden">
  1022. <p></p>
  1023. </div>
  1024. </div>
  1025. <!-- Unnamed (Table cell) -->
  1026. <div id="u32171" class="ax_default table_cell1 transition">
  1027. <svg data="images/巡检异常/u32171.svg" id="u32171_img" class="img generatedImage" viewbox="940 39 100 38">
  1028. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 940 39 )" class="fill" />
  1029. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 39 )" class="stroke" />
  1030. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 39 )" class="stroke" />
  1031. </svg>
  1032. <div id="u32171_text" class="text " style="display:none; visibility: hidden">
  1033. <p></p>
  1034. </div>
  1035. </div>
  1036. <!-- Unnamed (Table cell) -->
  1037. <div id="u32172" class="ax_default table_cell1 transition">
  1038. <svg data="images/巡检异常/u32172.svg" id="u32172_img" class="img generatedImage" viewbox="1040 39 100 38">
  1039. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1040 39 )" class="fill" />
  1040. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 39 )" class="stroke" />
  1041. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 39 )" class="stroke" />
  1042. </svg>
  1043. <div id="u32172_text" class="text " style="display:none; visibility: hidden">
  1044. <p></p>
  1045. </div>
  1046. </div>
  1047. <!-- Unnamed (Table cell) -->
  1048. <div id="u32173" class="ax_default table_cell1 transition">
  1049. <svg data="images/巡检异常/u32173.svg" id="u32173_img" class="img generatedImage" viewbox="1140 39 80 38">
  1050. <path d="M 1 1 L 79 1 L 79 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1140 39 )" class="fill" />
  1051. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 39 )" class="stroke" />
  1052. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 39 )" class="stroke" />
  1053. <path d="M 79.5 1 L 79.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 39 )" class="stroke" />
  1054. </svg>
  1055. <div id="u32173_text" class="text ">
  1056. <p><span>报修&nbsp; 关闭</span></p>
  1057. </div>
  1058. </div>
  1059. <!-- Unnamed (Table cell) -->
  1060. <div id="u32174" class="ax_default table_cell1 transition">
  1061. <svg data="images/巡检异常/u32174.svg" id="u32174_img" class="img generatedImage" viewbox="0 77 40 38">
  1062. <path d="M 1 1 L 40 1 L 40 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 77 )" class="fill" />
  1063. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 77 )" class="stroke" />
  1064. <path d="M 0 0.5 L 40 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 77 )" class="stroke" />
  1065. </svg>
  1066. <div id="u32174_text" class="text " style="display:none; visibility: hidden">
  1067. <p></p>
  1068. </div>
  1069. </div>
  1070. <!-- Unnamed (Table cell) -->
  1071. <div id="u32175" class="ax_default table_cell1 transition">
  1072. <svg data="images/巡检异常/u32175.svg" id="u32175_img" class="img generatedImage" viewbox="40 77 100 38">
  1073. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 40 77 )" class="fill" />
  1074. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 40 77 )" class="stroke" />
  1075. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 40 77 )" class="stroke" />
  1076. </svg>
  1077. <div id="u32175_text" class="text " style="display:none; visibility: hidden">
  1078. <p></p>
  1079. </div>
  1080. </div>
  1081. <!-- Unnamed (Table cell) -->
  1082. <div id="u32176" class="ax_default table_cell1 transition">
  1083. <svg data="images/巡检异常/u32176.svg" id="u32176_img" class="img generatedImage" viewbox="140 77 100 38">
  1084. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 140 77 )" class="fill" />
  1085. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 140 77 )" class="stroke" />
  1086. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 140 77 )" class="stroke" />
  1087. </svg>
  1088. <div id="u32176_text" class="text ">
  1089. <p><span>消防通道占用</span></p>
  1090. </div>
  1091. </div>
  1092. <!-- Unnamed (Table cell) -->
  1093. <div id="u32177" class="ax_default table_cell1 transition">
  1094. <svg data="images/巡检异常/u32177.svg" id="u32177_img" class="img generatedImage" viewbox="240 77 100 38">
  1095. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 240 77 )" class="fill" />
  1096. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 240 77 )" class="stroke" />
  1097. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 240 77 )" class="stroke" />
  1098. </svg>
  1099. <div id="u32177_text" class="text ">
  1100. <p><span>违规行为</span></p>
  1101. </div>
  1102. </div>
  1103. <!-- Unnamed (Table cell) -->
  1104. <div id="u32178" class="ax_default table_cell1 transition">
  1105. <svg data="images/巡检异常/u32178.svg" id="u32178_img" class="img generatedImage" viewbox="340 77 100 38">
  1106. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 340 77 )" class="fill" />
  1107. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 77 )" class="stroke" />
  1108. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 77 )" class="stroke" />
  1109. </svg>
  1110. <div id="u32178_text" class="text ">
  1111. <p><span>区域</span></p>
  1112. </div>
  1113. </div>
  1114. <!-- Unnamed (Table cell) -->
  1115. <div id="u32179" class="ax_default table_cell1 transition">
  1116. <svg data="images/巡检异常/u32179.svg" id="u32179_img" class="img generatedImage" viewbox="440 77 100 38">
  1117. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 440 77 )" class="fill" />
  1118. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 440 77 )" class="stroke" />
  1119. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 440 77 )" class="stroke" />
  1120. </svg>
  1121. <div id="u32179_text" class="text " style="display:none; visibility: hidden">
  1122. <p></p>
  1123. </div>
  1124. </div>
  1125. <!-- Unnamed (Table cell) -->
  1126. <div id="u32180" class="ax_default table_cell1 transition">
  1127. <svg data="images/巡检异常/u32180.svg" id="u32180_img" class="img generatedImage" viewbox="540 77 100 38">
  1128. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 540 77 )" class="fill" />
  1129. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 540 77 )" class="stroke" />
  1130. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 540 77 )" class="stroke" />
  1131. </svg>
  1132. <div id="u32180_text" class="text " style="display:none; visibility: hidden">
  1133. <p></p>
  1134. </div>
  1135. </div>
  1136. <!-- Unnamed (Table cell) -->
  1137. <div id="u32181" class="ax_default table_cell1 transition">
  1138. <svg data="images/巡检异常/u32181.svg" id="u32181_img" class="img generatedImage" viewbox="640 77 100 38">
  1139. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 640 77 )" class="fill" />
  1140. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 640 77 )" class="stroke" />
  1141. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 640 77 )" class="stroke" />
  1142. </svg>
  1143. <div id="u32181_text" class="text ">
  1144. <p><span>已处理</span></p>
  1145. </div>
  1146. </div>
  1147. <!-- Unnamed (Table cell) -->
  1148. <div id="u32182" class="ax_default table_cell1 transition">
  1149. <svg data="images/巡检异常/u32182.svg" id="u32182_img" class="img generatedImage" viewbox="740 77 100 38">
  1150. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 740 77 )" class="fill" />
  1151. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 740 77 )" class="stroke" />
  1152. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 740 77 )" class="stroke" />
  1153. </svg>
  1154. <div id="u32182_text" class="text " style="display:none; visibility: hidden">
  1155. <p></p>
  1156. </div>
  1157. </div>
  1158. <!-- Unnamed (Table cell) -->
  1159. <div id="u32183" class="ax_default table_cell1 transition">
  1160. <svg data="images/巡检异常/u32183.svg" id="u32183_img" class="img generatedImage" viewbox="840 77 100 38">
  1161. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 840 77 )" class="fill" />
  1162. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 840 77 )" class="stroke" />
  1163. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 840 77 )" class="stroke" />
  1164. </svg>
  1165. <div id="u32183_text" class="text " style="display:none; visibility: hidden">
  1166. <p></p>
  1167. </div>
  1168. </div>
  1169. <!-- Unnamed (Table cell) -->
  1170. <div id="u32184" class="ax_default table_cell1 transition">
  1171. <svg data="images/巡检异常/u32184.svg" id="u32184_img" class="img generatedImage" viewbox="940 77 100 38">
  1172. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 940 77 )" class="fill" />
  1173. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 77 )" class="stroke" />
  1174. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 77 )" class="stroke" />
  1175. </svg>
  1176. <div id="u32184_text" class="text " style="display:none; visibility: hidden">
  1177. <p></p>
  1178. </div>
  1179. </div>
  1180. <!-- Unnamed (Table cell) -->
  1181. <div id="u32185" class="ax_default table_cell1 transition">
  1182. <svg data="images/巡检异常/u32185.svg" id="u32185_img" class="img generatedImage" viewbox="1040 77 100 38">
  1183. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1040 77 )" class="fill" />
  1184. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 77 )" class="stroke" />
  1185. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 77 )" class="stroke" />
  1186. </svg>
  1187. <div id="u32185_text" class="text " style="display:none; visibility: hidden">
  1188. <p></p>
  1189. </div>
  1190. </div>
  1191. <!-- Unnamed (Table cell) -->
  1192. <div id="u32186" class="ax_default table_cell1 transition">
  1193. <svg data="images/巡检异常/u32186.svg" id="u32186_img" class="img generatedImage" viewbox="1140 77 80 38">
  1194. <path d="M 1 1 L 79 1 L 79 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1140 77 )" class="fill" />
  1195. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 77 )" class="stroke" />
  1196. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 77 )" class="stroke" />
  1197. <path d="M 79.5 1 L 79.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 77 )" class="stroke" />
  1198. </svg>
  1199. <div id="u32186_text" class="text ">
  1200. <p><span style="color:#AAAAAA;">报修</span><span style="color:#1890FF;">&nbsp; 关闭</span></p>
  1201. </div>
  1202. </div>
  1203. <!-- Unnamed (Table cell) -->
  1204. <div id="u32187" class="ax_default table_cell1 transition">
  1205. <svg data="images/巡检异常/u32187.svg" id="u32187_img" class="img generatedImage" viewbox="0 115 40 38">
  1206. <path d="M 1 1 L 40 1 L 40 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 115 )" class="fill" />
  1207. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 115 )" class="stroke" />
  1208. <path d="M 0 0.5 L 40 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 115 )" class="stroke" />
  1209. </svg>
  1210. <div id="u32187_text" class="text " style="display:none; visibility: hidden">
  1211. <p></p>
  1212. </div>
  1213. </div>
  1214. <!-- Unnamed (Table cell) -->
  1215. <div id="u32188" class="ax_default table_cell1 transition">
  1216. <svg data="images/巡检异常/u32188.svg" id="u32188_img" class="img generatedImage" viewbox="40 115 100 38">
  1217. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 40 115 )" class="fill" />
  1218. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 40 115 )" class="stroke" />
  1219. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 40 115 )" class="stroke" />
  1220. </svg>
  1221. <div id="u32188_text" class="text " style="display:none; visibility: hidden">
  1222. <p></p>
  1223. </div>
  1224. </div>
  1225. <!-- Unnamed (Table cell) -->
  1226. <div id="u32189" class="ax_default table_cell1 transition">
  1227. <svg data="images/巡检异常/u32189.svg" id="u32189_img" class="img generatedImage" viewbox="140 115 100 38">
  1228. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 140 115 )" class="fill" />
  1229. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 140 115 )" class="stroke" />
  1230. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 140 115 )" class="stroke" />
  1231. </svg>
  1232. <div id="u32189_text" class="text " style="display:none; visibility: hidden">
  1233. <p></p>
  1234. </div>
  1235. </div>
  1236. <!-- Unnamed (Table cell) -->
  1237. <div id="u32190" class="ax_default table_cell1 transition">
  1238. <svg data="images/巡检异常/u32190.svg" id="u32190_img" class="img generatedImage" viewbox="240 115 100 38">
  1239. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 240 115 )" class="fill" />
  1240. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 240 115 )" class="stroke" />
  1241. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 240 115 )" class="stroke" />
  1242. </svg>
  1243. <div id="u32190_text" class="text ">
  1244. <p><span>设备故障</span></p>
  1245. </div>
  1246. </div>
  1247. <!-- Unnamed (Table cell) -->
  1248. <div id="u32191" class="ax_default table_cell1 transition">
  1249. <svg data="images/巡检异常/u32191.svg" id="u32191_img" class="img generatedImage" viewbox="340 115 100 38">
  1250. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 340 115 )" class="fill" />
  1251. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 115 )" class="stroke" />
  1252. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 115 )" class="stroke" />
  1253. </svg>
  1254. <div id="u32191_text" class="text ">
  1255. <p><span>设备</span></p>
  1256. </div>
  1257. </div>
  1258. <!-- Unnamed (Table cell) -->
  1259. <div id="u32192" class="ax_default table_cell1 transition">
  1260. <svg data="images/巡检异常/u32192.svg" id="u32192_img" class="img generatedImage" viewbox="440 115 100 38">
  1261. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 440 115 )" class="fill" />
  1262. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 440 115 )" class="stroke" />
  1263. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 440 115 )" class="stroke" />
  1264. </svg>
  1265. <div id="u32192_text" class="text " style="display:none; visibility: hidden">
  1266. <p></p>
  1267. </div>
  1268. </div>
  1269. <!-- Unnamed (Table cell) -->
  1270. <div id="u32193" class="ax_default table_cell1 transition">
  1271. <svg data="images/巡检异常/u32193.svg" id="u32193_img" class="img generatedImage" viewbox="540 115 100 38">
  1272. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 540 115 )" class="fill" />
  1273. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 540 115 )" class="stroke" />
  1274. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 540 115 )" class="stroke" />
  1275. </svg>
  1276. <div id="u32193_text" class="text " style="display:none; visibility: hidden">
  1277. <p></p>
  1278. </div>
  1279. </div>
  1280. <!-- Unnamed (Table cell) -->
  1281. <div id="u32194" class="ax_default table_cell1 transition">
  1282. <svg data="images/巡检异常/u32194.svg" id="u32194_img" class="img generatedImage" viewbox="640 115 100 38">
  1283. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 640 115 )" class="fill" />
  1284. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 640 115 )" class="stroke" />
  1285. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 640 115 )" class="stroke" />
  1286. </svg>
  1287. <div id="u32194_text" class="text ">
  1288. <p><span>待处理</span></p>
  1289. </div>
  1290. </div>
  1291. <!-- Unnamed (Table cell) -->
  1292. <div id="u32195" class="ax_default table_cell1 transition">
  1293. <svg data="images/巡检异常/u32195.svg" id="u32195_img" class="img generatedImage" viewbox="740 115 100 38">
  1294. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 740 115 )" class="fill" />
  1295. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 740 115 )" class="stroke" />
  1296. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 740 115 )" class="stroke" />
  1297. </svg>
  1298. <div id="u32195_text" class="text " style="display:none; visibility: hidden">
  1299. <p></p>
  1300. </div>
  1301. </div>
  1302. <!-- Unnamed (Table cell) -->
  1303. <div id="u32196" class="ax_default table_cell1 transition">
  1304. <svg data="images/巡检异常/u32196.svg" id="u32196_img" class="img generatedImage" viewbox="840 115 100 38">
  1305. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 840 115 )" class="fill" />
  1306. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 840 115 )" class="stroke" />
  1307. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 840 115 )" class="stroke" />
  1308. </svg>
  1309. <div id="u32196_text" class="text " style="display:none; visibility: hidden">
  1310. <p></p>
  1311. </div>
  1312. </div>
  1313. <!-- Unnamed (Table cell) -->
  1314. <div id="u32197" class="ax_default table_cell1 transition">
  1315. <svg data="images/巡检异常/u32197.svg" id="u32197_img" class="img generatedImage" viewbox="940 115 100 38">
  1316. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 940 115 )" class="fill" />
  1317. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 115 )" class="stroke" />
  1318. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 115 )" class="stroke" />
  1319. </svg>
  1320. <div id="u32197_text" class="text " style="display:none; visibility: hidden">
  1321. <p></p>
  1322. </div>
  1323. </div>
  1324. <!-- Unnamed (Table cell) -->
  1325. <div id="u32198" class="ax_default table_cell1 transition">
  1326. <svg data="images/巡检异常/u32198.svg" id="u32198_img" class="img generatedImage" viewbox="1040 115 100 38">
  1327. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1040 115 )" class="fill" />
  1328. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 115 )" class="stroke" />
  1329. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 115 )" class="stroke" />
  1330. </svg>
  1331. <div id="u32198_text" class="text " style="display:none; visibility: hidden">
  1332. <p></p>
  1333. </div>
  1334. </div>
  1335. <!-- Unnamed (Table cell) -->
  1336. <div id="u32199" class="ax_default table_cell1 transition">
  1337. <svg data="images/巡检异常/u32199.svg" id="u32199_img" class="img generatedImage" viewbox="1140 115 80 38">
  1338. <path d="M 1 1 L 79 1 L 79 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1140 115 )" class="fill" />
  1339. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 115 )" class="stroke" />
  1340. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 115 )" class="stroke" />
  1341. <path d="M 79.5 1 L 79.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 115 )" class="stroke" />
  1342. </svg>
  1343. <div id="u32199_text" class="text ">
  1344. <p><span>报修&nbsp; 关闭</span></p>
  1345. </div>
  1346. </div>
  1347. <!-- Unnamed (Table cell) -->
  1348. <div id="u32200" class="ax_default table_cell1 transition">
  1349. <svg data="images/巡检异常/u32200.svg" id="u32200_img" class="img generatedImage" viewbox="0 153 40 38">
  1350. <path d="M 1 1 L 40 1 L 40 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 153 )" class="fill" />
  1351. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 153 )" class="stroke" />
  1352. <path d="M 0 0.5 L 40 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 153 )" class="stroke" />
  1353. </svg>
  1354. <div id="u32200_text" class="text " style="display:none; visibility: hidden">
  1355. <p></p>
  1356. </div>
  1357. </div>
  1358. <!-- Unnamed (Table cell) -->
  1359. <div id="u32201" class="ax_default table_cell1 transition">
  1360. <svg data="images/巡检异常/u32201.svg" id="u32201_img" class="img generatedImage" viewbox="40 153 100 38">
  1361. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 40 153 )" class="fill" />
  1362. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 40 153 )" class="stroke" />
  1363. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 40 153 )" class="stroke" />
  1364. </svg>
  1365. <div id="u32201_text" class="text " style="display:none; visibility: hidden">
  1366. <p></p>
  1367. </div>
  1368. </div>
  1369. <!-- Unnamed (Table cell) -->
  1370. <div id="u32202" class="ax_default table_cell1 transition">
  1371. <svg data="images/巡检异常/u32202.svg" id="u32202_img" class="img generatedImage" viewbox="140 153 100 38">
  1372. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 140 153 )" class="fill" />
  1373. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 140 153 )" class="stroke" />
  1374. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 140 153 )" class="stroke" />
  1375. </svg>
  1376. <div id="u32202_text" class="text " style="display:none; visibility: hidden">
  1377. <p></p>
  1378. </div>
  1379. </div>
  1380. <!-- Unnamed (Table cell) -->
  1381. <div id="u32203" class="ax_default table_cell1 transition">
  1382. <svg data="images/巡检异常/u32203.svg" id="u32203_img" class="img generatedImage" viewbox="240 153 100 38">
  1383. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 240 153 )" class="fill" />
  1384. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 240 153 )" class="stroke" />
  1385. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 240 153 )" class="stroke" />
  1386. </svg>
  1387. <div id="u32203_text" class="text " style="display:none; visibility: hidden">
  1388. <p></p>
  1389. </div>
  1390. </div>
  1391. <!-- Unnamed (Table cell) -->
  1392. <div id="u32204" class="ax_default table_cell1 transition">
  1393. <svg data="images/巡检异常/u32204.svg" id="u32204_img" class="img generatedImage" viewbox="340 153 100 38">
  1394. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 340 153 )" class="fill" />
  1395. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 153 )" class="stroke" />
  1396. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 153 )" class="stroke" />
  1397. </svg>
  1398. <div id="u32204_text" class="text " style="display:none; visibility: hidden">
  1399. <p></p>
  1400. </div>
  1401. </div>
  1402. <!-- Unnamed (Table cell) -->
  1403. <div id="u32205" class="ax_default table_cell1 transition">
  1404. <svg data="images/巡检异常/u32205.svg" id="u32205_img" class="img generatedImage" viewbox="440 153 100 38">
  1405. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 440 153 )" class="fill" />
  1406. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 440 153 )" class="stroke" />
  1407. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 440 153 )" class="stroke" />
  1408. </svg>
  1409. <div id="u32205_text" class="text " style="display:none; visibility: hidden">
  1410. <p></p>
  1411. </div>
  1412. </div>
  1413. <!-- Unnamed (Table cell) -->
  1414. <div id="u32206" class="ax_default table_cell1 transition">
  1415. <svg data="images/巡检异常/u32206.svg" id="u32206_img" class="img generatedImage" viewbox="540 153 100 38">
  1416. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 540 153 )" class="fill" />
  1417. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 540 153 )" class="stroke" />
  1418. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 540 153 )" class="stroke" />
  1419. </svg>
  1420. <div id="u32206_text" class="text " style="display:none; visibility: hidden">
  1421. <p></p>
  1422. </div>
  1423. </div>
  1424. <!-- Unnamed (Table cell) -->
  1425. <div id="u32207" class="ax_default table_cell1 transition">
  1426. <svg data="images/巡检异常/u32207.svg" id="u32207_img" class="img generatedImage" viewbox="640 153 100 38">
  1427. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 640 153 )" class="fill" />
  1428. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 640 153 )" class="stroke" />
  1429. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 640 153 )" class="stroke" />
  1430. </svg>
  1431. <div id="u32207_text" class="text ">
  1432. <p><span>已关闭</span></p>
  1433. </div>
  1434. </div>
  1435. <!-- Unnamed (Table cell) -->
  1436. <div id="u32208" class="ax_default table_cell1 transition">
  1437. <svg data="images/巡检异常/u32208.svg" id="u32208_img" class="img generatedImage" viewbox="740 153 100 38">
  1438. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 740 153 )" class="fill" />
  1439. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 740 153 )" class="stroke" />
  1440. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 740 153 )" class="stroke" />
  1441. </svg>
  1442. <div id="u32208_text" class="text " style="display:none; visibility: hidden">
  1443. <p></p>
  1444. </div>
  1445. </div>
  1446. <!-- Unnamed (Table cell) -->
  1447. <div id="u32209" class="ax_default table_cell1 transition">
  1448. <svg data="images/巡检异常/u32209.svg" id="u32209_img" class="img generatedImage" viewbox="840 153 100 38">
  1449. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 840 153 )" class="fill" />
  1450. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 840 153 )" class="stroke" />
  1451. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 840 153 )" class="stroke" />
  1452. </svg>
  1453. <div id="u32209_text" class="text " style="display:none; visibility: hidden">
  1454. <p></p>
  1455. </div>
  1456. </div>
  1457. <!-- Unnamed (Table cell) -->
  1458. <div id="u32210" class="ax_default table_cell1 transition">
  1459. <svg data="images/巡检异常/u32210.svg" id="u32210_img" class="img generatedImage" viewbox="940 153 100 38">
  1460. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 940 153 )" class="fill" />
  1461. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 153 )" class="stroke" />
  1462. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 153 )" class="stroke" />
  1463. </svg>
  1464. <div id="u32210_text" class="text " style="display:none; visibility: hidden">
  1465. <p></p>
  1466. </div>
  1467. </div>
  1468. <!-- Unnamed (Table cell) -->
  1469. <div id="u32211" class="ax_default table_cell1 transition">
  1470. <svg data="images/巡检异常/u32211.svg" id="u32211_img" class="img generatedImage" viewbox="1040 153 100 38">
  1471. <path d="M 1 1 L 100 1 L 100 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1040 153 )" class="fill" />
  1472. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 153 )" class="stroke" />
  1473. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 153 )" class="stroke" />
  1474. </svg>
  1475. <div id="u32211_text" class="text " style="display:none; visibility: hidden">
  1476. <p></p>
  1477. </div>
  1478. </div>
  1479. <!-- Unnamed (Table cell) -->
  1480. <div id="u32212" class="ax_default table_cell1 transition">
  1481. <svg data="images/巡检异常/u32212.svg" id="u32212_img" class="img generatedImage" viewbox="1140 153 80 38">
  1482. <path d="M 1 1 L 79 1 L 79 38 L 1 38 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1140 153 )" class="fill" />
  1483. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 153 )" class="stroke" />
  1484. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 153 )" class="stroke" />
  1485. <path d="M 79.5 1 L 79.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 153 )" class="stroke" />
  1486. </svg>
  1487. <div id="u32212_text" class="text ">
  1488. <p><span>报修&nbsp; 关闭</span></p>
  1489. </div>
  1490. </div>
  1491. <!-- Unnamed (Table cell) -->
  1492. <div id="u32213" class="ax_default table_cell1 transition">
  1493. <svg data="images/巡检异常/u32213.svg" id="u32213_img" class="img generatedImage" viewbox="0 191 40 35">
  1494. <path d="M 1 1 L 40 1 L 40 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 191 )" class="fill" />
  1495. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 191 )" class="stroke" />
  1496. <path d="M 0 0.5 L 40 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 191 )" class="stroke" />
  1497. </svg>
  1498. <div id="u32213_text" class="text " style="display:none; visibility: hidden">
  1499. <p></p>
  1500. </div>
  1501. </div>
  1502. <!-- Unnamed (Table cell) -->
  1503. <div id="u32214" class="ax_default table_cell1 transition">
  1504. <svg data="images/巡检异常/u32214.svg" id="u32214_img" class="img generatedImage" viewbox="40 191 100 35">
  1505. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 40 191 )" class="fill" />
  1506. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 40 191 )" class="stroke" />
  1507. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 40 191 )" class="stroke" />
  1508. </svg>
  1509. <div id="u32214_text" class="text " style="display:none; visibility: hidden">
  1510. <p></p>
  1511. </div>
  1512. </div>
  1513. <!-- Unnamed (Table cell) -->
  1514. <div id="u32215" class="ax_default table_cell1 transition">
  1515. <svg data="images/巡检异常/u32215.svg" id="u32215_img" class="img generatedImage" viewbox="140 191 100 35">
  1516. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 140 191 )" class="fill" />
  1517. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 140 191 )" class="stroke" />
  1518. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 140 191 )" class="stroke" />
  1519. </svg>
  1520. <div id="u32215_text" class="text " style="display:none; visibility: hidden">
  1521. <p></p>
  1522. </div>
  1523. </div>
  1524. <!-- Unnamed (Table cell) -->
  1525. <div id="u32216" class="ax_default table_cell1 transition">
  1526. <svg data="images/巡检异常/u32216.svg" id="u32216_img" class="img generatedImage" viewbox="240 191 100 35">
  1527. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 240 191 )" class="fill" />
  1528. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 240 191 )" class="stroke" />
  1529. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 240 191 )" class="stroke" />
  1530. </svg>
  1531. <div id="u32216_text" class="text " style="display:none; visibility: hidden">
  1532. <p></p>
  1533. </div>
  1534. </div>
  1535. <!-- Unnamed (Table cell) -->
  1536. <div id="u32217" class="ax_default table_cell1 transition">
  1537. <svg data="images/巡检异常/u32217.svg" id="u32217_img" class="img generatedImage" viewbox="340 191 100 35">
  1538. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 340 191 )" class="fill" />
  1539. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 191 )" class="stroke" />
  1540. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 191 )" class="stroke" />
  1541. </svg>
  1542. <div id="u32217_text" class="text " style="display:none; visibility: hidden">
  1543. <p></p>
  1544. </div>
  1545. </div>
  1546. <!-- Unnamed (Table cell) -->
  1547. <div id="u32218" class="ax_default table_cell1 transition">
  1548. <svg data="images/巡检异常/u32218.svg" id="u32218_img" class="img generatedImage" viewbox="440 191 100 35">
  1549. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 440 191 )" class="fill" />
  1550. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 440 191 )" class="stroke" />
  1551. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 440 191 )" class="stroke" />
  1552. </svg>
  1553. <div id="u32218_text" class="text " style="display:none; visibility: hidden">
  1554. <p></p>
  1555. </div>
  1556. </div>
  1557. <!-- Unnamed (Table cell) -->
  1558. <div id="u32219" class="ax_default table_cell1 transition">
  1559. <svg data="images/巡检异常/u32219.svg" id="u32219_img" class="img generatedImage" viewbox="540 191 100 35">
  1560. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 540 191 )" class="fill" />
  1561. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 540 191 )" class="stroke" />
  1562. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 540 191 )" class="stroke" />
  1563. </svg>
  1564. <div id="u32219_text" class="text " style="display:none; visibility: hidden">
  1565. <p></p>
  1566. </div>
  1567. </div>
  1568. <!-- Unnamed (Table cell) -->
  1569. <div id="u32220" class="ax_default table_cell1 transition">
  1570. <svg data="images/巡检异常/u32220.svg" id="u32220_img" class="img generatedImage" viewbox="640 191 100 35">
  1571. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 640 191 )" class="fill" />
  1572. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 640 191 )" class="stroke" />
  1573. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 640 191 )" class="stroke" />
  1574. </svg>
  1575. <div id="u32220_text" class="text " style="display:none; visibility: hidden">
  1576. <p></p>
  1577. </div>
  1578. </div>
  1579. <!-- Unnamed (Table cell) -->
  1580. <div id="u32221" class="ax_default table_cell1 transition">
  1581. <svg data="images/巡检异常/u32221.svg" id="u32221_img" class="img generatedImage" viewbox="740 191 100 35">
  1582. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 740 191 )" class="fill" />
  1583. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 740 191 )" class="stroke" />
  1584. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 740 191 )" class="stroke" />
  1585. </svg>
  1586. <div id="u32221_text" class="text " style="display:none; visibility: hidden">
  1587. <p></p>
  1588. </div>
  1589. </div>
  1590. <!-- Unnamed (Table cell) -->
  1591. <div id="u32222" class="ax_default table_cell1 transition">
  1592. <svg data="images/巡检异常/u32222.svg" id="u32222_img" class="img generatedImage" viewbox="840 191 100 35">
  1593. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 840 191 )" class="fill" />
  1594. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 840 191 )" class="stroke" />
  1595. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 840 191 )" class="stroke" />
  1596. </svg>
  1597. <div id="u32222_text" class="text " style="display:none; visibility: hidden">
  1598. <p></p>
  1599. </div>
  1600. </div>
  1601. <!-- Unnamed (Table cell) -->
  1602. <div id="u32223" class="ax_default table_cell1 transition">
  1603. <svg data="images/巡检异常/u32223.svg" id="u32223_img" class="img generatedImage" viewbox="940 191 100 35">
  1604. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 940 191 )" class="fill" />
  1605. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 191 )" class="stroke" />
  1606. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 191 )" class="stroke" />
  1607. </svg>
  1608. <div id="u32223_text" class="text " style="display:none; visibility: hidden">
  1609. <p></p>
  1610. </div>
  1611. </div>
  1612. <!-- Unnamed (Table cell) -->
  1613. <div id="u32224" class="ax_default table_cell1 transition">
  1614. <svg data="images/巡检异常/u32224.svg" id="u32224_img" class="img generatedImage" viewbox="1040 191 100 35">
  1615. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1040 191 )" class="fill" />
  1616. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 191 )" class="stroke" />
  1617. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 191 )" class="stroke" />
  1618. </svg>
  1619. <div id="u32224_text" class="text " style="display:none; visibility: hidden">
  1620. <p></p>
  1621. </div>
  1622. </div>
  1623. <!-- Unnamed (Table cell) -->
  1624. <div id="u32225" class="ax_default table_cell1 transition">
  1625. <svg data="images/巡检异常/u32225.svg" id="u32225_img" class="img generatedImage" viewbox="1140 191 80 35">
  1626. <path d="M 1 1 L 79 1 L 79 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1140 191 )" class="fill" />
  1627. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 191 )" class="stroke" />
  1628. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 191 )" class="stroke" />
  1629. <path d="M 79.5 1 L 79.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 191 )" class="stroke" />
  1630. </svg>
  1631. <div id="u32225_text" class="text " style="display:none; visibility: hidden">
  1632. <p></p>
  1633. </div>
  1634. </div>
  1635. <!-- Unnamed (Table cell) -->
  1636. <div id="u32226" class="ax_default table_cell1 transition">
  1637. <svg data="images/巡检异常/u32226.svg" id="u32226_img" class="img generatedImage" viewbox="0 226 40 35">
  1638. <path d="M 1 1 L 40 1 L 40 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 226 )" class="fill" />
  1639. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 226 )" class="stroke" />
  1640. <path d="M 0 0.5 L 40 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 226 )" class="stroke" />
  1641. </svg>
  1642. <div id="u32226_text" class="text " style="display:none; visibility: hidden">
  1643. <p></p>
  1644. </div>
  1645. </div>
  1646. <!-- Unnamed (Table cell) -->
  1647. <div id="u32227" class="ax_default table_cell1 transition">
  1648. <svg data="images/巡检异常/u32227.svg" id="u32227_img" class="img generatedImage" viewbox="40 226 100 35">
  1649. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 40 226 )" class="fill" />
  1650. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 40 226 )" class="stroke" />
  1651. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 40 226 )" class="stroke" />
  1652. </svg>
  1653. <div id="u32227_text" class="text " style="display:none; visibility: hidden">
  1654. <p></p>
  1655. </div>
  1656. </div>
  1657. <!-- Unnamed (Table cell) -->
  1658. <div id="u32228" class="ax_default table_cell1 transition">
  1659. <svg data="images/巡检异常/u32228.svg" id="u32228_img" class="img generatedImage" viewbox="140 226 100 35">
  1660. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 140 226 )" class="fill" />
  1661. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 140 226 )" class="stroke" />
  1662. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 140 226 )" class="stroke" />
  1663. </svg>
  1664. <div id="u32228_text" class="text " style="display:none; visibility: hidden">
  1665. <p></p>
  1666. </div>
  1667. </div>
  1668. <!-- Unnamed (Table cell) -->
  1669. <div id="u32229" class="ax_default table_cell1 transition">
  1670. <svg data="images/巡检异常/u32229.svg" id="u32229_img" class="img generatedImage" viewbox="240 226 100 35">
  1671. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 240 226 )" class="fill" />
  1672. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 240 226 )" class="stroke" />
  1673. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 240 226 )" class="stroke" />
  1674. </svg>
  1675. <div id="u32229_text" class="text " style="display:none; visibility: hidden">
  1676. <p></p>
  1677. </div>
  1678. </div>
  1679. <!-- Unnamed (Table cell) -->
  1680. <div id="u32230" class="ax_default table_cell1 transition">
  1681. <svg data="images/巡检异常/u32230.svg" id="u32230_img" class="img generatedImage" viewbox="340 226 100 35">
  1682. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 340 226 )" class="fill" />
  1683. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 226 )" class="stroke" />
  1684. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 226 )" class="stroke" />
  1685. </svg>
  1686. <div id="u32230_text" class="text " style="display:none; visibility: hidden">
  1687. <p></p>
  1688. </div>
  1689. </div>
  1690. <!-- Unnamed (Table cell) -->
  1691. <div id="u32231" class="ax_default table_cell1 transition">
  1692. <svg data="images/巡检异常/u32231.svg" id="u32231_img" class="img generatedImage" viewbox="440 226 100 35">
  1693. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 440 226 )" class="fill" />
  1694. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 440 226 )" class="stroke" />
  1695. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 440 226 )" class="stroke" />
  1696. </svg>
  1697. <div id="u32231_text" class="text " style="display:none; visibility: hidden">
  1698. <p></p>
  1699. </div>
  1700. </div>
  1701. <!-- Unnamed (Table cell) -->
  1702. <div id="u32232" class="ax_default table_cell1 transition">
  1703. <svg data="images/巡检异常/u32232.svg" id="u32232_img" class="img generatedImage" viewbox="540 226 100 35">
  1704. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 540 226 )" class="fill" />
  1705. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 540 226 )" class="stroke" />
  1706. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 540 226 )" class="stroke" />
  1707. </svg>
  1708. <div id="u32232_text" class="text " style="display:none; visibility: hidden">
  1709. <p></p>
  1710. </div>
  1711. </div>
  1712. <!-- Unnamed (Table cell) -->
  1713. <div id="u32233" class="ax_default table_cell1 transition">
  1714. <svg data="images/巡检异常/u32233.svg" id="u32233_img" class="img generatedImage" viewbox="640 226 100 35">
  1715. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 640 226 )" class="fill" />
  1716. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 640 226 )" class="stroke" />
  1717. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 640 226 )" class="stroke" />
  1718. </svg>
  1719. <div id="u32233_text" class="text " style="display:none; visibility: hidden">
  1720. <p></p>
  1721. </div>
  1722. </div>
  1723. <!-- Unnamed (Table cell) -->
  1724. <div id="u32234" class="ax_default table_cell1 transition">
  1725. <svg data="images/巡检异常/u32234.svg" id="u32234_img" class="img generatedImage" viewbox="740 226 100 35">
  1726. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 740 226 )" class="fill" />
  1727. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 740 226 )" class="stroke" />
  1728. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 740 226 )" class="stroke" />
  1729. </svg>
  1730. <div id="u32234_text" class="text " style="display:none; visibility: hidden">
  1731. <p></p>
  1732. </div>
  1733. </div>
  1734. <!-- Unnamed (Table cell) -->
  1735. <div id="u32235" class="ax_default table_cell1 transition">
  1736. <svg data="images/巡检异常/u32235.svg" id="u32235_img" class="img generatedImage" viewbox="840 226 100 35">
  1737. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 840 226 )" class="fill" />
  1738. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 840 226 )" class="stroke" />
  1739. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 840 226 )" class="stroke" />
  1740. </svg>
  1741. <div id="u32235_text" class="text " style="display:none; visibility: hidden">
  1742. <p></p>
  1743. </div>
  1744. </div>
  1745. <!-- Unnamed (Table cell) -->
  1746. <div id="u32236" class="ax_default table_cell1 transition">
  1747. <svg data="images/巡检异常/u32236.svg" id="u32236_img" class="img generatedImage" viewbox="940 226 100 35">
  1748. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 940 226 )" class="fill" />
  1749. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 226 )" class="stroke" />
  1750. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 226 )" class="stroke" />
  1751. </svg>
  1752. <div id="u32236_text" class="text " style="display:none; visibility: hidden">
  1753. <p></p>
  1754. </div>
  1755. </div>
  1756. <!-- Unnamed (Table cell) -->
  1757. <div id="u32237" class="ax_default table_cell1 transition">
  1758. <svg data="images/巡检异常/u32237.svg" id="u32237_img" class="img generatedImage" viewbox="1040 226 100 35">
  1759. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1040 226 )" class="fill" />
  1760. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 226 )" class="stroke" />
  1761. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 226 )" class="stroke" />
  1762. </svg>
  1763. <div id="u32237_text" class="text " style="display:none; visibility: hidden">
  1764. <p></p>
  1765. </div>
  1766. </div>
  1767. <!-- Unnamed (Table cell) -->
  1768. <div id="u32238" class="ax_default table_cell1 transition">
  1769. <svg data="images/巡检异常/u32238.svg" id="u32238_img" class="img generatedImage" viewbox="1140 226 80 35">
  1770. <path d="M 1 1 L 79 1 L 79 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1140 226 )" class="fill" />
  1771. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 226 )" class="stroke" />
  1772. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 226 )" class="stroke" />
  1773. <path d="M 79.5 1 L 79.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 226 )" class="stroke" />
  1774. </svg>
  1775. <div id="u32238_text" class="text " style="display:none; visibility: hidden">
  1776. <p></p>
  1777. </div>
  1778. </div>
  1779. <!-- Unnamed (Table cell) -->
  1780. <div id="u32239" class="ax_default table_cell1 transition">
  1781. <svg data="images/巡检异常/u32239.svg" id="u32239_img" class="img generatedImage" viewbox="0 261 40 35">
  1782. <path d="M 1 1 L 40 1 L 40 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 261 )" class="fill" />
  1783. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 261 )" class="stroke" />
  1784. <path d="M 0 0.5 L 40 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 261 )" class="stroke" />
  1785. </svg>
  1786. <div id="u32239_text" class="text " style="display:none; visibility: hidden">
  1787. <p></p>
  1788. </div>
  1789. </div>
  1790. <!-- Unnamed (Table cell) -->
  1791. <div id="u32240" class="ax_default table_cell1 transition">
  1792. <svg data="images/巡检异常/u32240.svg" id="u32240_img" class="img generatedImage" viewbox="40 261 100 35">
  1793. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 40 261 )" class="fill" />
  1794. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 40 261 )" class="stroke" />
  1795. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 40 261 )" class="stroke" />
  1796. </svg>
  1797. <div id="u32240_text" class="text " style="display:none; visibility: hidden">
  1798. <p></p>
  1799. </div>
  1800. </div>
  1801. <!-- Unnamed (Table cell) -->
  1802. <div id="u32241" class="ax_default table_cell1 transition">
  1803. <svg data="images/巡检异常/u32241.svg" id="u32241_img" class="img generatedImage" viewbox="140 261 100 35">
  1804. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 140 261 )" class="fill" />
  1805. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 140 261 )" class="stroke" />
  1806. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 140 261 )" class="stroke" />
  1807. </svg>
  1808. <div id="u32241_text" class="text " style="display:none; visibility: hidden">
  1809. <p></p>
  1810. </div>
  1811. </div>
  1812. <!-- Unnamed (Table cell) -->
  1813. <div id="u32242" class="ax_default table_cell1 transition">
  1814. <svg data="images/巡检异常/u32242.svg" id="u32242_img" class="img generatedImage" viewbox="240 261 100 35">
  1815. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 240 261 )" class="fill" />
  1816. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 240 261 )" class="stroke" />
  1817. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 240 261 )" class="stroke" />
  1818. </svg>
  1819. <div id="u32242_text" class="text " style="display:none; visibility: hidden">
  1820. <p></p>
  1821. </div>
  1822. </div>
  1823. <!-- Unnamed (Table cell) -->
  1824. <div id="u32243" class="ax_default table_cell1 transition">
  1825. <svg data="images/巡检异常/u32243.svg" id="u32243_img" class="img generatedImage" viewbox="340 261 100 35">
  1826. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 340 261 )" class="fill" />
  1827. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 261 )" class="stroke" />
  1828. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 261 )" class="stroke" />
  1829. </svg>
  1830. <div id="u32243_text" class="text " style="display:none; visibility: hidden">
  1831. <p></p>
  1832. </div>
  1833. </div>
  1834. <!-- Unnamed (Table cell) -->
  1835. <div id="u32244" class="ax_default table_cell1 transition">
  1836. <svg data="images/巡检异常/u32244.svg" id="u32244_img" class="img generatedImage" viewbox="440 261 100 35">
  1837. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 440 261 )" class="fill" />
  1838. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 440 261 )" class="stroke" />
  1839. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 440 261 )" class="stroke" />
  1840. </svg>
  1841. <div id="u32244_text" class="text " style="display:none; visibility: hidden">
  1842. <p></p>
  1843. </div>
  1844. </div>
  1845. <!-- Unnamed (Table cell) -->
  1846. <div id="u32245" class="ax_default table_cell1 transition">
  1847. <svg data="images/巡检异常/u32245.svg" id="u32245_img" class="img generatedImage" viewbox="540 261 100 35">
  1848. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 540 261 )" class="fill" />
  1849. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 540 261 )" class="stroke" />
  1850. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 540 261 )" class="stroke" />
  1851. </svg>
  1852. <div id="u32245_text" class="text " style="display:none; visibility: hidden">
  1853. <p></p>
  1854. </div>
  1855. </div>
  1856. <!-- Unnamed (Table cell) -->
  1857. <div id="u32246" class="ax_default table_cell1 transition">
  1858. <svg data="images/巡检异常/u32246.svg" id="u32246_img" class="img generatedImage" viewbox="640 261 100 35">
  1859. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 640 261 )" class="fill" />
  1860. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 640 261 )" class="stroke" />
  1861. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 640 261 )" class="stroke" />
  1862. </svg>
  1863. <div id="u32246_text" class="text " style="display:none; visibility: hidden">
  1864. <p></p>
  1865. </div>
  1866. </div>
  1867. <!-- Unnamed (Table cell) -->
  1868. <div id="u32247" class="ax_default table_cell1 transition">
  1869. <svg data="images/巡检异常/u32247.svg" id="u32247_img" class="img generatedImage" viewbox="740 261 100 35">
  1870. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 740 261 )" class="fill" />
  1871. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 740 261 )" class="stroke" />
  1872. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 740 261 )" class="stroke" />
  1873. </svg>
  1874. <div id="u32247_text" class="text " style="display:none; visibility: hidden">
  1875. <p></p>
  1876. </div>
  1877. </div>
  1878. <!-- Unnamed (Table cell) -->
  1879. <div id="u32248" class="ax_default table_cell1 transition">
  1880. <svg data="images/巡检异常/u32248.svg" id="u32248_img" class="img generatedImage" viewbox="840 261 100 35">
  1881. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 840 261 )" class="fill" />
  1882. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 840 261 )" class="stroke" />
  1883. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 840 261 )" class="stroke" />
  1884. </svg>
  1885. <div id="u32248_text" class="text " style="display:none; visibility: hidden">
  1886. <p></p>
  1887. </div>
  1888. </div>
  1889. <!-- Unnamed (Table cell) -->
  1890. <div id="u32249" class="ax_default table_cell1 transition">
  1891. <svg data="images/巡检异常/u32249.svg" id="u32249_img" class="img generatedImage" viewbox="940 261 100 35">
  1892. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 940 261 )" class="fill" />
  1893. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 261 )" class="stroke" />
  1894. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 261 )" class="stroke" />
  1895. </svg>
  1896. <div id="u32249_text" class="text " style="display:none; visibility: hidden">
  1897. <p></p>
  1898. </div>
  1899. </div>
  1900. <!-- Unnamed (Table cell) -->
  1901. <div id="u32250" class="ax_default table_cell1 transition">
  1902. <svg data="images/巡检异常/u32250.svg" id="u32250_img" class="img generatedImage" viewbox="1040 261 100 35">
  1903. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1040 261 )" class="fill" />
  1904. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 261 )" class="stroke" />
  1905. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 261 )" class="stroke" />
  1906. </svg>
  1907. <div id="u32250_text" class="text " style="display:none; visibility: hidden">
  1908. <p></p>
  1909. </div>
  1910. </div>
  1911. <!-- Unnamed (Table cell) -->
  1912. <div id="u32251" class="ax_default table_cell1 transition">
  1913. <svg data="images/巡检异常/u32251.svg" id="u32251_img" class="img generatedImage" viewbox="1140 261 80 35">
  1914. <path d="M 1 1 L 79 1 L 79 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1140 261 )" class="fill" />
  1915. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 261 )" class="stroke" />
  1916. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 261 )" class="stroke" />
  1917. <path d="M 79.5 1 L 79.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 261 )" class="stroke" />
  1918. </svg>
  1919. <div id="u32251_text" class="text " style="display:none; visibility: hidden">
  1920. <p></p>
  1921. </div>
  1922. </div>
  1923. <!-- Unnamed (Table cell) -->
  1924. <div id="u32252" class="ax_default table_cell1 transition">
  1925. <svg data="images/巡检异常/u32252.svg" id="u32252_img" class="img generatedImage" viewbox="0 296 40 35">
  1926. <path d="M 1 1 L 40 1 L 40 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 296 )" class="fill" />
  1927. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 296 )" class="stroke" />
  1928. <path d="M 0 0.5 L 40 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 296 )" class="stroke" />
  1929. </svg>
  1930. <div id="u32252_text" class="text " style="display:none; visibility: hidden">
  1931. <p></p>
  1932. </div>
  1933. </div>
  1934. <!-- Unnamed (Table cell) -->
  1935. <div id="u32253" class="ax_default table_cell1 transition">
  1936. <svg data="images/巡检异常/u32253.svg" id="u32253_img" class="img generatedImage" viewbox="40 296 100 35">
  1937. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 40 296 )" class="fill" />
  1938. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 40 296 )" class="stroke" />
  1939. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 40 296 )" class="stroke" />
  1940. </svg>
  1941. <div id="u32253_text" class="text " style="display:none; visibility: hidden">
  1942. <p></p>
  1943. </div>
  1944. </div>
  1945. <!-- Unnamed (Table cell) -->
  1946. <div id="u32254" class="ax_default table_cell1 transition">
  1947. <svg data="images/巡检异常/u32254.svg" id="u32254_img" class="img generatedImage" viewbox="140 296 100 35">
  1948. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 140 296 )" class="fill" />
  1949. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 140 296 )" class="stroke" />
  1950. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 140 296 )" class="stroke" />
  1951. </svg>
  1952. <div id="u32254_text" class="text " style="display:none; visibility: hidden">
  1953. <p></p>
  1954. </div>
  1955. </div>
  1956. <!-- Unnamed (Table cell) -->
  1957. <div id="u32255" class="ax_default table_cell1 transition">
  1958. <svg data="images/巡检异常/u32255.svg" id="u32255_img" class="img generatedImage" viewbox="240 296 100 35">
  1959. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 240 296 )" class="fill" />
  1960. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 240 296 )" class="stroke" />
  1961. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 240 296 )" class="stroke" />
  1962. </svg>
  1963. <div id="u32255_text" class="text " style="display:none; visibility: hidden">
  1964. <p></p>
  1965. </div>
  1966. </div>
  1967. <!-- Unnamed (Table cell) -->
  1968. <div id="u32256" class="ax_default table_cell1 transition">
  1969. <svg data="images/巡检异常/u32256.svg" id="u32256_img" class="img generatedImage" viewbox="340 296 100 35">
  1970. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 340 296 )" class="fill" />
  1971. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 296 )" class="stroke" />
  1972. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 296 )" class="stroke" />
  1973. </svg>
  1974. <div id="u32256_text" class="text " style="display:none; visibility: hidden">
  1975. <p></p>
  1976. </div>
  1977. </div>
  1978. <!-- Unnamed (Table cell) -->
  1979. <div id="u32257" class="ax_default table_cell1 transition">
  1980. <svg data="images/巡检异常/u32257.svg" id="u32257_img" class="img generatedImage" viewbox="440 296 100 35">
  1981. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 440 296 )" class="fill" />
  1982. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 440 296 )" class="stroke" />
  1983. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 440 296 )" class="stroke" />
  1984. </svg>
  1985. <div id="u32257_text" class="text " style="display:none; visibility: hidden">
  1986. <p></p>
  1987. </div>
  1988. </div>
  1989. <!-- Unnamed (Table cell) -->
  1990. <div id="u32258" class="ax_default table_cell1 transition">
  1991. <svg data="images/巡检异常/u32258.svg" id="u32258_img" class="img generatedImage" viewbox="540 296 100 35">
  1992. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 540 296 )" class="fill" />
  1993. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 540 296 )" class="stroke" />
  1994. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 540 296 )" class="stroke" />
  1995. </svg>
  1996. <div id="u32258_text" class="text " style="display:none; visibility: hidden">
  1997. <p></p>
  1998. </div>
  1999. </div>
  2000. <!-- Unnamed (Table cell) -->
  2001. <div id="u32259" class="ax_default table_cell1 transition">
  2002. <svg data="images/巡检异常/u32259.svg" id="u32259_img" class="img generatedImage" viewbox="640 296 100 35">
  2003. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 640 296 )" class="fill" />
  2004. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 640 296 )" class="stroke" />
  2005. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 640 296 )" class="stroke" />
  2006. </svg>
  2007. <div id="u32259_text" class="text " style="display:none; visibility: hidden">
  2008. <p></p>
  2009. </div>
  2010. </div>
  2011. <!-- Unnamed (Table cell) -->
  2012. <div id="u32260" class="ax_default table_cell1 transition">
  2013. <svg data="images/巡检异常/u32260.svg" id="u32260_img" class="img generatedImage" viewbox="740 296 100 35">
  2014. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 740 296 )" class="fill" />
  2015. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 740 296 )" class="stroke" />
  2016. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 740 296 )" class="stroke" />
  2017. </svg>
  2018. <div id="u32260_text" class="text " style="display:none; visibility: hidden">
  2019. <p></p>
  2020. </div>
  2021. </div>
  2022. <!-- Unnamed (Table cell) -->
  2023. <div id="u32261" class="ax_default table_cell1 transition">
  2024. <svg data="images/巡检异常/u32261.svg" id="u32261_img" class="img generatedImage" viewbox="840 296 100 35">
  2025. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 840 296 )" class="fill" />
  2026. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 840 296 )" class="stroke" />
  2027. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 840 296 )" class="stroke" />
  2028. </svg>
  2029. <div id="u32261_text" class="text " style="display:none; visibility: hidden">
  2030. <p></p>
  2031. </div>
  2032. </div>
  2033. <!-- Unnamed (Table cell) -->
  2034. <div id="u32262" class="ax_default table_cell1 transition">
  2035. <svg data="images/巡检异常/u32262.svg" id="u32262_img" class="img generatedImage" viewbox="940 296 100 35">
  2036. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 940 296 )" class="fill" />
  2037. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 296 )" class="stroke" />
  2038. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 296 )" class="stroke" />
  2039. </svg>
  2040. <div id="u32262_text" class="text " style="display:none; visibility: hidden">
  2041. <p></p>
  2042. </div>
  2043. </div>
  2044. <!-- Unnamed (Table cell) -->
  2045. <div id="u32263" class="ax_default table_cell1 transition">
  2046. <svg data="images/巡检异常/u32263.svg" id="u32263_img" class="img generatedImage" viewbox="1040 296 100 35">
  2047. <path d="M 1 1 L 100 1 L 100 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1040 296 )" class="fill" />
  2048. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 296 )" class="stroke" />
  2049. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 296 )" class="stroke" />
  2050. </svg>
  2051. <div id="u32263_text" class="text " style="display:none; visibility: hidden">
  2052. <p></p>
  2053. </div>
  2054. </div>
  2055. <!-- Unnamed (Table cell) -->
  2056. <div id="u32264" class="ax_default table_cell1 transition">
  2057. <svg data="images/巡检异常/u32264.svg" id="u32264_img" class="img generatedImage" viewbox="1140 296 80 35">
  2058. <path d="M 1 1 L 79 1 L 79 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1140 296 )" class="fill" />
  2059. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 296 )" class="stroke" />
  2060. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 296 )" class="stroke" />
  2061. <path d="M 79.5 1 L 79.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 296 )" class="stroke" />
  2062. </svg>
  2063. <div id="u32264_text" class="text " style="display:none; visibility: hidden">
  2064. <p></p>
  2065. </div>
  2066. </div>
  2067. <!-- Unnamed (Table cell) -->
  2068. <div id="u32265" class="ax_default table_cell1 transition">
  2069. <svg data="images/巡检异常/u32265.svg" id="u32265_img" class="img generatedImage" viewbox="0 331 40 35">
  2070. <path d="M 1 1 L 40 1 L 40 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 331 )" class="fill" />
  2071. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 331 )" class="stroke" />
  2072. <path d="M 0 0.5 L 40 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 331 )" class="stroke" />
  2073. <path d="M 0 34.5 L 40 34.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 331 )" class="stroke" />
  2074. </svg>
  2075. <div id="u32265_text" class="text " style="display:none; visibility: hidden">
  2076. <p></p>
  2077. </div>
  2078. </div>
  2079. <!-- Unnamed (Table cell) -->
  2080. <div id="u32266" class="ax_default table_cell1 transition">
  2081. <svg data="images/巡检异常/u32266.svg" id="u32266_img" class="img generatedImage" viewbox="40 331 100 35">
  2082. <path d="M 1 1 L 100 1 L 100 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 40 331 )" class="fill" />
  2083. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 40 331 )" class="stroke" />
  2084. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 40 331 )" class="stroke" />
  2085. <path d="M 0 34.5 L 100 34.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 40 331 )" class="stroke" />
  2086. </svg>
  2087. <div id="u32266_text" class="text " style="display:none; visibility: hidden">
  2088. <p></p>
  2089. </div>
  2090. </div>
  2091. <!-- Unnamed (Table cell) -->
  2092. <div id="u32267" class="ax_default table_cell1 transition">
  2093. <svg data="images/巡检异常/u32267.svg" id="u32267_img" class="img generatedImage" viewbox="140 331 100 35">
  2094. <path d="M 1 1 L 100 1 L 100 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 140 331 )" class="fill" />
  2095. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 140 331 )" class="stroke" />
  2096. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 140 331 )" class="stroke" />
  2097. <path d="M 0 34.5 L 100 34.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 140 331 )" class="stroke" />
  2098. </svg>
  2099. <div id="u32267_text" class="text " style="display:none; visibility: hidden">
  2100. <p></p>
  2101. </div>
  2102. </div>
  2103. <!-- Unnamed (Table cell) -->
  2104. <div id="u32268" class="ax_default table_cell1 transition">
  2105. <svg data="images/巡检异常/u32268.svg" id="u32268_img" class="img generatedImage" viewbox="240 331 100 35">
  2106. <path d="M 1 1 L 100 1 L 100 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 240 331 )" class="fill" />
  2107. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 240 331 )" class="stroke" />
  2108. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 240 331 )" class="stroke" />
  2109. <path d="M 0 34.5 L 100 34.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 240 331 )" class="stroke" />
  2110. </svg>
  2111. <div id="u32268_text" class="text " style="display:none; visibility: hidden">
  2112. <p></p>
  2113. </div>
  2114. </div>
  2115. <!-- Unnamed (Table cell) -->
  2116. <div id="u32269" class="ax_default table_cell1 transition">
  2117. <svg data="images/巡检异常/u32269.svg" id="u32269_img" class="img generatedImage" viewbox="340 331 100 35">
  2118. <path d="M 1 1 L 100 1 L 100 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 340 331 )" class="fill" />
  2119. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 331 )" class="stroke" />
  2120. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 331 )" class="stroke" />
  2121. <path d="M 0 34.5 L 100 34.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 340 331 )" class="stroke" />
  2122. </svg>
  2123. <div id="u32269_text" class="text " style="display:none; visibility: hidden">
  2124. <p></p>
  2125. </div>
  2126. </div>
  2127. <!-- Unnamed (Table cell) -->
  2128. <div id="u32270" class="ax_default table_cell1 transition">
  2129. <svg data="images/巡检异常/u32270.svg" id="u32270_img" class="img generatedImage" viewbox="440 331 100 35">
  2130. <path d="M 1 1 L 100 1 L 100 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 440 331 )" class="fill" />
  2131. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 440 331 )" class="stroke" />
  2132. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 440 331 )" class="stroke" />
  2133. <path d="M 0 34.5 L 100 34.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 440 331 )" class="stroke" />
  2134. </svg>
  2135. <div id="u32270_text" class="text " style="display:none; visibility: hidden">
  2136. <p></p>
  2137. </div>
  2138. </div>
  2139. <!-- Unnamed (Table cell) -->
  2140. <div id="u32271" class="ax_default table_cell1 transition">
  2141. <svg data="images/巡检异常/u32271.svg" id="u32271_img" class="img generatedImage" viewbox="540 331 100 35">
  2142. <path d="M 1 1 L 100 1 L 100 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 540 331 )" class="fill" />
  2143. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 540 331 )" class="stroke" />
  2144. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 540 331 )" class="stroke" />
  2145. <path d="M 0 34.5 L 100 34.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 540 331 )" class="stroke" />
  2146. </svg>
  2147. <div id="u32271_text" class="text " style="display:none; visibility: hidden">
  2148. <p></p>
  2149. </div>
  2150. </div>
  2151. <!-- Unnamed (Table cell) -->
  2152. <div id="u32272" class="ax_default table_cell1 transition">
  2153. <svg data="images/巡检异常/u32272.svg" id="u32272_img" class="img generatedImage" viewbox="640 331 100 35">
  2154. <path d="M 1 1 L 100 1 L 100 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 640 331 )" class="fill" />
  2155. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 640 331 )" class="stroke" />
  2156. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 640 331 )" class="stroke" />
  2157. <path d="M 0 34.5 L 100 34.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 640 331 )" class="stroke" />
  2158. </svg>
  2159. <div id="u32272_text" class="text " style="display:none; visibility: hidden">
  2160. <p></p>
  2161. </div>
  2162. </div>
  2163. <!-- Unnamed (Table cell) -->
  2164. <div id="u32273" class="ax_default table_cell1 transition">
  2165. <svg data="images/巡检异常/u32273.svg" id="u32273_img" class="img generatedImage" viewbox="740 331 100 35">
  2166. <path d="M 1 1 L 100 1 L 100 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 740 331 )" class="fill" />
  2167. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 740 331 )" class="stroke" />
  2168. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 740 331 )" class="stroke" />
  2169. <path d="M 0 34.5 L 100 34.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 740 331 )" class="stroke" />
  2170. </svg>
  2171. <div id="u32273_text" class="text " style="display:none; visibility: hidden">
  2172. <p></p>
  2173. </div>
  2174. </div>
  2175. <!-- Unnamed (Table cell) -->
  2176. <div id="u32274" class="ax_default table_cell1 transition">
  2177. <svg data="images/巡检异常/u32274.svg" id="u32274_img" class="img generatedImage" viewbox="840 331 100 35">
  2178. <path d="M 1 1 L 100 1 L 100 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 840 331 )" class="fill" />
  2179. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 840 331 )" class="stroke" />
  2180. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 840 331 )" class="stroke" />
  2181. <path d="M 0 34.5 L 100 34.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 840 331 )" class="stroke" />
  2182. </svg>
  2183. <div id="u32274_text" class="text " style="display:none; visibility: hidden">
  2184. <p></p>
  2185. </div>
  2186. </div>
  2187. <!-- Unnamed (Table cell) -->
  2188. <div id="u32275" class="ax_default table_cell1 transition">
  2189. <svg data="images/巡检异常/u32275.svg" id="u32275_img" class="img generatedImage" viewbox="940 331 100 35">
  2190. <path d="M 1 1 L 100 1 L 100 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 940 331 )" class="fill" />
  2191. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 331 )" class="stroke" />
  2192. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 331 )" class="stroke" />
  2193. <path d="M 0 34.5 L 100 34.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 940 331 )" class="stroke" />
  2194. </svg>
  2195. <div id="u32275_text" class="text " style="display:none; visibility: hidden">
  2196. <p></p>
  2197. </div>
  2198. </div>
  2199. <!-- Unnamed (Table cell) -->
  2200. <div id="u32276" class="ax_default table_cell1 transition">
  2201. <svg data="images/巡检异常/u32276.svg" id="u32276_img" class="img generatedImage" viewbox="1040 331 100 35">
  2202. <path d="M 1 1 L 100 1 L 100 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1040 331 )" class="fill" />
  2203. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 331 )" class="stroke" />
  2204. <path d="M 0 0.5 L 100 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 331 )" class="stroke" />
  2205. <path d="M 0 34.5 L 100 34.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1040 331 )" class="stroke" />
  2206. </svg>
  2207. <div id="u32276_text" class="text " style="display:none; visibility: hidden">
  2208. <p></p>
  2209. </div>
  2210. </div>
  2211. <!-- Unnamed (Table cell) -->
  2212. <div id="u32277" class="ax_default table_cell1 transition">
  2213. <svg data="images/巡检异常/u32277.svg" id="u32277_img" class="img generatedImage" viewbox="1140 331 80 35">
  2214. <path d="M 1 1 L 79 1 L 79 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 1140 331 )" class="fill" />
  2215. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 331 )" class="stroke" />
  2216. <path d="M 0 0.5 L 80 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 331 )" class="stroke" />
  2217. <path d="M 79.5 1 L 79.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 331 )" class="stroke" />
  2218. <path d="M 0 34.5 L 80 34.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 1140 331 )" class="stroke" />
  2219. </svg>
  2220. <div id="u32277_text" class="text " style="display:none; visibility: hidden">
  2221. <p></p>
  2222. </div>
  2223. </div>
  2224. </div>
  2225. <!-- Unnamed (Group) -->
  2226. <div id="u32278" class="ax_default" data-left="1400" data-top="371" data-width="124" data-height="30" layer-opacity="1">
  2227. <!-- Unnamed (Rectangle) -->
  2228. <div id="u32279" class="ax_default box_1 transition">
  2229. <div id="u32279_div" class=""></div>
  2230. <div id="u32279_text" class="text ">
  2231. <p><span>查询</span></p>
  2232. </div>
  2233. </div>
  2234. <!-- Unnamed (Rectangle) -->
  2235. <div id="u32280" class="ax_default box_1 transition">
  2236. <div id="u32280_div" class=""></div>
  2237. <div id="u32280_text" class="text ">
  2238. <p><span>重置</span></p>
  2239. </div>
  2240. </div>
  2241. </div>
  2242. <!-- Unnamed (Group) -->
  2243. <div id="u32281" class="ax_default" data-left="950" data-top="370" data-width="140" data-height="30" layer-opacity="1">
  2244. <!-- Unnamed (Rectangle) -->
  2245. <div id="u32282" class="ax_default shape transition">
  2246. <div id="u32282_div" class=""></div>
  2247. <div id="u32282_text" class="text " style="display:none; visibility: hidden">
  2248. <p></p>
  2249. </div>
  2250. </div>
  2251. <!-- 选项内容 (Text field) -->
  2252. <div id="u32283" class="ax_default text_field transition" data-label="选项内容">
  2253. <div id="u32283_div" class=""></div>
  2254. <input id="u32283_input" type="text" value="" class="u32283_input"/>
  2255. </div>
  2256. </div>
  2257. <!-- Unnamed (Group) -->
  2258. <div id="u32284" class="ax_default" data-left="500" data-top="371" data-width="140" data-height="30" layer-opacity="1">
  2259. <!-- Unnamed (Rectangle) -->
  2260. <div id="u32285" class="ax_default box_1 transition">
  2261. <div id="u32285_div" class=""></div>
  2262. <div id="u32285_text" class="text " style="display:none; visibility: hidden">
  2263. <p></p>
  2264. </div>
  2265. </div>
  2266. <!-- Unnamed (Droplist) -->
  2267. <div id="u32286" class="ax_default droplist transition">
  2268. <div id="u32286_div" class=""></div>
  2269. <select id="u32286_input" class="u32286_input">
  2270. <option class="u32286_input_option" value="异常等级">异常等级</option>
  2271. </select>
  2272. </div>
  2273. </div>
  2274. <!-- Unnamed (Rectangle) -->
  2275. <div id="u32287" class="ax_default paragraph transition">
  2276. <div id="u32287_div" class=""></div>
  2277. <div id="u32287_text" class="text ">
  2278. <p><span>巡检异常明细</span></p>
  2279. </div>
  2280. </div>
  2281. <!-- Unnamed (Rectangle) -->
  2282. <div id="u32288" class="ax_default box_1 transition">
  2283. <div id="u32288_div" class=""></div>
  2284. <div id="u32288_text" class="text ">
  2285. <p><span>导出</span></p>
  2286. </div>
  2287. </div>
  2288. <!-- Unnamed (Rectangle) -->
  2289. <div id="u32289" class="ax_default box_1 transition">
  2290. <div id="u32289_div" class=""></div>
  2291. <div id="u32289_text" class="text ">
  2292. <p><span>批量关闭</span></p>
  2293. </div>
  2294. </div>
  2295. <!-- Unnamed (Group) -->
  2296. <div id="u32290" class="ax_default" data-left="1100" data-top="370" data-width="140" data-height="30" layer-opacity="1">
  2297. <!-- Unnamed (Rectangle) -->
  2298. <div id="u32291" class="ax_default shape transition">
  2299. <div id="u32291_div" class=""></div>
  2300. <div id="u32291_text" class="text " style="display:none; visibility: hidden">
  2301. <p></p>
  2302. </div>
  2303. </div>
  2304. <!-- 选项内容 (Text field) -->
  2305. <div id="u32292" class="ax_default text_field transition" data-label="选项内容">
  2306. <div id="u32292_div" class=""></div>
  2307. <input id="u32292_input" type="text" value="" class="u32292_input"/>
  2308. </div>
  2309. </div>
  2310. <!-- Unnamed (Group) -->
  2311. <div id="u32293" class="ax_default" data-left="1250" data-top="371" data-width="140" data-height="30" layer-opacity="1">
  2312. <!-- Unnamed (Rectangle) -->
  2313. <div id="u32294" class="ax_default box_1 transition">
  2314. <div id="u32294_div" class=""></div>
  2315. <div id="u32294_text" class="text " style="display:none; visibility: hidden">
  2316. <p></p>
  2317. </div>
  2318. </div>
  2319. <!-- Unnamed (Droplist) -->
  2320. <div id="u32295" class="ax_default droplist transition">
  2321. <div id="u32295_div" class=""></div>
  2322. <select id="u32295_input" class="u32295_input">
  2323. <option class="u32295_input_option" value="上报起止时间">上报起止时间</option>
  2324. </select>
  2325. </div>
  2326. </div>
  2327. <!-- Unnamed (Group) -->
  2328. <div id="u32296" class="ax_default" data-left="350" data-top="371" data-width="140" data-height="30" layer-opacity="1">
  2329. <!-- Unnamed (Rectangle) -->
  2330. <div id="u32297" class="ax_default box_1 transition">
  2331. <div id="u32297_div" class=""></div>
  2332. <div id="u32297_text" class="text " style="display:none; visibility: hidden">
  2333. <p></p>
  2334. </div>
  2335. </div>
  2336. <!-- Unnamed (Droplist) -->
  2337. <div id="u32298" class="ax_default droplist transition">
  2338. <div id="u32298_div" class=""></div>
  2339. <select id="u32298_input" class="u32298_input">
  2340. <option class="u32298_input_option" value="项目">项目</option>
  2341. </select>
  2342. </div>
  2343. </div>
  2344. <!-- Unnamed (Group) -->
  2345. <div id="u32299" class="ax_default" data-left="800" data-top="370" data-width="140" data-height="30" layer-opacity="1">
  2346. <!-- Unnamed (Rectangle) -->
  2347. <div id="u32300" class="ax_default shape transition">
  2348. <div id="u32300_div" class=""></div>
  2349. <div id="u32300_text" class="text " style="display:none; visibility: hidden">
  2350. <p></p>
  2351. </div>
  2352. </div>
  2353. <!-- 选项内容 (Text field) -->
  2354. <div id="u32301" class="ax_default text_field transition" data-label="选项内容">
  2355. <div id="u32301_div" class=""></div>
  2356. <input id="u32301_input" type="text" value="" class="u32301_input"/>
  2357. </div>
  2358. </div>
  2359. <!-- Unnamed (Group) -->
  2360. <div id="u32302" class="ax_default" data-left="650" data-top="371" data-width="140" data-height="30" layer-opacity="1">
  2361. <!-- Unnamed (Rectangle) -->
  2362. <div id="u32303" class="ax_default box_1 transition">
  2363. <div id="u32303_div" class=""></div>
  2364. <div id="u32303_text" class="text " style="display:none; visibility: hidden">
  2365. <p></p>
  2366. </div>
  2367. </div>
  2368. <!-- Unnamed (Droplist) -->
  2369. <div id="u32304" class="ax_default droplist transition">
  2370. <div id="u32304_div" class=""></div>
  2371. <select id="u32304_input" class="u32304_input">
  2372. <option class="u32304_input_option" value="异常类别">异常类别</option>
  2373. </select>
  2374. </div>
  2375. </div>
  2376. <!-- Unnamed (客户-智慧巡检) -->
  2377. <div id="u32305" class="nopointer ax_default">
  2378. <!-- Unnamed (Rectangle) -->
  2379. <div id="u32306" class="ax_default box_2 transition">
  2380. <div id="u32306_div" class=""></div>
  2381. <div id="u32306_text" class="text " style="display:none; visibility: hidden">
  2382. <p></p>
  2383. </div>
  2384. </div>
  2385. <!-- Unnamed (Rectangle) -->
  2386. <div id="u32307" class="ax_default label transition">
  2387. <div id="u32307_div" class=""></div>
  2388. <div id="u32307_text" class="text ">
  2389. <p><span>智慧巡检</span></p>
  2390. </div>
  2391. </div>
  2392. <!-- Unnamed (Rectangle) -->
  2393. <div id="u32308" class="ax_default label transition">
  2394. <div id="u32308_div" class=""></div>
  2395. <div id="u32308_text" class="text ">
  2396. <p><span>巡检异常</span></p>
  2397. </div>
  2398. </div>
  2399. <!-- Unnamed (Rectangle) -->
  2400. <div id="u32309" class="ax_default label transition">
  2401. <div id="u32309_div" class=""></div>
  2402. <div id="u32309_text" class="text ">
  2403. <p><span>巡检计划</span></p>
  2404. </div>
  2405. </div>
  2406. <!-- Unnamed (Rectangle) -->
  2407. <div id="u32310" class="ax_default label transition">
  2408. <div id="u32310_div" class=""></div>
  2409. <div id="u32310_text" class="text ">
  2410. <p><span>巡检点</span></p>
  2411. </div>
  2412. </div>
  2413. <!-- Unnamed (Rectangle) -->
  2414. <div id="u32311" class="ax_default label transition">
  2415. <div id="u32311_div" class=""></div>
  2416. <div id="u32311_text" class="text ">
  2417. <p><span>点位信息</span></p>
  2418. </div>
  2419. </div>
  2420. <!-- Unnamed (Rectangle) -->
  2421. <div id="u32312" class="ax_default label transition">
  2422. <div id="u32312_div" class=""></div>
  2423. <div id="u32312_text" class="text ">
  2424. <p><span>巡检管理</span></p>
  2425. </div>
  2426. </div>
  2427. <!-- Unnamed (Line) -->
  2428. <div id="u32313" class="ax_default line1 transition">
  2429. <svg data="images/项目列表/u4861.svg" id="u32313_img" class="img generatedImage">
  2430. <g transform="matrix(1 0 0 1 -1 -122 )">
  2431. <path d="M 0 0.5 L 200 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(242, 242, 242, 1)" fill="none" transform="matrix(1 0 0 1 1 122 )" class="stroke" />
  2432. </g>
  2433. </svg>
  2434. <div id="u32313_text" class="text " style="display:none; visibility: hidden">
  2435. <p></p>
  2436. </div>
  2437. </div>
  2438. <!-- Unnamed (Rectangle) -->
  2439. <div id="u32314" class="ax_default label transition">
  2440. <div id="u32314_div" class=""></div>
  2441. <div id="u32314_text" class="text ">
  2442. <p><span>巡检表单</span></p>
  2443. </div>
  2444. </div>
  2445. <!-- Unnamed (Rectangle) -->
  2446. <div id="u32315" class="ax_default label transition">
  2447. <div id="u32315_div" class=""></div>
  2448. <div id="u32315_text" class="text ">
  2449. <p><span>巡检类型</span></p>
  2450. </div>
  2451. </div>
  2452. <!-- Unnamed (Rectangle) -->
  2453. <div id="u32316" class="ax_default label transition">
  2454. <div id="u32316_div" class=""></div>
  2455. <div id="u32316_text" class="text ">
  2456. <p><span>巡检配置</span></p>
  2457. </div>
  2458. </div>
  2459. <!-- Unnamed (Rectangle) -->
  2460. <div id="u32317" class="ax_default label transition">
  2461. <div id="u32317_div" class=""></div>
  2462. <div id="u32317_text" class="text ">
  2463. <p><span>巡检看板</span></p>
  2464. </div>
  2465. </div>
  2466. <!-- Unnamed (Rectangle) -->
  2467. <div id="u32318" class="ax_default label transition">
  2468. <div id="u32318_div" class=""></div>
  2469. <div id="u32318_text" class="text ">
  2470. <p><span>巡检任务</span></p>
  2471. </div>
  2472. </div>
  2473. <!-- Unnamed (Rectangle) -->
  2474. <div id="u32319" class="ax_default label transition">
  2475. <div id="u32319_div" class=""></div>
  2476. <div id="u32319_text" class="text ">
  2477. <p><span>巡检统计</span></p>
  2478. </div>
  2479. </div>
  2480. <!-- Unnamed (Line) -->
  2481. <div id="u32320" class="ax_default line1 transition">
  2482. <svg data="images/项目列表/u4861.svg" id="u32320_img" class="img generatedImage">
  2483. <g transform="matrix(1 0 0 1 -1 -122 )">
  2484. <path d="M 0 0.5 L 200 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(242, 242, 242, 1)" fill="none" transform="matrix(1 0 0 1 1 122 )" class="stroke" />
  2485. </g>
  2486. </svg>
  2487. <div id="u32320_text" class="text " style="display:none; visibility: hidden">
  2488. <p></p>
  2489. </div>
  2490. </div>
  2491. <!-- Unnamed (Rectangle) -->
  2492. <div id="u32321" class="ax_default label transition">
  2493. <div id="u32321_div" class=""></div>
  2494. <div id="u32321_text" class="text ">
  2495. <p><span>任务统计</span></p>
  2496. </div>
  2497. </div>
  2498. <!-- Unnamed (Rectangle) -->
  2499. <div id="u32322" class="ax_default label transition">
  2500. <div id="u32322_div" class=""></div>
  2501. <div id="u32322_text" class="text ">
  2502. <p><span>巡检路线</span></p>
  2503. </div>
  2504. </div>
  2505. </div>
  2506. <!-- Unnamed (Rectangle) -->
  2507. <div id="u32323" class="ax_default paragraph transition">
  2508. <div id="u32323_div" class=""></div>
  2509. <div id="u32323_text" class="text ">
  2510. <p><span>此处显示汇总巡检任务上报的异常信息。可对异常事项进行派工/报修处理。</span></p>
  2511. </div>
  2512. </div>
  2513. <!-- Unnamed (Rectangle) -->
  2514. <div id="u32324" class="ax_default paragraph transition">
  2515. <div id="u32324_div" class=""></div>
  2516. <div id="u32324_text" class="text ">
  2517. <p><span>1、巡检异常巡检异常之后,管理员可对异常进行报事报修或直接关闭。</span></p><p><span>2、报修提交之后,则状态变更为:已处理,可关闭;</span></p><p><span>3、状态为:待处理、已处理,可进行关闭。</span></p>
  2518. </div>
  2519. </div>
  2520. <!-- Unnamed (Group) -->
  2521. <div id="u32325" class="ax_default" data-left="432" data-top="838" data-width="870" data-height="280" layer-opacity="1">
  2522. <!-- Unnamed (Group) -->
  2523. <div id="u32326" class="ax_default" data-left="432" data-top="838" data-width="480" data-height="280" layer-opacity="1">
  2524. <!-- Unnamed (Group) -->
  2525. <div id="u32327" class="ax_default" data-left="432" data-top="838" data-width="480" data-height="280" layer-opacity="1">
  2526. <!-- Unnamed (Rectangle) -->
  2527. <div id="u32328" class="ax_default shape transition">
  2528. <div id="u32328_div" class=""></div>
  2529. <div id="u32328_text" class="text " style="display:none; visibility: hidden">
  2530. <p></p>
  2531. </div>
  2532. </div>
  2533. <!-- Unnamed (Rectangle) -->
  2534. <div id="u32329" class="ax_default paragraph transition">
  2535. <div id="u32329_div" class=""></div>
  2536. <div id="u32329_text" class="text ">
  2537. <p><span>关闭原因*</span></p>
  2538. </div>
  2539. </div>
  2540. <!-- Unnamed (Rectangle) -->
  2541. <div id="u32330" class="ax_default paragraph transition">
  2542. <div id="u32330_div" class=""></div>
  2543. <div id="u32330_text" class="text ">
  2544. <p><span>关闭异常</span></p>
  2545. </div>
  2546. </div>
  2547. <!-- Unnamed (Radio button) -->
  2548. <div id="u32331" class="ax_default radio_button">
  2549. <label id="u32331_input_label" for="u32331_input" style="position: absolute; left: 0px;">
  2550. <svg data="images/巡检异常/u32331.svg" id="u32331_img" class="img " viewbox="536 907 12 12">
  2551. <path d="M 542 907 C 545.36 907 548 909.64 548 913 C 548 916.36 545.36 919 542 919 C 538.64 919 536 916.36 536 913 C 536 909.64 538.64 907 542 907 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  2552. <path d="M 542 907.5 C 545.08 907.5 547.5 909.92 547.5 913 C 547.5 916.08 545.08 918.5 542 918.5 C 538.92 918.5 536.5 916.08 536.5 913 C 536.5 909.92 538.92 907.5 542 907.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  2553. <path d="M 542 916 C 540.32 916 539 914.68 539 913 C 539 911.32 540.32 910 542 910 C 543.68 910 545 911.32 545 913 C 545 914.68 543.68 916 542 916 " fill-rule="nonzero" fill="rgba(121, 121, 121, 1)" stroke="none" class="stroke btn_check" />
  2554. </svg>
  2555. <div id="u32331_text" class="text ">
  2556. <p><span>已完成整改</span></p>
  2557. </div>
  2558. </label>
  2559. <input id="u32331_input" type="radio" value="radio" name="u32331"/>
  2560. </div>
  2561. <!-- Unnamed (Radio button) -->
  2562. <div id="u32332" class="ax_default radio_button">
  2563. <label id="u32332_input_label" for="u32332_input" style="position: absolute; left: 0px;">
  2564. <svg data="images/巡检异常/u32332.svg" id="u32332_img" class="img " viewbox="536 940 12 12">
  2565. <path d="M 542 940 C 545.36 940 548 942.64 548 946 C 548 949.36 545.36 952 542 952 C 538.64 952 536 949.36 536 946 C 536 942.64 538.64 940 542 940 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  2566. <path d="M 542 940.5 C 545.08 940.5 547.5 942.92 547.5 946 C 547.5 949.08 545.08 951.5 542 951.5 C 538.92 951.5 536.5 949.08 536.5 946 C 536.5 942.92 538.92 940.5 542 940.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  2567. <path d="M 542 949 C 540.32 949 539 947.68 539 946 C 539 944.32 540.32 943 542 943 C 543.68 943 545 944.32 545 946 C 545 947.68 543.68 949 542 949 " fill-rule="nonzero" fill="rgba(121, 121, 121, 1)" stroke="none" class="stroke btn_check" />
  2568. </svg>
  2569. <div id="u32332_text" class="text ">
  2570. <p><span>无需处理</span></p>
  2571. </div>
  2572. </label>
  2573. <input id="u32332_input" type="radio" value="radio" name="u32332"/>
  2574. </div>
  2575. <!-- Unnamed (Radio button) -->
  2576. <div id="u32333" class="ax_default radio_button selected">
  2577. <label id="u32333_input_label" for="u32333_input" style="position: absolute; left: 0px;">
  2578. <svg data="images/巡检异常/u32333.svg" id="u32333_img" class="img " viewbox="536 972 12 12">
  2579. <path d="M 542 972 C 545.36 972 548 974.64 548 978 C 548 981.36 545.36 984 542 984 C 538.64 984 536 981.36 536 978 C 536 974.64 538.64 972 542 972 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  2580. <path d="M 542 972.5 C 545.08 972.5 547.5 974.92 547.5 978 C 547.5 981.08 545.08 983.5 542 983.5 C 538.92 983.5 536.5 981.08 536.5 978 C 536.5 974.92 538.92 972.5 542 972.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  2581. <path d="M 542 981 C 540.32 981 539 979.68 539 978 C 539 976.32 540.32 975 542 975 C 543.68 975 545 976.32 545 978 C 545 979.68 543.68 981 542 981 " fill-rule="nonzero" fill="rgba(121, 121, 121, 1)" stroke="none" class="stroke btn_check" />
  2582. </svg>
  2583. <div id="u32333_text" class="text ">
  2584. <p><span>其他</span></p>
  2585. </div>
  2586. </label>
  2587. <input id="u32333_input" type="radio" value="radio" name="u32333" checked/>
  2588. </div>
  2589. <!-- Unnamed (Group) -->
  2590. <div id="u32334" class="ax_default" data-left="536" data-top="997" data-width="347" data-height="60" layer-opacity="1">
  2591. <!-- Unnamed (Rectangle) -->
  2592. <div id="u32335" class="ax_default shape transition">
  2593. <div id="u32335_div" class=""></div>
  2594. <div id="u32335_text" class="text " style="display:none; visibility: hidden">
  2595. <p></p>
  2596. </div>
  2597. </div>
  2598. <!-- 选项内容 (Text field) -->
  2599. <div id="u32336" class="ax_default text_field transition" data-label="选项内容">
  2600. <div id="u32336_div" class=""></div>
  2601. <input id="u32336_input" type="text" value="" class="u32336_input"/>
  2602. </div>
  2603. </div>
  2604. <!-- Unnamed (Group) -->
  2605. <div id="u32337" class="ax_default" data-left="704" data-top="1076" data-width="179" data-height="30" layer-opacity="1">
  2606. <!-- Unnamed (Rectangle) -->
  2607. <div id="u32338" class="ax_default box_1 transition">
  2608. <div id="u32338_div" class=""></div>
  2609. <div id="u32338_text" class="text ">
  2610. <p><span>确定</span></p>
  2611. </div>
  2612. </div>
  2613. <!-- Unnamed (Rectangle) -->
  2614. <div id="u32339" class="ax_default box_1 transition">
  2615. <div id="u32339_div" class=""></div>
  2616. <div id="u32339_text" class="text ">
  2617. <p><span>取消</span></p>
  2618. </div>
  2619. </div>
  2620. </div>
  2621. </div>
  2622. </div>
  2623. <!-- Unnamed (Rectangle) -->
  2624. <div id="u32340" class="ax_default paragraph transition">
  2625. <div id="u32340_div" class=""></div>
  2626. <div id="u32340_text" class="text ">
  2627. <p><span>1、点击「确定」之后,弹窗确认是否关闭异常记录。</span></p>
  2628. </div>
  2629. </div>
  2630. <!-- Unnamed (Group) -->
  2631. <div id="u32341" class="ax_default" data-left="922" data-top="954" data-width="380" data-height="164" layer-opacity="1">
  2632. <!-- Unnamed (Group) -->
  2633. <div id="u32342" class="ax_default" data-left="922" data-top="954" data-width="380" data-height="164" layer-opacity="1">
  2634. <!-- Unnamed (Rectangle) -->
  2635. <div id="u32343" class="ax_default shape transition">
  2636. <div id="u32343_div" class=""></div>
  2637. <div id="u32343_text" class="text " style="display:none; visibility: hidden">
  2638. <p></p>
  2639. </div>
  2640. </div>
  2641. <!-- Unnamed (Rectangle) -->
  2642. <div id="u32344" class="ax_default paragraph transition">
  2643. <div id="u32344_div" class=""></div>
  2644. <div id="u32344_text" class="text ">
  2645. <p><span>关闭之后,不支持撤回。请谨慎操作。</span></p>
  2646. </div>
  2647. </div>
  2648. <!-- Unnamed (Rectangle) -->
  2649. <div id="u32345" class="ax_default paragraph transition">
  2650. <div id="u32345_div" class=""></div>
  2651. <div id="u32345_text" class="text ">
  2652. <p><span>确定关闭异常记录?</span></p>
  2653. </div>
  2654. </div>
  2655. <!-- Unnamed (Rectangle) -->
  2656. <div id="u32346" class="ax_default shape transition">
  2657. <div id="u32346_div" class=""></div>
  2658. <div id="u32346_text" class="text ">
  2659. <p><span>确定</span></p>
  2660. </div>
  2661. </div>
  2662. <!-- Unnamed (Rectangle) -->
  2663. <div id="u32347" class="ax_default shape transition">
  2664. <div id="u32347_div" class=""></div>
  2665. <div id="u32347_text" class="text ">
  2666. <p><span>取 消</span></p>
  2667. </div>
  2668. </div>
  2669. <!-- Unnamed (Shape) -->
  2670. <div id="u32348" class="ax_default icon transition">
  2671. <svg data="images/项目列表/u4791.svg" id="u32348_img" class="img generatedImage">
  2672. <defs>
  2673. <pattern id="u32348_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2674. <mask fill="white" id="u32348_img_cl2936">
  2675. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="evenodd" />
  2676. </mask>
  2677. </defs>
  2678. <g transform="matrix(1 0 0 1 -1661 -842 )">
  2679. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="nonzero" fill="rgba(245, 154, 35, 1)" stroke="none" transform="matrix(1 0 0 1 1661 842 )" class="fill" />
  2680. <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u32348_img_cl2936)" />
  2681. <path d="M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u32348_img_cl2936)" />
  2682. <path d="M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u32348_img_cl2936)" />
  2683. </g>
  2684. </svg>
  2685. <div id="u32348_text" class="text " style="display:none; visibility: hidden">
  2686. <p></p>
  2687. </div>
  2688. </div>
  2689. </div>
  2690. </div>
  2691. </div>
  2692. <!-- Unnamed (Checkbox) -->
  2693. <div id="u32349" class="ax_default checkbox">
  2694. <label id="u32349_input_label" for="u32349_input" style="position: absolute; left: 0px;">
  2695. <svg data="images/巡检异常/u32349.svg" id="u32349_img" class="img " viewbox="366 476 12 12">
  2696. <path d="M 366 476 L 378 476 L 378 488 L 366 488 L 366 476 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  2697. <path d="M 366.5 476.5 L 377.5 476.5 L 377.5 487.5 L 366.5 487.5 L 366.5 476.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  2698. <path d="M 368.57142857142856 482 L 371.14285714285717 484.5714285714286 L 375.42857142857144 478.57142857142856 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  2699. </svg>
  2700. <div id="u32349_text" class="text " style="display:none; visibility: hidden">
  2701. <p></p>
  2702. </div>
  2703. </label>
  2704. <input id="u32349_input" type="checkbox" value="checkbox"/>
  2705. </div>
  2706. <!-- Unnamed (Checkbox) -->
  2707. <div id="u32350" class="ax_default checkbox">
  2708. <label id="u32350_input_label" for="u32350_input" style="position: absolute; left: 0px;">
  2709. <svg data="images/巡检异常/u32350.svg" id="u32350_img" class="img " viewbox="366 514 12 12">
  2710. <path d="M 366 514 L 378 514 L 378 526 L 366 526 L 366 514 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
  2711. <path d="M 366.5 514.5 L 377.5 514.5 L 377.5 525.5 L 366.5 525.5 L 366.5 514.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
  2712. <path d="M 368.57142857142856 520 L 371.14285714285717 522.5714285714286 L 375.42857142857144 516.5714285714286 " stroke-width="2.571428571428571" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke btn_check" />
  2713. </svg>
  2714. <div id="u32350_text" class="text " style="display:none; visibility: hidden">
  2715. <p></p>
  2716. </div>
  2717. </label>
  2718. <input id="u32350_input" type="checkbox" value="checkbox"/>
  2719. </div>
  2720. <!-- Unnamed (列表翻页) -->
  2721. <div id="u32351" class="nopointer ax_default">
  2722. <!-- Unnamed (Group) -->
  2723. <div id="u32352" class="ax_default" data-left="961" data-top="1183" data-width="600" data-height="30" layer-opacity="1">
  2724. <!-- Unnamed (Rectangle) -->
  2725. <div id="u32353" class="ax_default box_1 transition">
  2726. <div id="u32353_div" class=""></div>
  2727. <div id="u32353_text" class="text ">
  2728. <p><span>1</span></p>
  2729. </div>
  2730. </div>
  2731. <!-- Unnamed (Rectangle) -->
  2732. <div id="u32354" class="ax_default box_1 transition">
  2733. <div id="u32354_div" class=""></div>
  2734. <div id="u32354_text" class="text ">
  2735. <p><span>确定</span></p>
  2736. </div>
  2737. </div>
  2738. <!-- Unnamed (Group) -->
  2739. <div id="u32355" class="ax_default" data-left="1280" data-top="1183" data-width="96" data-height="30" layer-opacity="1">
  2740. <!-- Unnamed (Rectangle) -->
  2741. <div id="u32356" class="ax_default box_1 transition">
  2742. <div id="u32356_div" class=""></div>
  2743. <div id="u32356_text" class="text ">
  2744. <p><span>跳至</span></p>
  2745. </div>
  2746. </div>
  2747. <!-- Unnamed (Rectangle) -->
  2748. <div id="u32357" class="ax_default box_1 transition">
  2749. <div id="u32357_div" class=""></div>
  2750. <div id="u32357_text" class="text " style="display:none; visibility: hidden">
  2751. <p></p>
  2752. </div>
  2753. </div>
  2754. <!-- Unnamed (Rectangle) -->
  2755. <div id="u32358" class="ax_default box_1 transition">
  2756. <div id="u32358_div" class=""></div>
  2757. <div id="u32358_text" class="text ">
  2758. <p><span>页</span></p>
  2759. </div>
  2760. </div>
  2761. <!-- Unnamed (Text field) -->
  2762. <div id="u32359" class="ax_default text_field transition">
  2763. <div id="u32359_div" class=""></div>
  2764. <input id="u32359_input" type="text" value="" class="u32359_input"/>
  2765. </div>
  2766. </div>
  2767. <!-- Unnamed (Rectangle) -->
  2768. <div id="u32360" class="ax_default box_1 transition">
  2769. <div id="u32360_div" class=""></div>
  2770. <div id="u32360_text" class="text ">
  2771. <p><span>2</span></p>
  2772. </div>
  2773. </div>
  2774. <!-- Unnamed (Rectangle) -->
  2775. <div id="u32361" class="ax_default box_1 transition">
  2776. <div id="u32361_div" class=""></div>
  2777. <div id="u32361_text" class="text ">
  2778. <p><span>3</span></p>
  2779. </div>
  2780. </div>
  2781. <!-- Unnamed (Rectangle) -->
  2782. <div id="u32362" class="ax_default box_1 transition">
  2783. <div id="u32362_div" class=""></div>
  2784. <div id="u32362_text" class="text ">
  2785. <p><span>4</span></p>
  2786. </div>
  2787. </div>
  2788. <!-- Unnamed (Rectangle) -->
  2789. <div id="u32363" class="ax_default box_1 transition">
  2790. <div id="u32363_div" class=""></div>
  2791. <div id="u32363_text" class="text ">
  2792. <p><span>...</span></p>
  2793. </div>
  2794. </div>
  2795. <!-- Unnamed (Rectangle) -->
  2796. <div id="u32364" class="ax_default box_1 transition">
  2797. <div id="u32364_div" class=""></div>
  2798. <div id="u32364_text" class="text ">
  2799. <p><span>10</span></p>
  2800. </div>
  2801. </div>
  2802. <!-- Unnamed (Rectangle) -->
  2803. <div id="u32365" class="ax_default box_1 transition">
  2804. <div id="u32365_div" class=""></div>
  2805. <div id="u32365_text" class="text ">
  2806. <p><span>2/10</span></p>
  2807. </div>
  2808. </div>
  2809. <!-- 上一页 (Group) -->
  2810. <div id="u32366" class="ax_default" data-label="上一页" data-left="961" data-top="1183" data-width="31" data-height="30" layer-opacity="1">
  2811. <!-- Unnamed (Rectangle) -->
  2812. <div id="u32367" class="ax_default box_1 transition">
  2813. <div id="u32367_div" class=""></div>
  2814. <div id="u32367_text" class="text " style="display:none; visibility: hidden">
  2815. <p></p>
  2816. </div>
  2817. </div>
  2818. <!-- Unnamed (Shape) -->
  2819. <div id="u32368" class="ax_default icon transition">
  2820. <svg data="images/消息/u1268.svg" id="u32368_img" class="img generatedImage">
  2821. <defs>
  2822. <pattern id="u32368_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2823. <mask fill="white" id="u32368_img_cl2741">
  2824. <path d="M 7.862542955326489 0.8416833667334913 C 7.954180985108906 0.9352037408150409 8 1.0427521710087149 8 1.1643286573145133 C 8 1.285905143620539 7.954180985108906 1.393453573814213 7.862542955326489 1.4869739478957626 L 2.460481099656363 6.999999999999886 L 7.862542955326489 12.513026052104237 C 7.954180985108906 12.606546426185787 8 12.714094856379461 8 12.835671342685487 C 8 12.957247828991285 7.954180985108906 13.06479625918496 7.862542955326489 13.158316633266509 L 7.175257731958709 13.859719438877846 C 7.083619702176293 13.953239812959282 6.978235967926594 14 6.859106529209612 14 C 6.739977090492403 14 6.6345933562427035 13.953239812959282 6.542955326460515 13.859719438877846 L 0.1374570446735106 7.322645290581249 C 0.04581901489109441 7.229124916499699 0 7.12157648630614 0 6.999999999999886 C 0 6.8784235136938605 0.04581901489109441 6.7708750835003 0.1374570446735106 6.677354709418751 L 6.542955326460515 0.1402805611221538 C 6.6345933562427035 0.04676018704071794 6.739977090492403 0 6.859106529209612 0 C 6.978235967926594 0 7.083619702176293 0.04676018704071794 7.175257731958709 0.1402805611221538 L 7.862542955326489 0.8416833667334913 Z " fill-rule="evenodd" />
  2825. </mask>
  2826. </defs>
  2827. <g transform="matrix(1 0 0 1 -659 -2248 )">
  2828. <path d="M 7.862542955326489 0.8416833667334913 C 7.954180985108906 0.9352037408150409 8 1.0427521710087149 8 1.1643286573145133 C 8 1.285905143620539 7.954180985108906 1.393453573814213 7.862542955326489 1.4869739478957626 L 2.460481099656363 6.999999999999886 L 7.862542955326489 12.513026052104237 C 7.954180985108906 12.606546426185787 8 12.714094856379461 8 12.835671342685487 C 8 12.957247828991285 7.954180985108906 13.06479625918496 7.862542955326489 13.158316633266509 L 7.175257731958709 13.859719438877846 C 7.083619702176293 13.953239812959282 6.978235967926594 14 6.859106529209612 14 C 6.739977090492403 14 6.6345933562427035 13.953239812959282 6.542955326460515 13.859719438877846 L 0.1374570446735106 7.322645290581249 C 0.04581901489109441 7.229124916499699 0 7.12157648630614 0 6.999999999999886 C 0 6.8784235136938605 0.04581901489109441 6.7708750835003 0.1374570446735106 6.677354709418751 L 6.542955326460515 0.1402805611221538 C 6.6345933562427035 0.04676018704071794 6.739977090492403 0 6.859106529209612 0 C 6.978235967926594 0 7.083619702176293 0.04676018704071794 7.175257731958709 0.1402805611221538 L 7.862542955326489 0.8416833667334913 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 659 2248 )" class="fill" />
  2829. <path d="M 7.862542955326489 0.8416833667334913 C 7.954180985108906 0.9352037408150409 8 1.0427521710087149 8 1.1643286573145133 C 8 1.285905143620539 7.954180985108906 1.393453573814213 7.862542955326489 1.4869739478957626 L 2.460481099656363 6.999999999999886 L 7.862542955326489 12.513026052104237 C 7.954180985108906 12.606546426185787 8 12.714094856379461 8 12.835671342685487 C 8 12.957247828991285 7.954180985108906 13.06479625918496 7.862542955326489 13.158316633266509 L 7.175257731958709 13.859719438877846 C 7.083619702176293 13.953239812959282 6.978235967926594 14 6.859106529209612 14 C 6.739977090492403 14 6.6345933562427035 13.953239812959282 6.542955326460515 13.859719438877846 L 0.1374570446735106 7.322645290581249 C 0.04581901489109441 7.229124916499699 0 7.12157648630614 0 6.999999999999886 C 0 6.8784235136938605 0.04581901489109441 6.7708750835003 0.1374570446735106 6.677354709418751 L 6.542955326460515 0.1402805611221538 C 6.6345933562427035 0.04676018704071794 6.739977090492403 0 6.859106529209612 0 C 6.978235967926594 0 7.083619702176293 0.04676018704071794 7.175257731958709 0.1402805611221538 L 7.862542955326489 0.8416833667334913 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(228, 228, 228, 1)" fill="none" transform="matrix(1 0 0 1 659 2248 )" class="stroke" mask="url(#u32368_img_cl2741)" />
  2830. </g>
  2831. </svg>
  2832. <div id="u32368_text" class="text " style="display:none; visibility: hidden">
  2833. <p></p>
  2834. </div>
  2835. </div>
  2836. </div>
  2837. <!-- 下一页 (Group) -->
  2838. <div id="u32369" class="ax_default" data-label="下一页" data-left="1195" data-top="1183" data-width="31" data-height="30" layer-opacity="1">
  2839. <!-- Unnamed (Rectangle) -->
  2840. <div id="u32370" class="ax_default box_1 transition">
  2841. <div id="u32370_div" class=""></div>
  2842. <div id="u32370_text" class="text " style="display:none; visibility: hidden">
  2843. <p></p>
  2844. </div>
  2845. </div>
  2846. <!-- Unnamed (Shape) -->
  2847. <div id="u32371" class="ax_default icon transition">
  2848. <svg data="images/消息/u1271.svg" id="u32371_img" class="img generatedImage">
  2849. <defs>
  2850. <pattern id="u32371_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2851. <mask fill="white" id="u32371_img_cl2742">
  2852. <path d="M 7.862542955326489 6.677354709418751 C 7.954180985108906 6.770875083500414 8 6.878423513693974 8 7 C 8 7.121576486306025 7.954180985108906 7.229124916499586 7.862542955326489 7.322645290581249 L 1.4570446735394853 13.859719438877733 C 1.365406643757069 13.953239812959168 1.26002290950737 14 1.1408934707903882 14 C 1.0217640320734063 14 0.9163802978237072 13.953239812959168 0.824742268041291 13.859719438877733 L 0.1374570446735106 13.158316633266509 C 0.04581901489109441 13.064796259185073 0 12.957247828991285 0 12.835671342685373 C 0 12.714094856379461 0.04581901489109441 12.606546426185673 0.1374570446735106 12.513026052104237 L 5.539518900343637 7 L 0.1374570446735106 1.4869739478957626 C 0.04581901489109441 1.3934535738143268 0 1.285905143620539 0 1.164328657314627 C 0 1.0427521710087149 0.04581901489109441 0.9352037408149272 0.1374570446735106 0.8416833667334913 L 0.824742268041291 0.1402805611222675 C 0.9163802978237072 0.046760187040831624 1.0217640320734063 0 1.1408934707903882 0 C 1.26002290950737 0 1.365406643757069 0.046760187040831624 1.4570446735394853 0.1402805611222675 L 7.862542955326489 6.677354709418751 Z " fill-rule="evenodd" />
  2853. </mask>
  2854. </defs>
  2855. <g transform="matrix(1 0 0 1 -894 -2248 )">
  2856. <path d="M 7.862542955326489 6.677354709418751 C 7.954180985108906 6.770875083500414 8 6.878423513693974 8 7 C 8 7.121576486306025 7.954180985108906 7.229124916499586 7.862542955326489 7.322645290581249 L 1.4570446735394853 13.859719438877733 C 1.365406643757069 13.953239812959168 1.26002290950737 14 1.1408934707903882 14 C 1.0217640320734063 14 0.9163802978237072 13.953239812959168 0.824742268041291 13.859719438877733 L 0.1374570446735106 13.158316633266509 C 0.04581901489109441 13.064796259185073 0 12.957247828991285 0 12.835671342685373 C 0 12.714094856379461 0.04581901489109441 12.606546426185673 0.1374570446735106 12.513026052104237 L 5.539518900343637 7 L 0.1374570446735106 1.4869739478957626 C 0.04581901489109441 1.3934535738143268 0 1.285905143620539 0 1.164328657314627 C 0 1.0427521710087149 0.04581901489109441 0.9352037408149272 0.1374570446735106 0.8416833667334913 L 0.824742268041291 0.1402805611222675 C 0.9163802978237072 0.046760187040831624 1.0217640320734063 0 1.1408934707903882 0 C 1.26002290950737 0 1.365406643757069 0.046760187040831624 1.4570446735394853 0.1402805611222675 L 7.862542955326489 6.677354709418751 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 894 2248 )" class="fill" />
  2857. <path d="M 7.862542955326489 6.677354709418751 C 7.954180985108906 6.770875083500414 8 6.878423513693974 8 7 C 8 7.121576486306025 7.954180985108906 7.229124916499586 7.862542955326489 7.322645290581249 L 1.4570446735394853 13.859719438877733 C 1.365406643757069 13.953239812959168 1.26002290950737 14 1.1408934707903882 14 C 1.0217640320734063 14 0.9163802978237072 13.953239812959168 0.824742268041291 13.859719438877733 L 0.1374570446735106 13.158316633266509 C 0.04581901489109441 13.064796259185073 0 12.957247828991285 0 12.835671342685373 C 0 12.714094856379461 0.04581901489109441 12.606546426185673 0.1374570446735106 12.513026052104237 L 5.539518900343637 7 L 0.1374570446735106 1.4869739478957626 C 0.04581901489109441 1.3934535738143268 0 1.285905143620539 0 1.164328657314627 C 0 1.0427521710087149 0.04581901489109441 0.9352037408149272 0.1374570446735106 0.8416833667334913 L 0.824742268041291 0.1402805611222675 C 0.9163802978237072 0.046760187040831624 1.0217640320734063 0 1.1408934707903882 0 C 1.26002290950737 0 1.365406643757069 0.046760187040831624 1.4570446735394853 0.1402805611222675 L 7.862542955326489 6.677354709418751 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(228, 228, 228, 1)" fill="none" transform="matrix(1 0 0 1 894 2248 )" class="stroke" mask="url(#u32371_img_cl2742)" />
  2858. </g>
  2859. </svg>
  2860. <div id="u32371_text" class="text " style="display:none; visibility: hidden">
  2861. <p></p>
  2862. </div>
  2863. </div>
  2864. </div>
  2865. <!-- Unnamed (Group) -->
  2866. <div id="u32372" class="ax_default" data-left="1396" data-top="1183" data-width="96" data-height="30" layer-opacity="1">
  2867. <!-- Unnamed (Rectangle) -->
  2868. <div id="u32373" class="ax_default box_1 transition">
  2869. <div id="u32373_div" class=""></div>
  2870. <div id="u32373_text" class="text ">
  2871. <p><span>每页</span></p>
  2872. </div>
  2873. </div>
  2874. <!-- Unnamed (Rectangle) -->
  2875. <div id="u32374" class="ax_default box_1 transition">
  2876. <div id="u32374_div" class=""></div>
  2877. <div id="u32374_text" class="text " style="display:none; visibility: hidden">
  2878. <p></p>
  2879. </div>
  2880. </div>
  2881. <!-- Unnamed (Rectangle) -->
  2882. <div id="u32375" class="ax_default box_1 transition">
  2883. <div id="u32375_div" class=""></div>
  2884. <div id="u32375_text" class="text ">
  2885. <p><span>条</span></p>
  2886. </div>
  2887. </div>
  2888. <!-- Unnamed (Text field) -->
  2889. <div id="u32376" class="ax_default text_field transition">
  2890. <div id="u32376_div" class=""></div>
  2891. <input id="u32376_input" type="text" value="" class="u32376_input"/>
  2892. </div>
  2893. </div>
  2894. </div>
  2895. </div>
  2896. <!-- Unnamed (Group) -->
  2897. <div id="u32377" class="ax_default" data-left="500" data-top="140" data-width="140" data-height="30" layer-opacity="1">
  2898. <!-- Unnamed (Rectangle) -->
  2899. <div id="u32378" class="ax_default box_1 transition">
  2900. <div id="u32378_div" class=""></div>
  2901. <div id="u32378_text" class="text " style="display:none; visibility: hidden">
  2902. <p></p>
  2903. </div>
  2904. </div>
  2905. <!-- Unnamed (Droplist) -->
  2906. <div id="u32379" class="ax_default droplist transition">
  2907. <div id="u32379_div" class=""></div>
  2908. <select id="u32379_input" class="u32379_input">
  2909. <option class="u32379_input_option" value="统计时间">统计时间</option>
  2910. <option class="u32379_input_option" value="开始日期-结束日期">开始日期-结束日期</option>
  2911. </select>
  2912. </div>
  2913. </div>
  2914. <!-- Unnamed (Group) -->
  2915. <div id="u32380" class="ax_default" data-left="350" data-top="140" data-width="140" data-height="30" layer-opacity="1">
  2916. <!-- Unnamed (Rectangle) -->
  2917. <div id="u32381" class="ax_default box_1 transition">
  2918. <div id="u32381_div" class=""></div>
  2919. <div id="u32381_text" class="text " style="display:none; visibility: hidden">
  2920. <p></p>
  2921. </div>
  2922. </div>
  2923. <!-- Unnamed (Droplist) -->
  2924. <div id="u32382" class="ax_default droplist transition">
  2925. <div id="u32382_div" class=""></div>
  2926. <select id="u32382_input" class="u32382_input">
  2927. <option class="u32382_input_option" value="统计项目">统计项目</option>
  2928. <option class="u32382_input_option" value="默认全部,可筛选单个">默认全部,可筛选单个</option>
  2929. </select>
  2930. </div>
  2931. </div>
  2932. </div>
  2933. <script src="resources/scripts/axure/ios.js"></script>
  2934. </body>
  2935. </html>