房屋住户.html 215 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168
  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="u12736" class="nopointer ax_default">
  55. <!-- Unnamed (Rectangle) -->
  56. <div id="u12737" class="ax_default box_2 transition">
  57. <div id="u12737_div" class=""></div>
  58. <div id="u12737_text" class="text " style="display:none; visibility: hidden">
  59. <p></p>
  60. </div>
  61. </div>
  62. <!-- Unnamed (Rectangle) -->
  63. <div id="u12738" class="ax_default label transition">
  64. <div id="u12738_div" class=""></div>
  65. <div id="u12738_text" class="text ">
  66. <p><span>课后延时慧学平台</span></p>
  67. </div>
  68. </div>
  69. <!-- Unnamed (Rectangle) -->
  70. <div id="u12739" class="ax_default box_2 transition">
  71. <div id="u12739_div" class=""></div>
  72. <div id="u12739_text" class="text " style="display:none; visibility: hidden">
  73. <p></p>
  74. </div>
  75. </div>
  76. <!-- Unnamed (Group) -->
  77. <div id="u12740" class="ax_default" data-left="19" data-top="10" data-width="204" data-height="31" layer-opacity="1">
  78. <!-- Unnamed (Ellipse) -->
  79. <div id="u12741" class="ax_default ellipse transition">
  80. <svg data="images/pc网页端/u5.svg" id="u12741_img" class="img generatedImage">
  81. <defs>
  82. <pattern id="u12741_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  83. <mask fill="white" id="u12741_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(#u12741_img_cl2539)" />
  90. </g>
  91. </svg>
  92. <div id="u12741_text" class="text ">
  93. <p><span>logo</span></p>
  94. </div>
  95. </div>
  96. <!-- Unnamed (Rectangle) -->
  97. <div id="u12742" class="ax_default label transition">
  98. <div id="u12742_div" class=""></div>
  99. <div id="u12742_text" class="text ">
  100. <p><span>保利智慧社区管理平台</span></p>
  101. </div>
  102. </div>
  103. </div>
  104. <!-- Unnamed (Rectangle) -->
  105. <div id="u12743" class="ax_default box_2 transition">
  106. <div id="u12743_div" class=""></div>
  107. <div id="u12743_text" class="text " style="display:none; visibility: hidden">
  108. <p></p>
  109. </div>
  110. </div>
  111. <!-- Unnamed (Group) -->
  112. <div id="u12744" class="ax_default" data-left="20" data-top="171" data-width="52" data-height="22" layer-opacity="1">
  113. <!-- Unnamed (Rectangle) -->
  114. <div id="u12745" class="ax_default label transition">
  115. <div id="u12745_div" class=""></div>
  116. <div id="u12745_text" class="text ">
  117. <p><span>项目</span></p>
  118. </div>
  119. </div>
  120. <!-- Unnamed (Placeholder) -->
  121. <div id="u12746" class="ax_default placeholder transition">
  122. <svg data="images/房屋住户/u12746.svg" id="u12746_img" class="img generatedImage">
  123. <defs>
  124. <pattern id="u12746_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  125. <mask fill="white" id="u12746_img_cl3503">
  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(#u12746_img_cl3503)" />
  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="u12746_text" class="text " style="display:none; visibility: hidden">
  136. <p></p>
  137. </div>
  138. </div>
  139. </div>
  140. <!-- Unnamed (Group) -->
  141. <div id="u12747" class="ax_default" data-left="20" data-top="381" data-width="52" data-height="22" layer-opacity="1">
  142. <!-- Unnamed (Rectangle) -->
  143. <div id="u12748" class="ax_default label transition">
  144. <div id="u12748_div" class=""></div>
  145. <div id="u12748_text" class="text ">
  146. <p><span>企业</span></p>
  147. </div>
  148. </div>
  149. <!-- Unnamed (Placeholder) -->
  150. <div id="u12749" class="ax_default placeholder transition">
  151. <svg data="images/房屋住户/u12749.svg" id="u12749_img" class="img generatedImage">
  152. <defs>
  153. <pattern id="u12749_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  154. <mask fill="white" id="u12749_img_cl3504">
  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(#u12749_img_cl3504)" />
  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="u12749_text" class="text " style="display:none; visibility: hidden">
  165. <p></p>
  166. </div>
  167. </div>
  168. </div>
  169. <!-- Unnamed (Group) -->
  170. <div id="u12750" class="ax_default" data-left="20" data-top="133" data-width="68" data-height="22" layer-opacity="1">
  171. <!-- Unnamed (Rectangle) -->
  172. <div id="u12751" class="ax_default label transition">
  173. <div id="u12751_div" class=""></div>
  174. <div id="u12751_text" class="text ">
  175. <p><span>可视化</span></p>
  176. </div>
  177. </div>
  178. <!-- Unnamed (Placeholder) -->
  179. <div id="u12752" class="ax_default placeholder transition">
  180. <svg data="images/房屋住户/u12752.svg" id="u12752_img" class="img generatedImage">
  181. <defs>
  182. <pattern id="u12752_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  183. <mask fill="white" id="u12752_img_cl3505">
  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(#u12752_img_cl3505)" />
  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="u12752_text" class="text " style="display:none; visibility: hidden">
  194. <p></p>
  195. </div>
  196. </div>
  197. </div>
  198. <!-- Unnamed (Group) -->
  199. <div id="u12753" class="ax_default" data-left="20" data-top="423" data-width="52" data-height="22" layer-opacity="1">
  200. <!-- Unnamed (Rectangle) -->
  201. <div id="u12754" class="ax_default label transition">
  202. <div id="u12754_div" class=""></div>
  203. <div id="u12754_text" class="text ">
  204. <p><span>标签</span></p>
  205. </div>
  206. </div>
  207. <!-- Unnamed (Placeholder) -->
  208. <div id="u12755" class="ax_default placeholder transition">
  209. <svg data="images/房屋住户/u12755.svg" id="u12755_img" class="img generatedImage">
  210. <defs>
  211. <pattern id="u12755_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  212. <mask fill="white" id="u12755_img_cl3506">
  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(#u12755_img_cl3506)" />
  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="u12755_text" class="text " style="display:none; visibility: hidden">
  223. <p></p>
  224. </div>
  225. </div>
  226. </div>
  227. <!-- Unnamed (Group) -->
  228. <div id="u12756" class="ax_default" data-left="20" data-top="297" data-width="52" data-height="22" layer-opacity="1">
  229. <!-- Unnamed (Rectangle) -->
  230. <div id="u12757" class="ax_default label transition">
  231. <div id="u12757_div" class=""></div>
  232. <div id="u12757_text" class="text ">
  233. <p><span>财务</span></p>
  234. </div>
  235. </div>
  236. <!-- Unnamed (Placeholder) -->
  237. <div id="u12758" class="ax_default placeholder transition">
  238. <svg data="images/房屋住户/u12758.svg" id="u12758_img" class="img generatedImage">
  239. <defs>
  240. <pattern id="u12758_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  241. <mask fill="white" id="u12758_img_cl3507">
  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(#u12758_img_cl3507)" />
  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="u12758_text" class="text " style="display:none; visibility: hidden">
  252. <p></p>
  253. </div>
  254. </div>
  255. </div>
  256. <!-- Unnamed (Group) -->
  257. <div id="u12759" class="ax_default" data-left="20" data-top="213" data-width="52" data-height="22" layer-opacity="1">
  258. <!-- Unnamed (Rectangle) -->
  259. <div id="u12760" class="ax_default label transition">
  260. <div id="u12760_div" class=""></div>
  261. <div id="u12760_text" class="text ">
  262. <p><span>空间</span></p>
  263. </div>
  264. </div>
  265. <!-- Unnamed (Placeholder) -->
  266. <div id="u12761" class="ax_default placeholder transition">
  267. <svg data="images/房屋住户/u12761.svg" id="u12761_img" class="img generatedImage">
  268. <defs>
  269. <pattern id="u12761_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  270. <mask fill="white" id="u12761_img_cl3508">
  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(#u12761_img_cl3508)" />
  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="u12761_text" class="text " style="display:none; visibility: hidden">
  281. <p></p>
  282. </div>
  283. </div>
  284. </div>
  285. <!-- Unnamed (Group) -->
  286. <div id="u12762" class="ax_default" data-left="20" data-top="339" data-width="52" data-height="22" layer-opacity="1">
  287. <!-- Unnamed (Rectangle) -->
  288. <div id="u12763" class="ax_default label transition">
  289. <div id="u12763_div" class=""></div>
  290. <div id="u12763_text" class="text ">
  291. <p><span>办公</span></p>
  292. </div>
  293. </div>
  294. <!-- Unnamed (Placeholder) -->
  295. <div id="u12764" class="ax_default placeholder transition">
  296. <svg data="images/房屋住户/u12764.svg" id="u12764_img" class="img generatedImage">
  297. <defs>
  298. <pattern id="u12764_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  299. <mask fill="white" id="u12764_img_cl3509">
  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(#u12764_img_cl3509)" />
  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="u12764_text" class="text " style="display:none; visibility: hidden">
  310. <p></p>
  311. </div>
  312. </div>
  313. </div>
  314. <!-- Unnamed (Group) -->
  315. <div id="u12765" class="ax_default" data-left="20" data-top="465" data-width="52" data-height="22" layer-opacity="1">
  316. <!-- Unnamed (Rectangle) -->
  317. <div id="u12766" class="ax_default label transition">
  318. <div id="u12766_div" class=""></div>
  319. <div id="u12766_text" class="text ">
  320. <p><span>系统</span></p>
  321. </div>
  322. </div>
  323. <!-- Unnamed (Placeholder) -->
  324. <div id="u12767" class="ax_default placeholder transition">
  325. <svg data="images/房屋住户/u12767.svg" id="u12767_img" class="img generatedImage">
  326. <defs>
  327. <pattern id="u12767_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  328. <mask fill="white" id="u12767_img_cl3510">
  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(#u12767_img_cl3510)" />
  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="u12767_text" class="text " style="display:none; visibility: hidden">
  339. <p></p>
  340. </div>
  341. </div>
  342. </div>
  343. <!-- Unnamed (Group) -->
  344. <div id="u12768" class="ax_default" data-left="20" data-top="1144" data-width="61" data-height="22" layer-opacity="1">
  345. <!-- Unnamed (Rectangle) -->
  346. <div id="u12769" class="ax_default label transition">
  347. <div id="u12769_div" class=""></div>
  348. <div id="u12769_text" class="text ">
  349. <p><span>消息</span></p>
  350. </div>
  351. </div>
  352. <!-- Unnamed (Placeholder) -->
  353. <div id="u12770" class="ax_default placeholder transition">
  354. <svg data="images/房屋住户/u12770.svg" id="u12770_img" class="img generatedImage">
  355. <defs>
  356. <pattern id="u12770_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  357. <mask fill="white" id="u12770_img_cl3511">
  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(#u12770_img_cl3511)" />
  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="u12770_text" class="text " style="display:none; visibility: hidden">
  368. <p></p>
  369. </div>
  370. </div>
  371. </div>
  372. <!-- Unnamed (Group) -->
  373. <div id="u12771" class="ax_default" data-left="20" data-top="1186" data-width="61" data-height="22" layer-opacity="1">
  374. <!-- Unnamed (Rectangle) -->
  375. <div id="u12772" class="ax_default label transition">
  376. <div id="u12772_div" class=""></div>
  377. <div id="u12772_text" class="text ">
  378. <p><span>设置</span></p>
  379. </div>
  380. </div>
  381. <!-- Unnamed (Placeholder) -->
  382. <div id="u12773" class="ax_default placeholder transition">
  383. <svg data="images/房屋住户/u12773.svg" id="u12773_img" class="img generatedImage">
  384. <defs>
  385. <pattern id="u12773_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  386. <mask fill="white" id="u12773_img_cl3512">
  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(#u12773_img_cl3512)" />
  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="u12773_text" class="text " style="display:none; visibility: hidden">
  397. <p></p>
  398. </div>
  399. </div>
  400. </div>
  401. <!-- Unnamed (Group) -->
  402. <div id="u12774" class="ax_default" data-left="20" data-top="255" data-width="52" data-height="22" layer-opacity="1">
  403. <!-- Unnamed (Rectangle) -->
  404. <div id="u12775" class="ax_default label transition">
  405. <div id="u12775_div" class=""></div>
  406. <div id="u12775_text" class="text ">
  407. <p><span>收费</span></p>
  408. </div>
  409. </div>
  410. <!-- Unnamed (Placeholder) -->
  411. <div id="u12776" class="ax_default placeholder transition">
  412. <svg data="images/房屋住户/u12776.svg" id="u12776_img" class="img generatedImage">
  413. <defs>
  414. <pattern id="u12776_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  415. <mask fill="white" id="u12776_img_cl3513">
  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(#u12776_img_cl3513)" />
  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="u12776_text" class="text " style="display:none; visibility: hidden">
  426. <p></p>
  427. </div>
  428. </div>
  429. </div>
  430. <!-- Unnamed (Group) -->
  431. <div id="u12777" class="ax_default" data-left="1194" data-top="11" data-width="386" data-height="27" layer-opacity="1">
  432. <!-- Unnamed (Droplist) -->
  433. <div id="u12778" class="ax_default droplist transition">
  434. <div id="u12778_div" class=""></div>
  435. <select id="u12778_input" class="u12778_input">
  436. <option class="u12778_input_option" value="西安中尚硕房地产开发有限公司">西安中尚硕房地产开发有限公司</option>
  437. </select>
  438. </div>
  439. <!-- Unnamed (Placeholder) -->
  440. <div id="u12779" class="ax_default placeholder transition">
  441. <svg data="images/房屋住户/u12779.svg" id="u12779_img" class="img generatedImage">
  442. <defs>
  443. <pattern id="u12779_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  444. <mask fill="white" id="u12779_img_cl3514">
  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(#u12779_img_cl3514)" />
  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="u12779_text" class="text " style="display:none; visibility: hidden">
  455. <p></p>
  456. </div>
  457. </div>
  458. <!-- Unnamed (Rectangle) -->
  459. <div id="u12780" class="ax_default label transition">
  460. <div id="u12780_div" class=""></div>
  461. <div id="u12780_text" class="text ">
  462. <p><span>进入运营后台</span></p>
  463. </div>
  464. </div>
  465. <!-- Unnamed (Vertical line) -->
  466. <div id="u12781" class="ax_default line1 transition">
  467. <svg data="images/pc网页端/u45.svg" id="u12781_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="u12781_text" class="text " style="display:none; visibility: hidden">
  473. <p></p>
  474. </div>
  475. </div>
  476. </div>
  477. <!-- Unnamed (Group) -->
  478. <div id="u12782" class="ax_default" data-left="20" data-top="1081" data-width="61" data-height="22" layer-opacity="1">
  479. <!-- Unnamed (Rectangle) -->
  480. <div id="u12783" class="ax_default label transition">
  481. <div id="u12783_div" class=""></div>
  482. <div id="u12783_text" class="text ">
  483. <p><span>应用</span></p>
  484. </div>
  485. </div>
  486. <!-- Unnamed (Placeholder) -->
  487. <div id="u12784" class="ax_default placeholder transition">
  488. <svg data="images/房屋住户/u12784.svg" id="u12784_img" class="img generatedImage">
  489. <defs>
  490. <pattern id="u12784_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  491. <mask fill="white" id="u12784_img_cl3515">
  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(#u12784_img_cl3515)" />
  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="u12784_text" class="text " style="display:none; visibility: hidden">
  502. <p></p>
  503. </div>
  504. </div>
  505. </div>
  506. <!-- Unnamed (Line) -->
  507. <div id="u12785" class="ax_default line1 transition">
  508. <svg data="images/pc网页端/u49.svg" id="u12785_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="u12785_text" class="text " style="display:none; visibility: hidden">
  514. <p></p>
  515. </div>
  516. </div>
  517. <!-- Unnamed (Line) -->
  518. <div id="u12786" class="ax_default line1 transition">
  519. <svg data="images/pc网页端/u49.svg" id="u12786_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="u12786_text" class="text " style="display:none; visibility: hidden">
  525. <p></p>
  526. </div>
  527. </div>
  528. <!-- Unnamed (Line) -->
  529. <div id="u12787" class="ax_default line1 transition">
  530. <svg data="images/pc网页端/u51.svg" id="u12787_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="u12787_text" class="text " style="display:none; visibility: hidden">
  536. <p></p>
  537. </div>
  538. </div>
  539. <!-- Unnamed (Group) -->
  540. <div id="u12788" class="ax_default" data-left="20" data-top="71" data-width="56" data-height="22" layer-opacity="1">
  541. <!-- Unnamed (Rectangle) -->
  542. <div id="u12789" class="ax_default label transition">
  543. <div id="u12789_div" class=""></div>
  544. <div id="u12789_text" class="text ">
  545. <p><span>主页</span></p>
  546. </div>
  547. </div>
  548. <!-- Unnamed (Shape) -->
  549. <div id="u12790" class="ax_default icon transition">
  550. <svg data="images/pc网页端/u54.svg" id="u12790_img" class="img generatedImage">
  551. <defs>
  552. <pattern id="u12790_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  553. <mask fill="white" id="u12790_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(#u12790_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(#u12790_img_cl2553)" />
  561. </g>
  562. </svg>
  563. <div id="u12790_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="u12791" class="ax_default box_2 transition">
  571. <div id="u12791_div" class=""></div>
  572. <div id="u12791_text" class="text " style="display:none; visibility: hidden">
  573. <p></p>
  574. </div>
  575. </div>
  576. <!-- Unnamed (Table) -->
  577. <div id="u12792" class="ax_default">
  578. <!-- Unnamed (Table cell) -->
  579. <div id="u12793" class="ax_default table_cell1 transition">
  580. <svg data="images/房屋住户/u12793.svg" id="u12793_img" class="img generatedImage" viewbox="0 0 91 34">
  581. <path d="M 1 1 L 91 1 L 91 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" class="fill" />
  582. <path d="M 0.5 1 L 0.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" class="stroke" />
  583. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" class="stroke" />
  584. </svg>
  585. <div id="u12793_text" class="text ">
  586. <p><span>房屋</span></p>
  587. </div>
  588. </div>
  589. <!-- Unnamed (Table cell) -->
  590. <div id="u12794" class="ax_default table_cell1 transition">
  591. <svg data="images/房屋住户/u12794.svg" id="u12794_img" class="img generatedImage" viewbox="91 0 91 34">
  592. <path d="M 1 1 L 91 1 L 91 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 91 0 )" class="fill" />
  593. <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 91 0 )" class="stroke" />
  594. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 91 0 )" class="stroke" />
  595. </svg>
  596. <div id="u12794_text" class="text ">
  597. <p><span>资源编号</span></p>
  598. </div>
  599. </div>
  600. <!-- Unnamed (Table cell) -->
  601. <div id="u12795" class="ax_default table_cell1 transition">
  602. <svg data="images/房屋住户/u12795.svg" id="u12795_img" class="img generatedImage" viewbox="182 0 76 34">
  603. <path d="M 1 1 L 76 1 L 76 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 182 0 )" class="fill" />
  604. <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 182 0 )" class="stroke" />
  605. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 182 0 )" class="stroke" />
  606. </svg>
  607. <div id="u12795_text" class="text ">
  608. <p><span>人员编号</span></p>
  609. </div>
  610. </div>
  611. <!-- Unnamed (Table cell) -->
  612. <div id="u12796" class="ax_default table_cell1 transition">
  613. <svg data="images/房屋住户/u12796.svg" id="u12796_img" class="img generatedImage" viewbox="258 0 92 34">
  614. <path d="M 1 1 L 92 1 L 92 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 258 0 )" class="fill" />
  615. <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 258 0 )" class="stroke" />
  616. <path d="M 0 0.5 L 92 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 258 0 )" class="stroke" />
  617. </svg>
  618. <div id="u12796_text" class="text ">
  619. <p><span>姓名</span></p>
  620. </div>
  621. </div>
  622. <!-- Unnamed (Table cell) -->
  623. <div id="u12797" class="ax_default table_cell1 transition">
  624. <svg data="images/房屋住户/u12797.svg" id="u12797_img" class="img generatedImage" viewbox="350 0 88 34">
  625. <path d="M 1 1 L 88 1 L 88 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 350 0 )" class="fill" />
  626. <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 350 0 )" class="stroke" />
  627. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 350 0 )" class="stroke" />
  628. </svg>
  629. <div id="u12797_text" class="text ">
  630. <p><span>人员身份</span></p>
  631. </div>
  632. </div>
  633. <!-- Unnamed (Table cell) -->
  634. <div id="u12798" class="ax_default table_cell1 transition">
  635. <svg data="images/房屋住户/u12798.svg" id="u12798_img" class="img generatedImage" viewbox="438 0 88 34">
  636. <path d="M 1 1 L 88 1 L 88 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 438 0 )" class="fill" />
  637. <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 438 0 )" class="stroke" />
  638. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 438 0 )" class="stroke" />
  639. </svg>
  640. <div id="u12798_text" class="text ">
  641. <p><span>性别</span></p>
  642. </div>
  643. </div>
  644. <!-- Unnamed (Table cell) -->
  645. <div id="u12799" class="ax_default table_cell1 transition">
  646. <svg data="images/房屋住户/u12799.svg" id="u12799_img" class="img generatedImage" viewbox="526 0 92 34">
  647. <path d="M 1 1 L 92 1 L 92 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 526 0 )" class="fill" />
  648. <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 526 0 )" class="stroke" />
  649. <path d="M 0 0.5 L 92 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 526 0 )" class="stroke" />
  650. </svg>
  651. <div id="u12799_text" class="text ">
  652. <p><span>手机号码</span></p>
  653. </div>
  654. </div>
  655. <!-- Unnamed (Table cell) -->
  656. <div id="u12800" class="ax_default table_cell1 transition">
  657. <svg data="images/房屋住户/u12800.svg" id="u12800_img" class="img generatedImage" viewbox="618 0 88 34">
  658. <path d="M 1 1 L 88 1 L 88 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 618 0 )" class="fill" />
  659. <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 618 0 )" class="stroke" />
  660. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 618 0 )" class="stroke" />
  661. </svg>
  662. <div id="u12800_text" class="text ">
  663. <p><span>证件类型</span></p>
  664. </div>
  665. </div>
  666. <!-- Unnamed (Table cell) -->
  667. <div id="u12801" class="ax_default table_cell1 transition">
  668. <svg data="images/房屋住户/u12801.svg" id="u12801_img" class="img generatedImage" viewbox="706 0 88 34">
  669. <path d="M 1 1 L 88 1 L 88 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 706 0 )" class="fill" />
  670. <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 706 0 )" class="stroke" />
  671. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 706 0 )" class="stroke" />
  672. </svg>
  673. <div id="u12801_text" class="text ">
  674. <p><span>证件号码</span></p>
  675. </div>
  676. </div>
  677. <!-- Unnamed (Table cell) -->
  678. <div id="u12802" class="ax_default table_cell1 transition">
  679. <svg data="images/房屋住户/u12802.svg" id="u12802_img" class="img generatedImage" viewbox="794 0 88 34">
  680. <path d="M 1 1 L 88 1 L 88 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 794 0 )" class="fill" />
  681. <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 794 0 )" class="stroke" />
  682. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 794 0 )" class="stroke" />
  683. </svg>
  684. <div id="u12802_text" class="text ">
  685. <p><span>人员标签</span></p>
  686. </div>
  687. </div>
  688. <!-- Unnamed (Table cell) -->
  689. <div id="u12803" class="ax_default table_cell1 transition">
  690. <svg data="images/房屋住户/u12803.svg" id="u12803_img" class="img generatedImage" viewbox="882 0 126 34">
  691. <path d="M 1 1 L 125 1 L 125 34 L 1 34 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 882 0 )" class="fill" />
  692. <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 882 0 )" class="stroke" />
  693. <path d="M 0 0.5 L 126 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 882 0 )" class="stroke" />
  694. <path d="M 125.5 1 L 125.5 34 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 882 0 )" class="stroke" />
  695. </svg>
  696. <div id="u12803_text" class="text ">
  697. <p><span>操作</span></p>
  698. </div>
  699. </div>
  700. <!-- Unnamed (Table cell) -->
  701. <div id="u12804" class="ax_default table_cell1 transition">
  702. <svg data="images/房屋住户/u12804.svg" id="u12804_img" class="img generatedImage" viewbox="0 34 91 44">
  703. <path d="M 1 1 L 91 1 L 91 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 34 )" class="fill" />
  704. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 34 )" class="stroke" />
  705. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 34 )" class="stroke" />
  706. </svg>
  707. <div id="u12804_text" class="text " style="display:none; visibility: hidden">
  708. <p></p>
  709. </div>
  710. </div>
  711. <!-- Unnamed (Table cell) -->
  712. <div id="u12805" class="ax_default table_cell1 transition">
  713. <svg data="images/房屋住户/u12805.svg" id="u12805_img" class="img generatedImage" viewbox="91 34 91 44">
  714. <path d="M 1 1 L 91 1 L 91 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 91 34 )" class="fill" />
  715. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 91 34 )" class="stroke" />
  716. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 91 34 )" class="stroke" />
  717. </svg>
  718. <div id="u12805_text" class="text " style="display:none; visibility: hidden">
  719. <p></p>
  720. </div>
  721. </div>
  722. <!-- Unnamed (Table cell) -->
  723. <div id="u12806" class="ax_default table_cell1 transition">
  724. <svg data="images/房屋住户/u12806.svg" id="u12806_img" class="img generatedImage" viewbox="182 34 76 44">
  725. <path d="M 1 1 L 76 1 L 76 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 182 34 )" class="fill" />
  726. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 182 34 )" class="stroke" />
  727. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 182 34 )" class="stroke" />
  728. </svg>
  729. <div id="u12806_text" class="text " style="display:none; visibility: hidden">
  730. <p></p>
  731. </div>
  732. </div>
  733. <!-- Unnamed (Table cell) -->
  734. <div id="u12807" class="ax_default table_cell1 transition">
  735. <svg data="images/房屋住户/u12807.svg" id="u12807_img" class="img generatedImage" viewbox="258 34 92 44">
  736. <path d="M 1 1 L 92 1 L 92 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 258 34 )" class="fill" />
  737. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 258 34 )" class="stroke" />
  738. <path d="M 0 0.5 L 92 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 258 34 )" class="stroke" />
  739. </svg>
  740. <div id="u12807_text" class="text " style="display:none; visibility: hidden">
  741. <p></p>
  742. </div>
  743. </div>
  744. <!-- Unnamed (Table cell) -->
  745. <div id="u12808" class="ax_default table_cell1 transition">
  746. <svg data="images/房屋住户/u12808.svg" id="u12808_img" class="img generatedImage" viewbox="350 34 88 44">
  747. <path d="M 1 1 L 88 1 L 88 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 350 34 )" class="fill" />
  748. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 350 34 )" class="stroke" />
  749. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 350 34 )" class="stroke" />
  750. </svg>
  751. <div id="u12808_text" class="text ">
  752. <p><span>业主</span></p>
  753. </div>
  754. </div>
  755. <!-- Unnamed (Table cell) -->
  756. <div id="u12809" class="ax_default table_cell1 transition">
  757. <svg data="images/房屋住户/u12809.svg" id="u12809_img" class="img generatedImage" viewbox="438 34 88 44">
  758. <path d="M 1 1 L 88 1 L 88 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 438 34 )" class="fill" />
  759. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 438 34 )" class="stroke" />
  760. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 438 34 )" class="stroke" />
  761. </svg>
  762. <div id="u12809_text" class="text " style="display:none; visibility: hidden">
  763. <p></p>
  764. </div>
  765. </div>
  766. <!-- Unnamed (Table cell) -->
  767. <div id="u12810" class="ax_default table_cell1 transition">
  768. <svg data="images/房屋住户/u12810.svg" id="u12810_img" class="img generatedImage" viewbox="526 34 92 44">
  769. <path d="M 1 1 L 92 1 L 92 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 526 34 )" class="fill" />
  770. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 526 34 )" class="stroke" />
  771. <path d="M 0 0.5 L 92 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 526 34 )" class="stroke" />
  772. </svg>
  773. <div id="u12810_text" class="text " style="display:none; visibility: hidden">
  774. <p></p>
  775. </div>
  776. </div>
  777. <!-- Unnamed (Table cell) -->
  778. <div id="u12811" class="ax_default table_cell1 transition">
  779. <svg data="images/房屋住户/u12811.svg" id="u12811_img" class="img generatedImage" viewbox="618 34 88 44">
  780. <path d="M 1 1 L 88 1 L 88 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 618 34 )" class="fill" />
  781. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 618 34 )" class="stroke" />
  782. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 618 34 )" class="stroke" />
  783. </svg>
  784. <div id="u12811_text" class="text " style="display:none; visibility: hidden">
  785. <p></p>
  786. </div>
  787. </div>
  788. <!-- Unnamed (Table cell) -->
  789. <div id="u12812" class="ax_default table_cell1 transition">
  790. <svg data="images/房屋住户/u12812.svg" id="u12812_img" class="img generatedImage" viewbox="706 34 88 44">
  791. <path d="M 1 1 L 88 1 L 88 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 706 34 )" class="fill" />
  792. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 706 34 )" class="stroke" />
  793. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 706 34 )" class="stroke" />
  794. </svg>
  795. <div id="u12812_text" class="text " style="display:none; visibility: hidden">
  796. <p></p>
  797. </div>
  798. </div>
  799. <!-- Unnamed (Table cell) -->
  800. <div id="u12813" class="ax_default table_cell1 transition">
  801. <svg data="images/房屋住户/u12813.svg" id="u12813_img" class="img generatedImage" viewbox="794 34 88 44">
  802. <path d="M 1 1 L 88 1 L 88 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 794 34 )" class="fill" />
  803. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 794 34 )" class="stroke" />
  804. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 794 34 )" class="stroke" />
  805. </svg>
  806. <div id="u12813_text" class="text " style="display:none; visibility: hidden">
  807. <p></p>
  808. </div>
  809. </div>
  810. <!-- Unnamed (Table cell) -->
  811. <div id="u12814" class="ax_default table_cell1 transition">
  812. <svg data="images/房屋住户/u12814.svg" id="u12814_img" class="img generatedImage" viewbox="882 34 126 44">
  813. <path d="M 1 1 L 125 1 L 125 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 882 34 )" class="fill" />
  814. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 882 34 )" class="stroke" />
  815. <path d="M 0 0.5 L 126 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 882 34 )" class="stroke" />
  816. <path d="M 125.5 1 L 125.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 882 34 )" class="stroke" />
  817. </svg>
  818. <div id="u12814_text" class="text ">
  819. <p><span style="color:#298FFF;">授权&nbsp; </span><span style="color:#D7D7D7;">更多</span></p>
  820. </div>
  821. </div>
  822. <!-- Unnamed (Table cell) -->
  823. <div id="u12815" class="ax_default table_cell1 transition">
  824. <svg data="images/房屋住户/u12815.svg" id="u12815_img" class="img generatedImage" viewbox="0 78 91 44">
  825. <path d="M 1 1 L 91 1 L 91 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 78 )" class="fill" />
  826. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 78 )" class="stroke" />
  827. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 78 )" class="stroke" />
  828. </svg>
  829. <div id="u12815_text" class="text " style="display:none; visibility: hidden">
  830. <p></p>
  831. </div>
  832. </div>
  833. <!-- Unnamed (Table cell) -->
  834. <div id="u12816" class="ax_default table_cell1 transition">
  835. <svg data="images/房屋住户/u12816.svg" id="u12816_img" class="img generatedImage" viewbox="91 78 91 44">
  836. <path d="M 1 1 L 91 1 L 91 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 91 78 )" class="fill" />
  837. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 91 78 )" class="stroke" />
  838. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 91 78 )" class="stroke" />
  839. </svg>
  840. <div id="u12816_text" class="text " style="display:none; visibility: hidden">
  841. <p></p>
  842. </div>
  843. </div>
  844. <!-- Unnamed (Table cell) -->
  845. <div id="u12817" class="ax_default table_cell1 transition">
  846. <svg data="images/房屋住户/u12817.svg" id="u12817_img" class="img generatedImage" viewbox="182 78 76 44">
  847. <path d="M 1 1 L 76 1 L 76 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 182 78 )" class="fill" />
  848. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 182 78 )" class="stroke" />
  849. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 182 78 )" class="stroke" />
  850. </svg>
  851. <div id="u12817_text" class="text " style="display:none; visibility: hidden">
  852. <p></p>
  853. </div>
  854. </div>
  855. <!-- Unnamed (Table cell) -->
  856. <div id="u12818" class="ax_default table_cell1 transition">
  857. <svg data="images/房屋住户/u12818.svg" id="u12818_img" class="img generatedImage" viewbox="258 78 92 44">
  858. <path d="M 1 1 L 92 1 L 92 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 258 78 )" class="fill" />
  859. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 258 78 )" class="stroke" />
  860. <path d="M 0 0.5 L 92 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 258 78 )" class="stroke" />
  861. </svg>
  862. <div id="u12818_text" class="text " style="display:none; visibility: hidden">
  863. <p></p>
  864. </div>
  865. </div>
  866. <!-- Unnamed (Table cell) -->
  867. <div id="u12819" class="ax_default table_cell1 transition">
  868. <svg data="images/房屋住户/u12819.svg" id="u12819_img" class="img generatedImage" viewbox="350 78 88 44">
  869. <path d="M 1 1 L 88 1 L 88 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 350 78 )" class="fill" />
  870. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 350 78 )" class="stroke" />
  871. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 350 78 )" class="stroke" />
  872. </svg>
  873. <div id="u12819_text" class="text ">
  874. <p><span>家属</span></p>
  875. </div>
  876. </div>
  877. <!-- Unnamed (Table cell) -->
  878. <div id="u12820" class="ax_default table_cell1 transition">
  879. <svg data="images/房屋住户/u12820.svg" id="u12820_img" class="img generatedImage" viewbox="438 78 88 44">
  880. <path d="M 1 1 L 88 1 L 88 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 438 78 )" class="fill" />
  881. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 438 78 )" class="stroke" />
  882. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 438 78 )" class="stroke" />
  883. </svg>
  884. <div id="u12820_text" class="text " style="display:none; visibility: hidden">
  885. <p></p>
  886. </div>
  887. </div>
  888. <!-- Unnamed (Table cell) -->
  889. <div id="u12821" class="ax_default table_cell1 transition">
  890. <svg data="images/房屋住户/u12821.svg" id="u12821_img" class="img generatedImage" viewbox="526 78 92 44">
  891. <path d="M 1 1 L 92 1 L 92 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 526 78 )" class="fill" />
  892. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 526 78 )" class="stroke" />
  893. <path d="M 0 0.5 L 92 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 526 78 )" class="stroke" />
  894. </svg>
  895. <div id="u12821_text" class="text " style="display:none; visibility: hidden">
  896. <p></p>
  897. </div>
  898. </div>
  899. <!-- Unnamed (Table cell) -->
  900. <div id="u12822" class="ax_default table_cell1 transition">
  901. <svg data="images/房屋住户/u12822.svg" id="u12822_img" class="img generatedImage" viewbox="618 78 88 44">
  902. <path d="M 1 1 L 88 1 L 88 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 618 78 )" class="fill" />
  903. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 618 78 )" class="stroke" />
  904. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 618 78 )" class="stroke" />
  905. </svg>
  906. <div id="u12822_text" class="text " style="display:none; visibility: hidden">
  907. <p></p>
  908. </div>
  909. </div>
  910. <!-- Unnamed (Table cell) -->
  911. <div id="u12823" class="ax_default table_cell1 transition">
  912. <svg data="images/房屋住户/u12823.svg" id="u12823_img" class="img generatedImage" viewbox="706 78 88 44">
  913. <path d="M 1 1 L 88 1 L 88 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 706 78 )" class="fill" />
  914. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 706 78 )" class="stroke" />
  915. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 706 78 )" class="stroke" />
  916. </svg>
  917. <div id="u12823_text" class="text " style="display:none; visibility: hidden">
  918. <p></p>
  919. </div>
  920. </div>
  921. <!-- Unnamed (Table cell) -->
  922. <div id="u12824" class="ax_default table_cell1 transition">
  923. <svg data="images/房屋住户/u12824.svg" id="u12824_img" class="img generatedImage" viewbox="794 78 88 44">
  924. <path d="M 1 1 L 88 1 L 88 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 794 78 )" class="fill" />
  925. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 794 78 )" class="stroke" />
  926. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 794 78 )" class="stroke" />
  927. </svg>
  928. <div id="u12824_text" class="text " style="display:none; visibility: hidden">
  929. <p></p>
  930. </div>
  931. </div>
  932. <!-- Unnamed (Table cell) -->
  933. <div id="u12825" class="ax_default table_cell1 transition">
  934. <svg data="images/房屋住户/u12825.svg" id="u12825_img" class="img generatedImage" viewbox="882 78 126 44">
  935. <path d="M 1 1 L 125 1 L 125 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 882 78 )" class="fill" />
  936. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 882 78 )" class="stroke" />
  937. <path d="M 0 0.5 L 126 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 882 78 )" class="stroke" />
  938. <path d="M 125.5 1 L 125.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 882 78 )" class="stroke" />
  939. </svg>
  940. <div id="u12825_text" class="text ">
  941. <p><span>授权&nbsp; 更多</span></p>
  942. </div>
  943. </div>
  944. <!-- Unnamed (Table cell) -->
  945. <div id="u12826" class="ax_default table_cell1 transition">
  946. <svg data="images/房屋住户/u12826.svg" id="u12826_img" class="img generatedImage" viewbox="0 122 91 44">
  947. <path d="M 1 1 L 91 1 L 91 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 122 )" class="fill" />
  948. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 122 )" class="stroke" />
  949. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 122 )" class="stroke" />
  950. </svg>
  951. <div id="u12826_text" class="text " style="display:none; visibility: hidden">
  952. <p></p>
  953. </div>
  954. </div>
  955. <!-- Unnamed (Table cell) -->
  956. <div id="u12827" class="ax_default table_cell1 transition">
  957. <svg data="images/房屋住户/u12827.svg" id="u12827_img" class="img generatedImage" viewbox="91 122 91 44">
  958. <path d="M 1 1 L 91 1 L 91 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 91 122 )" class="fill" />
  959. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 91 122 )" class="stroke" />
  960. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 91 122 )" class="stroke" />
  961. </svg>
  962. <div id="u12827_text" class="text " style="display:none; visibility: hidden">
  963. <p></p>
  964. </div>
  965. </div>
  966. <!-- Unnamed (Table cell) -->
  967. <div id="u12828" class="ax_default table_cell1 transition">
  968. <svg data="images/房屋住户/u12828.svg" id="u12828_img" class="img generatedImage" viewbox="182 122 76 44">
  969. <path d="M 1 1 L 76 1 L 76 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 182 122 )" class="fill" />
  970. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 182 122 )" class="stroke" />
  971. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 182 122 )" class="stroke" />
  972. </svg>
  973. <div id="u12828_text" class="text " style="display:none; visibility: hidden">
  974. <p></p>
  975. </div>
  976. </div>
  977. <!-- Unnamed (Table cell) -->
  978. <div id="u12829" class="ax_default table_cell1 transition">
  979. <svg data="images/房屋住户/u12829.svg" id="u12829_img" class="img generatedImage" viewbox="258 122 92 44">
  980. <path d="M 1 1 L 92 1 L 92 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 258 122 )" class="fill" />
  981. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 258 122 )" class="stroke" />
  982. <path d="M 0 0.5 L 92 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 258 122 )" class="stroke" />
  983. </svg>
  984. <div id="u12829_text" class="text " style="display:none; visibility: hidden">
  985. <p></p>
  986. </div>
  987. </div>
  988. <!-- Unnamed (Table cell) -->
  989. <div id="u12830" class="ax_default table_cell1 transition">
  990. <svg data="images/房屋住户/u12830.svg" id="u12830_img" class="img generatedImage" viewbox="350 122 88 44">
  991. <path d="M 1 1 L 88 1 L 88 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 350 122 )" class="fill" />
  992. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 350 122 )" class="stroke" />
  993. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 350 122 )" class="stroke" />
  994. </svg>
  995. <div id="u12830_text" class="text ">
  996. <p><span>租客</span></p>
  997. </div>
  998. </div>
  999. <!-- Unnamed (Table cell) -->
  1000. <div id="u12831" class="ax_default table_cell1 transition">
  1001. <svg data="images/房屋住户/u12831.svg" id="u12831_img" class="img generatedImage" viewbox="438 122 88 44">
  1002. <path d="M 1 1 L 88 1 L 88 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 438 122 )" class="fill" />
  1003. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 438 122 )" class="stroke" />
  1004. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 438 122 )" class="stroke" />
  1005. </svg>
  1006. <div id="u12831_text" class="text " style="display:none; visibility: hidden">
  1007. <p></p>
  1008. </div>
  1009. </div>
  1010. <!-- Unnamed (Table cell) -->
  1011. <div id="u12832" class="ax_default table_cell1 transition">
  1012. <svg data="images/房屋住户/u12832.svg" id="u12832_img" class="img generatedImage" viewbox="526 122 92 44">
  1013. <path d="M 1 1 L 92 1 L 92 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 526 122 )" class="fill" />
  1014. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 526 122 )" class="stroke" />
  1015. <path d="M 0 0.5 L 92 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 526 122 )" class="stroke" />
  1016. </svg>
  1017. <div id="u12832_text" class="text " style="display:none; visibility: hidden">
  1018. <p></p>
  1019. </div>
  1020. </div>
  1021. <!-- Unnamed (Table cell) -->
  1022. <div id="u12833" class="ax_default table_cell1 transition">
  1023. <svg data="images/房屋住户/u12833.svg" id="u12833_img" class="img generatedImage" viewbox="618 122 88 44">
  1024. <path d="M 1 1 L 88 1 L 88 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 618 122 )" class="fill" />
  1025. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 618 122 )" class="stroke" />
  1026. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 618 122 )" class="stroke" />
  1027. </svg>
  1028. <div id="u12833_text" class="text " style="display:none; visibility: hidden">
  1029. <p></p>
  1030. </div>
  1031. </div>
  1032. <!-- Unnamed (Table cell) -->
  1033. <div id="u12834" class="ax_default table_cell1 transition">
  1034. <svg data="images/房屋住户/u12834.svg" id="u12834_img" class="img generatedImage" viewbox="706 122 88 44">
  1035. <path d="M 1 1 L 88 1 L 88 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 706 122 )" class="fill" />
  1036. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 706 122 )" class="stroke" />
  1037. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 706 122 )" class="stroke" />
  1038. </svg>
  1039. <div id="u12834_text" class="text " style="display:none; visibility: hidden">
  1040. <p></p>
  1041. </div>
  1042. </div>
  1043. <!-- Unnamed (Table cell) -->
  1044. <div id="u12835" class="ax_default table_cell1 transition">
  1045. <svg data="images/房屋住户/u12835.svg" id="u12835_img" class="img generatedImage" viewbox="794 122 88 44">
  1046. <path d="M 1 1 L 88 1 L 88 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 794 122 )" class="fill" />
  1047. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 794 122 )" class="stroke" />
  1048. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 794 122 )" class="stroke" />
  1049. </svg>
  1050. <div id="u12835_text" class="text " style="display:none; visibility: hidden">
  1051. <p></p>
  1052. </div>
  1053. </div>
  1054. <!-- Unnamed (Table cell) -->
  1055. <div id="u12836" class="ax_default table_cell1 transition">
  1056. <svg data="images/房屋住户/u12836.svg" id="u12836_img" class="img generatedImage" viewbox="882 122 126 44">
  1057. <path d="M 1 1 L 125 1 L 125 44 L 1 44 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 882 122 )" class="fill" />
  1058. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 882 122 )" class="stroke" />
  1059. <path d="M 0 0.5 L 126 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 882 122 )" class="stroke" />
  1060. <path d="M 125.5 1 L 125.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 882 122 )" class="stroke" />
  1061. </svg>
  1062. <div id="u12836_text" class="text " style="display:none; visibility: hidden">
  1063. <p></p>
  1064. </div>
  1065. </div>
  1066. <!-- Unnamed (Table cell) -->
  1067. <div id="u12837" class="ax_default table_cell1 transition">
  1068. <svg data="images/房屋住户/u12837.svg" id="u12837_img" class="img generatedImage" viewbox="0 166 91 38">
  1069. <path d="M 1 1 L 91 1 L 91 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 166 )" class="fill" />
  1070. <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 166 )" class="stroke" />
  1071. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 166 )" class="stroke" />
  1072. </svg>
  1073. <div id="u12837_text" class="text " style="display:none; visibility: hidden">
  1074. <p></p>
  1075. </div>
  1076. </div>
  1077. <!-- Unnamed (Table cell) -->
  1078. <div id="u12838" class="ax_default table_cell1 transition">
  1079. <svg data="images/房屋住户/u12838.svg" id="u12838_img" class="img generatedImage" viewbox="91 166 91 38">
  1080. <path d="M 1 1 L 91 1 L 91 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 91 166 )" class="fill" />
  1081. <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 91 166 )" class="stroke" />
  1082. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 91 166 )" class="stroke" />
  1083. </svg>
  1084. <div id="u12838_text" class="text " style="display:none; visibility: hidden">
  1085. <p></p>
  1086. </div>
  1087. </div>
  1088. <!-- Unnamed (Table cell) -->
  1089. <div id="u12839" class="ax_default table_cell1 transition">
  1090. <svg data="images/房屋住户/u12839.svg" id="u12839_img" class="img generatedImage" viewbox="182 166 76 38">
  1091. <path d="M 1 1 L 76 1 L 76 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 182 166 )" class="fill" />
  1092. <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 182 166 )" class="stroke" />
  1093. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 182 166 )" class="stroke" />
  1094. </svg>
  1095. <div id="u12839_text" class="text " style="display:none; visibility: hidden">
  1096. <p></p>
  1097. </div>
  1098. </div>
  1099. <!-- Unnamed (Table cell) -->
  1100. <div id="u12840" class="ax_default table_cell1 transition">
  1101. <svg data="images/房屋住户/u12840.svg" id="u12840_img" class="img generatedImage" viewbox="258 166 92 38">
  1102. <path d="M 1 1 L 92 1 L 92 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 258 166 )" class="fill" />
  1103. <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 258 166 )" class="stroke" />
  1104. <path d="M 0 0.5 L 92 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 258 166 )" class="stroke" />
  1105. </svg>
  1106. <div id="u12840_text" class="text " style="display:none; visibility: hidden">
  1107. <p></p>
  1108. </div>
  1109. </div>
  1110. <!-- Unnamed (Table cell) -->
  1111. <div id="u12841" class="ax_default table_cell1 transition">
  1112. <svg data="images/房屋住户/u12841.svg" id="u12841_img" class="img generatedImage" viewbox="350 166 88 38">
  1113. <path d="M 1 1 L 88 1 L 88 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 350 166 )" class="fill" />
  1114. <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 350 166 )" class="stroke" />
  1115. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 350 166 )" class="stroke" />
  1116. </svg>
  1117. <div id="u12841_text" class="text " style="display:none; visibility: hidden">
  1118. <p></p>
  1119. </div>
  1120. </div>
  1121. <!-- Unnamed (Table cell) -->
  1122. <div id="u12842" class="ax_default table_cell1 transition">
  1123. <svg data="images/房屋住户/u12842.svg" id="u12842_img" class="img generatedImage" viewbox="438 166 88 38">
  1124. <path d="M 1 1 L 88 1 L 88 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 438 166 )" class="fill" />
  1125. <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 438 166 )" class="stroke" />
  1126. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 438 166 )" class="stroke" />
  1127. </svg>
  1128. <div id="u12842_text" class="text " style="display:none; visibility: hidden">
  1129. <p></p>
  1130. </div>
  1131. </div>
  1132. <!-- Unnamed (Table cell) -->
  1133. <div id="u12843" class="ax_default table_cell1 transition">
  1134. <svg data="images/房屋住户/u12843.svg" id="u12843_img" class="img generatedImage" viewbox="526 166 92 38">
  1135. <path d="M 1 1 L 92 1 L 92 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 526 166 )" class="fill" />
  1136. <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 526 166 )" class="stroke" />
  1137. <path d="M 0 0.5 L 92 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 526 166 )" class="stroke" />
  1138. </svg>
  1139. <div id="u12843_text" class="text " style="display:none; visibility: hidden">
  1140. <p></p>
  1141. </div>
  1142. </div>
  1143. <!-- Unnamed (Table cell) -->
  1144. <div id="u12844" class="ax_default table_cell1 transition">
  1145. <svg data="images/房屋住户/u12844.svg" id="u12844_img" class="img generatedImage" viewbox="618 166 88 38">
  1146. <path d="M 1 1 L 88 1 L 88 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 618 166 )" class="fill" />
  1147. <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 618 166 )" class="stroke" />
  1148. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 618 166 )" class="stroke" />
  1149. </svg>
  1150. <div id="u12844_text" class="text " style="display:none; visibility: hidden">
  1151. <p></p>
  1152. </div>
  1153. </div>
  1154. <!-- Unnamed (Table cell) -->
  1155. <div id="u12845" class="ax_default table_cell1 transition">
  1156. <svg data="images/房屋住户/u12845.svg" id="u12845_img" class="img generatedImage" viewbox="706 166 88 38">
  1157. <path d="M 1 1 L 88 1 L 88 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 706 166 )" class="fill" />
  1158. <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 706 166 )" class="stroke" />
  1159. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 706 166 )" class="stroke" />
  1160. </svg>
  1161. <div id="u12845_text" class="text " style="display:none; visibility: hidden">
  1162. <p></p>
  1163. </div>
  1164. </div>
  1165. <!-- Unnamed (Table cell) -->
  1166. <div id="u12846" class="ax_default table_cell1 transition">
  1167. <svg data="images/房屋住户/u12846.svg" id="u12846_img" class="img generatedImage" viewbox="794 166 88 38">
  1168. <path d="M 1 1 L 88 1 L 88 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 794 166 )" class="fill" />
  1169. <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 794 166 )" class="stroke" />
  1170. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 794 166 )" class="stroke" />
  1171. </svg>
  1172. <div id="u12846_text" class="text " style="display:none; visibility: hidden">
  1173. <p></p>
  1174. </div>
  1175. </div>
  1176. <!-- Unnamed (Table cell) -->
  1177. <div id="u12847" class="ax_default table_cell1 transition">
  1178. <svg data="images/房屋住户/u12847.svg" id="u12847_img" class="img generatedImage" viewbox="882 166 126 38">
  1179. <path d="M 1 1 L 125 1 L 125 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 882 166 )" class="fill" />
  1180. <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 882 166 )" class="stroke" />
  1181. <path d="M 0 0.5 L 126 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 882 166 )" class="stroke" />
  1182. <path d="M 125.5 1 L 125.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 882 166 )" class="stroke" />
  1183. </svg>
  1184. <div id="u12847_text" class="text " style="display:none; visibility: hidden">
  1185. <p></p>
  1186. </div>
  1187. </div>
  1188. <!-- Unnamed (Table cell) -->
  1189. <div id="u12848" class="ax_default table_cell1 transition">
  1190. <svg data="images/房屋住户/u12848.svg" id="u12848_img" class="img generatedImage" viewbox="0 204 91 38">
  1191. <path d="M 1 1 L 91 1 L 91 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 204 )" class="fill" />
  1192. <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 204 )" class="stroke" />
  1193. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 204 )" class="stroke" />
  1194. </svg>
  1195. <div id="u12848_text" class="text " style="display:none; visibility: hidden">
  1196. <p></p>
  1197. </div>
  1198. </div>
  1199. <!-- Unnamed (Table cell) -->
  1200. <div id="u12849" class="ax_default table_cell1 transition">
  1201. <svg data="images/房屋住户/u12849.svg" id="u12849_img" class="img generatedImage" viewbox="91 204 91 38">
  1202. <path d="M 1 1 L 91 1 L 91 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 91 204 )" class="fill" />
  1203. <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 91 204 )" class="stroke" />
  1204. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 91 204 )" class="stroke" />
  1205. </svg>
  1206. <div id="u12849_text" class="text " style="display:none; visibility: hidden">
  1207. <p></p>
  1208. </div>
  1209. </div>
  1210. <!-- Unnamed (Table cell) -->
  1211. <div id="u12850" class="ax_default table_cell1 transition">
  1212. <svg data="images/房屋住户/u12850.svg" id="u12850_img" class="img generatedImage" viewbox="182 204 76 38">
  1213. <path d="M 1 1 L 76 1 L 76 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 182 204 )" class="fill" />
  1214. <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 182 204 )" class="stroke" />
  1215. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 182 204 )" class="stroke" />
  1216. </svg>
  1217. <div id="u12850_text" class="text " style="display:none; visibility: hidden">
  1218. <p></p>
  1219. </div>
  1220. </div>
  1221. <!-- Unnamed (Table cell) -->
  1222. <div id="u12851" class="ax_default table_cell1 transition">
  1223. <svg data="images/房屋住户/u12851.svg" id="u12851_img" class="img generatedImage" viewbox="258 204 92 38">
  1224. <path d="M 1 1 L 92 1 L 92 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 258 204 )" class="fill" />
  1225. <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 258 204 )" class="stroke" />
  1226. <path d="M 0 0.5 L 92 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 258 204 )" class="stroke" />
  1227. </svg>
  1228. <div id="u12851_text" class="text " style="display:none; visibility: hidden">
  1229. <p></p>
  1230. </div>
  1231. </div>
  1232. <!-- Unnamed (Table cell) -->
  1233. <div id="u12852" class="ax_default table_cell1 transition">
  1234. <svg data="images/房屋住户/u12852.svg" id="u12852_img" class="img generatedImage" viewbox="350 204 88 38">
  1235. <path d="M 1 1 L 88 1 L 88 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 350 204 )" class="fill" />
  1236. <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 350 204 )" class="stroke" />
  1237. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 350 204 )" class="stroke" />
  1238. </svg>
  1239. <div id="u12852_text" class="text " style="display:none; visibility: hidden">
  1240. <p></p>
  1241. </div>
  1242. </div>
  1243. <!-- Unnamed (Table cell) -->
  1244. <div id="u12853" class="ax_default table_cell1 transition">
  1245. <svg data="images/房屋住户/u12853.svg" id="u12853_img" class="img generatedImage" viewbox="438 204 88 38">
  1246. <path d="M 1 1 L 88 1 L 88 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 438 204 )" class="fill" />
  1247. <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 438 204 )" class="stroke" />
  1248. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 438 204 )" class="stroke" />
  1249. </svg>
  1250. <div id="u12853_text" class="text " style="display:none; visibility: hidden">
  1251. <p></p>
  1252. </div>
  1253. </div>
  1254. <!-- Unnamed (Table cell) -->
  1255. <div id="u12854" class="ax_default table_cell1 transition">
  1256. <svg data="images/房屋住户/u12854.svg" id="u12854_img" class="img generatedImage" viewbox="526 204 92 38">
  1257. <path d="M 1 1 L 92 1 L 92 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 526 204 )" class="fill" />
  1258. <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 526 204 )" class="stroke" />
  1259. <path d="M 0 0.5 L 92 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 526 204 )" class="stroke" />
  1260. </svg>
  1261. <div id="u12854_text" class="text " style="display:none; visibility: hidden">
  1262. <p></p>
  1263. </div>
  1264. </div>
  1265. <!-- Unnamed (Table cell) -->
  1266. <div id="u12855" class="ax_default table_cell1 transition">
  1267. <svg data="images/房屋住户/u12855.svg" id="u12855_img" class="img generatedImage" viewbox="618 204 88 38">
  1268. <path d="M 1 1 L 88 1 L 88 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 618 204 )" class="fill" />
  1269. <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 618 204 )" class="stroke" />
  1270. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 618 204 )" class="stroke" />
  1271. </svg>
  1272. <div id="u12855_text" class="text " style="display:none; visibility: hidden">
  1273. <p></p>
  1274. </div>
  1275. </div>
  1276. <!-- Unnamed (Table cell) -->
  1277. <div id="u12856" class="ax_default table_cell1 transition">
  1278. <svg data="images/房屋住户/u12856.svg" id="u12856_img" class="img generatedImage" viewbox="706 204 88 38">
  1279. <path d="M 1 1 L 88 1 L 88 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 706 204 )" class="fill" />
  1280. <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 706 204 )" class="stroke" />
  1281. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 706 204 )" class="stroke" />
  1282. </svg>
  1283. <div id="u12856_text" class="text " style="display:none; visibility: hidden">
  1284. <p></p>
  1285. </div>
  1286. </div>
  1287. <!-- Unnamed (Table cell) -->
  1288. <div id="u12857" class="ax_default table_cell1 transition">
  1289. <svg data="images/房屋住户/u12857.svg" id="u12857_img" class="img generatedImage" viewbox="794 204 88 38">
  1290. <path d="M 1 1 L 88 1 L 88 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 794 204 )" class="fill" />
  1291. <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 794 204 )" class="stroke" />
  1292. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 794 204 )" class="stroke" />
  1293. </svg>
  1294. <div id="u12857_text" class="text " style="display:none; visibility: hidden">
  1295. <p></p>
  1296. </div>
  1297. </div>
  1298. <!-- Unnamed (Table cell) -->
  1299. <div id="u12858" class="ax_default table_cell1 transition">
  1300. <svg data="images/房屋住户/u12858.svg" id="u12858_img" class="img generatedImage" viewbox="882 204 126 38">
  1301. <path d="M 1 1 L 125 1 L 125 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 882 204 )" class="fill" />
  1302. <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 882 204 )" class="stroke" />
  1303. <path d="M 0 0.5 L 126 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 882 204 )" class="stroke" />
  1304. <path d="M 125.5 1 L 125.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 882 204 )" class="stroke" />
  1305. </svg>
  1306. <div id="u12858_text" class="text " style="display:none; visibility: hidden">
  1307. <p></p>
  1308. </div>
  1309. </div>
  1310. <!-- Unnamed (Table cell) -->
  1311. <div id="u12859" class="ax_default table_cell1 transition">
  1312. <svg data="images/房屋住户/u12859.svg" id="u12859_img" class="img generatedImage" viewbox="0 242 91 38">
  1313. <path d="M 1 1 L 91 1 L 91 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 242 )" class="fill" />
  1314. <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 242 )" class="stroke" />
  1315. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 242 )" class="stroke" />
  1316. </svg>
  1317. <div id="u12859_text" class="text " style="display:none; visibility: hidden">
  1318. <p></p>
  1319. </div>
  1320. </div>
  1321. <!-- Unnamed (Table cell) -->
  1322. <div id="u12860" class="ax_default table_cell1 transition">
  1323. <svg data="images/房屋住户/u12860.svg" id="u12860_img" class="img generatedImage" viewbox="91 242 91 38">
  1324. <path d="M 1 1 L 91 1 L 91 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 91 242 )" class="fill" />
  1325. <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 91 242 )" class="stroke" />
  1326. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 91 242 )" class="stroke" />
  1327. </svg>
  1328. <div id="u12860_text" class="text " style="display:none; visibility: hidden">
  1329. <p></p>
  1330. </div>
  1331. </div>
  1332. <!-- Unnamed (Table cell) -->
  1333. <div id="u12861" class="ax_default table_cell1 transition">
  1334. <svg data="images/房屋住户/u12861.svg" id="u12861_img" class="img generatedImage" viewbox="182 242 76 38">
  1335. <path d="M 1 1 L 76 1 L 76 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 182 242 )" class="fill" />
  1336. <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 182 242 )" class="stroke" />
  1337. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 182 242 )" class="stroke" />
  1338. </svg>
  1339. <div id="u12861_text" class="text " style="display:none; visibility: hidden">
  1340. <p></p>
  1341. </div>
  1342. </div>
  1343. <!-- Unnamed (Table cell) -->
  1344. <div id="u12862" class="ax_default table_cell1 transition">
  1345. <svg data="images/房屋住户/u12862.svg" id="u12862_img" class="img generatedImage" viewbox="258 242 92 38">
  1346. <path d="M 1 1 L 92 1 L 92 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 258 242 )" class="fill" />
  1347. <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 258 242 )" class="stroke" />
  1348. <path d="M 0 0.5 L 92 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 258 242 )" class="stroke" />
  1349. </svg>
  1350. <div id="u12862_text" class="text " style="display:none; visibility: hidden">
  1351. <p></p>
  1352. </div>
  1353. </div>
  1354. <!-- Unnamed (Table cell) -->
  1355. <div id="u12863" class="ax_default table_cell1 transition">
  1356. <svg data="images/房屋住户/u12863.svg" id="u12863_img" class="img generatedImage" viewbox="350 242 88 38">
  1357. <path d="M 1 1 L 88 1 L 88 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 350 242 )" class="fill" />
  1358. <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 350 242 )" class="stroke" />
  1359. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 350 242 )" class="stroke" />
  1360. </svg>
  1361. <div id="u12863_text" class="text " style="display:none; visibility: hidden">
  1362. <p></p>
  1363. </div>
  1364. </div>
  1365. <!-- Unnamed (Table cell) -->
  1366. <div id="u12864" class="ax_default table_cell1 transition">
  1367. <svg data="images/房屋住户/u12864.svg" id="u12864_img" class="img generatedImage" viewbox="438 242 88 38">
  1368. <path d="M 1 1 L 88 1 L 88 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 438 242 )" class="fill" />
  1369. <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 438 242 )" class="stroke" />
  1370. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 438 242 )" class="stroke" />
  1371. </svg>
  1372. <div id="u12864_text" class="text " style="display:none; visibility: hidden">
  1373. <p></p>
  1374. </div>
  1375. </div>
  1376. <!-- Unnamed (Table cell) -->
  1377. <div id="u12865" class="ax_default table_cell1 transition">
  1378. <svg data="images/房屋住户/u12865.svg" id="u12865_img" class="img generatedImage" viewbox="526 242 92 38">
  1379. <path d="M 1 1 L 92 1 L 92 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 526 242 )" class="fill" />
  1380. <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 526 242 )" class="stroke" />
  1381. <path d="M 0 0.5 L 92 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 526 242 )" class="stroke" />
  1382. </svg>
  1383. <div id="u12865_text" class="text " style="display:none; visibility: hidden">
  1384. <p></p>
  1385. </div>
  1386. </div>
  1387. <!-- Unnamed (Table cell) -->
  1388. <div id="u12866" class="ax_default table_cell1 transition">
  1389. <svg data="images/房屋住户/u12866.svg" id="u12866_img" class="img generatedImage" viewbox="618 242 88 38">
  1390. <path d="M 1 1 L 88 1 L 88 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 618 242 )" class="fill" />
  1391. <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 618 242 )" class="stroke" />
  1392. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 618 242 )" class="stroke" />
  1393. </svg>
  1394. <div id="u12866_text" class="text " style="display:none; visibility: hidden">
  1395. <p></p>
  1396. </div>
  1397. </div>
  1398. <!-- Unnamed (Table cell) -->
  1399. <div id="u12867" class="ax_default table_cell1 transition">
  1400. <svg data="images/房屋住户/u12867.svg" id="u12867_img" class="img generatedImage" viewbox="706 242 88 38">
  1401. <path d="M 1 1 L 88 1 L 88 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 706 242 )" class="fill" />
  1402. <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 706 242 )" class="stroke" />
  1403. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 706 242 )" class="stroke" />
  1404. </svg>
  1405. <div id="u12867_text" class="text " style="display:none; visibility: hidden">
  1406. <p></p>
  1407. </div>
  1408. </div>
  1409. <!-- Unnamed (Table cell) -->
  1410. <div id="u12868" class="ax_default table_cell1 transition">
  1411. <svg data="images/房屋住户/u12868.svg" id="u12868_img" class="img generatedImage" viewbox="794 242 88 38">
  1412. <path d="M 1 1 L 88 1 L 88 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 794 242 )" class="fill" />
  1413. <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 794 242 )" class="stroke" />
  1414. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 794 242 )" class="stroke" />
  1415. </svg>
  1416. <div id="u12868_text" class="text " style="display:none; visibility: hidden">
  1417. <p></p>
  1418. </div>
  1419. </div>
  1420. <!-- Unnamed (Table cell) -->
  1421. <div id="u12869" class="ax_default table_cell1 transition">
  1422. <svg data="images/房屋住户/u12869.svg" id="u12869_img" class="img generatedImage" viewbox="882 242 126 38">
  1423. <path d="M 1 1 L 125 1 L 125 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 882 242 )" class="fill" />
  1424. <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 882 242 )" class="stroke" />
  1425. <path d="M 0 0.5 L 126 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 882 242 )" class="stroke" />
  1426. <path d="M 125.5 1 L 125.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 882 242 )" class="stroke" />
  1427. </svg>
  1428. <div id="u12869_text" class="text " style="display:none; visibility: hidden">
  1429. <p></p>
  1430. </div>
  1431. </div>
  1432. <!-- Unnamed (Table cell) -->
  1433. <div id="u12870" class="ax_default table_cell1 transition">
  1434. <svg data="images/房屋住户/u12870.svg" id="u12870_img" class="img generatedImage" viewbox="0 280 91 38">
  1435. <path d="M 1 1 L 91 1 L 91 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 0 280 )" class="fill" />
  1436. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 280 )" class="stroke" />
  1437. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 280 )" class="stroke" />
  1438. <path d="M 0 37.5 L 91 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 280 )" class="stroke" />
  1439. </svg>
  1440. <div id="u12870_text" class="text " style="display:none; visibility: hidden">
  1441. <p></p>
  1442. </div>
  1443. </div>
  1444. <!-- Unnamed (Table cell) -->
  1445. <div id="u12871" class="ax_default table_cell1 transition">
  1446. <svg data="images/房屋住户/u12871.svg" id="u12871_img" class="img generatedImage" viewbox="91 280 91 38">
  1447. <path d="M 1 1 L 91 1 L 91 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 91 280 )" class="fill" />
  1448. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 91 280 )" class="stroke" />
  1449. <path d="M 0 0.5 L 91 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 91 280 )" class="stroke" />
  1450. <path d="M 0 37.5 L 91 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 91 280 )" class="stroke" />
  1451. </svg>
  1452. <div id="u12871_text" class="text " style="display:none; visibility: hidden">
  1453. <p></p>
  1454. </div>
  1455. </div>
  1456. <!-- Unnamed (Table cell) -->
  1457. <div id="u12872" class="ax_default table_cell1 transition">
  1458. <svg data="images/房屋住户/u12872.svg" id="u12872_img" class="img generatedImage" viewbox="182 280 76 38">
  1459. <path d="M 1 1 L 76 1 L 76 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 182 280 )" class="fill" />
  1460. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 182 280 )" class="stroke" />
  1461. <path d="M 0 0.5 L 76 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 182 280 )" class="stroke" />
  1462. <path d="M 0 37.5 L 76 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 182 280 )" class="stroke" />
  1463. </svg>
  1464. <div id="u12872_text" class="text " style="display:none; visibility: hidden">
  1465. <p></p>
  1466. </div>
  1467. </div>
  1468. <!-- Unnamed (Table cell) -->
  1469. <div id="u12873" class="ax_default table_cell1 transition">
  1470. <svg data="images/房屋住户/u12873.svg" id="u12873_img" class="img generatedImage" viewbox="258 280 92 38">
  1471. <path d="M 1 1 L 92 1 L 92 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 258 280 )" class="fill" />
  1472. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 258 280 )" class="stroke" />
  1473. <path d="M 0 0.5 L 92 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 258 280 )" class="stroke" />
  1474. <path d="M 0 37.5 L 92 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 258 280 )" class="stroke" />
  1475. </svg>
  1476. <div id="u12873_text" class="text " style="display:none; visibility: hidden">
  1477. <p></p>
  1478. </div>
  1479. </div>
  1480. <!-- Unnamed (Table cell) -->
  1481. <div id="u12874" class="ax_default table_cell1 transition">
  1482. <svg data="images/房屋住户/u12874.svg" id="u12874_img" class="img generatedImage" viewbox="350 280 88 38">
  1483. <path d="M 1 1 L 88 1 L 88 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 350 280 )" class="fill" />
  1484. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 350 280 )" class="stroke" />
  1485. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 350 280 )" class="stroke" />
  1486. <path d="M 0 37.5 L 88 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 350 280 )" class="stroke" />
  1487. </svg>
  1488. <div id="u12874_text" class="text " style="display:none; visibility: hidden">
  1489. <p></p>
  1490. </div>
  1491. </div>
  1492. <!-- Unnamed (Table cell) -->
  1493. <div id="u12875" class="ax_default table_cell1 transition">
  1494. <svg data="images/房屋住户/u12875.svg" id="u12875_img" class="img generatedImage" viewbox="438 280 88 38">
  1495. <path d="M 1 1 L 88 1 L 88 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 438 280 )" class="fill" />
  1496. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 438 280 )" class="stroke" />
  1497. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 438 280 )" class="stroke" />
  1498. <path d="M 0 37.5 L 88 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 438 280 )" class="stroke" />
  1499. </svg>
  1500. <div id="u12875_text" class="text " style="display:none; visibility: hidden">
  1501. <p></p>
  1502. </div>
  1503. </div>
  1504. <!-- Unnamed (Table cell) -->
  1505. <div id="u12876" class="ax_default table_cell1 transition">
  1506. <svg data="images/房屋住户/u12876.svg" id="u12876_img" class="img generatedImage" viewbox="526 280 92 38">
  1507. <path d="M 1 1 L 92 1 L 92 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 526 280 )" class="fill" />
  1508. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 526 280 )" class="stroke" />
  1509. <path d="M 0 0.5 L 92 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 526 280 )" class="stroke" />
  1510. <path d="M 0 37.5 L 92 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 526 280 )" class="stroke" />
  1511. </svg>
  1512. <div id="u12876_text" class="text " style="display:none; visibility: hidden">
  1513. <p></p>
  1514. </div>
  1515. </div>
  1516. <!-- Unnamed (Table cell) -->
  1517. <div id="u12877" class="ax_default table_cell1 transition">
  1518. <svg data="images/房屋住户/u12877.svg" id="u12877_img" class="img generatedImage" viewbox="618 280 88 38">
  1519. <path d="M 1 1 L 88 1 L 88 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 618 280 )" class="fill" />
  1520. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 618 280 )" class="stroke" />
  1521. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 618 280 )" class="stroke" />
  1522. <path d="M 0 37.5 L 88 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 618 280 )" class="stroke" />
  1523. </svg>
  1524. <div id="u12877_text" class="text " style="display:none; visibility: hidden">
  1525. <p></p>
  1526. </div>
  1527. </div>
  1528. <!-- Unnamed (Table cell) -->
  1529. <div id="u12878" class="ax_default table_cell1 transition">
  1530. <svg data="images/房屋住户/u12878.svg" id="u12878_img" class="img generatedImage" viewbox="706 280 88 38">
  1531. <path d="M 1 1 L 88 1 L 88 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 706 280 )" class="fill" />
  1532. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 706 280 )" class="stroke" />
  1533. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 706 280 )" class="stroke" />
  1534. <path d="M 0 37.5 L 88 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 706 280 )" class="stroke" />
  1535. </svg>
  1536. <div id="u12878_text" class="text " style="display:none; visibility: hidden">
  1537. <p></p>
  1538. </div>
  1539. </div>
  1540. <!-- Unnamed (Table cell) -->
  1541. <div id="u12879" class="ax_default table_cell1 transition">
  1542. <svg data="images/房屋住户/u12879.svg" id="u12879_img" class="img generatedImage" viewbox="794 280 88 38">
  1543. <path d="M 1 1 L 88 1 L 88 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 794 280 )" class="fill" />
  1544. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 794 280 )" class="stroke" />
  1545. <path d="M 0 0.5 L 88 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 794 280 )" class="stroke" />
  1546. <path d="M 0 37.5 L 88 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 794 280 )" class="stroke" />
  1547. </svg>
  1548. <div id="u12879_text" class="text " style="display:none; visibility: hidden">
  1549. <p></p>
  1550. </div>
  1551. </div>
  1552. <!-- Unnamed (Table cell) -->
  1553. <div id="u12880" class="ax_default table_cell1 transition">
  1554. <svg data="images/房屋住户/u12880.svg" id="u12880_img" class="img generatedImage" viewbox="882 280 126 38">
  1555. <path d="M 1 1 L 125 1 L 125 37 L 1 37 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 0.996078431372549)" stroke="none" transform="matrix(1 0 0 1 882 280 )" class="fill" />
  1556. <path d="M 0.5 1 L 0.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 882 280 )" class="stroke" />
  1557. <path d="M 0 0.5 L 126 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 882 280 )" class="stroke" />
  1558. <path d="M 125.5 1 L 125.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 882 280 )" class="stroke" />
  1559. <path d="M 0 37.5 L 126 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 882 280 )" class="stroke" />
  1560. </svg>
  1561. <div id="u12880_text" class="text " style="display:none; visibility: hidden">
  1562. <p></p>
  1563. </div>
  1564. </div>
  1565. </div>
  1566. <!-- Unnamed (Rectangle) -->
  1567. <div id="u12881" class="ax_default paragraph transition">
  1568. <div id="u12881_div" class=""></div>
  1569. <div id="u12881_text" class="text ">
  1570. <p><span>房屋住户</span></p>
  1571. </div>
  1572. </div>
  1573. <!-- Unnamed (Group) -->
  1574. <div id="u12882" class="ax_default" data-left="861" data-top="239" data-width="140" data-height="30" layer-opacity="1">
  1575. <!-- Unnamed (Rectangle) -->
  1576. <div id="u12883" class="ax_default box_1 transition">
  1577. <div id="u12883_div" class=""></div>
  1578. <div id="u12883_text" class="text " style="display:none; visibility: hidden">
  1579. <p></p>
  1580. </div>
  1581. </div>
  1582. <!-- Unnamed (Droplist) -->
  1583. <div id="u12884" class="ax_default droplist transition">
  1584. <div id="u12884_div" class=""></div>
  1585. <select id="u12884_input" class="u12884_input">
  1586. <option class="u12884_input_option" value="性别">性别</option>
  1587. </select>
  1588. </div>
  1589. </div>
  1590. <!-- Unnamed (Group) -->
  1591. <div id="u12885" class="ax_default" data-left="563" data-top="239" data-width="140" data-height="30" layer-opacity="1">
  1592. <!-- Unnamed (Rectangle) -->
  1593. <div id="u12886" class="ax_default shape transition">
  1594. <div id="u12886_div" class=""></div>
  1595. <div id="u12886_text" class="text " style="display:none; visibility: hidden">
  1596. <p></p>
  1597. </div>
  1598. </div>
  1599. <!-- 选项内容 (Text field) -->
  1600. <div id="u12887" class="ax_default text_field transition" data-label="选项内容">
  1601. <div id="u12887_div" class=""></div>
  1602. <input id="u12887_input" type="text" value="" class="u12887_input"/>
  1603. </div>
  1604. </div>
  1605. <!-- Unnamed (Group) -->
  1606. <div id="u12888" class="ax_default" data-left="713" data-top="239" data-width="140" data-height="30" layer-opacity="1">
  1607. <!-- Unnamed (Rectangle) -->
  1608. <div id="u12889" class="ax_default shape transition">
  1609. <div id="u12889_div" class=""></div>
  1610. <div id="u12889_text" class="text " style="display:none; visibility: hidden">
  1611. <p></p>
  1612. </div>
  1613. </div>
  1614. <!-- 选项内容 (Text field) -->
  1615. <div id="u12890" class="ax_default text_field transition" data-label="选项内容">
  1616. <div id="u12890_div" class=""></div>
  1617. <input id="u12890_input" type="text" value="" class="u12890_input"/>
  1618. </div>
  1619. </div>
  1620. <!-- Unnamed (Group) -->
  1621. <div id="u12891" class="ax_default" data-left="350" data-top="160" data-width="170" data-height="581" layer-opacity="1">
  1622. <!-- Unnamed (Tree) -->
  1623. <div id="u12892" class="ax_default tree_node treeroot">
  1624. <div id="u12892_children" class="u12892_children">
  1625. <!-- Unnamed (Tree node) -->
  1626. <div id="u12893" class="ax_default tree_node treenode">
  1627. <!-- Unnamed (Image) -->
  1628. <div id="u12894" class="ax_default image1 transition">
  1629. <img id="u12894_img" class="img " src="images/设备监测/u7422_selected.png"/>
  1630. <div id="u12894_text" class="text " style="display:none; visibility: hidden">
  1631. <p></p>
  1632. </div>
  1633. </div>
  1634. <!-- Unnamed (Rectangle) -->
  1635. <div id="u12895" class=" transition" selectiongroup="u12892_tree_group">
  1636. <div id="u12895_div" class=""></div>
  1637. <div id="u12895_text" class="text ">
  1638. <p><span>西安保利天汇</span></p>
  1639. </div>
  1640. </div>
  1641. <div id="u12893_children" class="u12893_children">
  1642. <!-- Unnamed (Tree node) -->
  1643. <div id="u12896" class="ax_default tree_node treenode">
  1644. <!-- Unnamed (Image) -->
  1645. <div id="u12897" class="ax_default image1 transition">
  1646. <img id="u12897_img" class="img " src="images/设备监测/u7422_selected.png"/>
  1647. <div id="u12897_text" class="text " style="display:none; visibility: hidden">
  1648. <p></p>
  1649. </div>
  1650. </div>
  1651. <!-- Unnamed (Rectangle) -->
  1652. <div id="u12898" class=" transition" selectiongroup="u12892_tree_group">
  1653. <div id="u12898_div" class=""></div>
  1654. <div id="u12898_text" class="text ">
  1655. <p><span>1号楼</span></p>
  1656. </div>
  1657. </div>
  1658. <div id="u12896_children" class="u12896_children">
  1659. <!-- Unnamed (Tree node) -->
  1660. <div id="u12899" class="ax_default tree_node treenode">
  1661. <!-- Unnamed (Image) -->
  1662. <div id="u12900" class="ax_default image1 transition">
  1663. <img id="u12900_img" class="img " src="images/设备监测/u7422_selected.png"/>
  1664. <div id="u12900_text" class="text " style="display:none; visibility: hidden">
  1665. <p></p>
  1666. </div>
  1667. </div>
  1668. <!-- Unnamed (Rectangle) -->
  1669. <div id="u12901" class=" transition" selectiongroup="u12892_tree_group">
  1670. <div id="u12901_div" class=""></div>
  1671. <div id="u12901_text" class="text ">
  1672. <p><span>01单元</span></p>
  1673. </div>
  1674. </div>
  1675. <div id="u12899_children" class="u12899_children">
  1676. <!-- Unnamed (Tree node) -->
  1677. <div id="u12902" class="ax_default tree_node treenode">
  1678. <!-- Unnamed (Rectangle) -->
  1679. <div id="u12903" class=" transition" selectiongroup="u12892_tree_group">
  1680. <div id="u12903_div" class=""></div>
  1681. <div id="u12903_text" class="text ">
  1682. <p><span>101室</span></p>
  1683. </div>
  1684. </div>
  1685. </div>
  1686. <!-- Unnamed (Tree node) -->
  1687. <div id="u12904" class="ax_default tree_node treenode">
  1688. <!-- Unnamed (Rectangle) -->
  1689. <div id="u12905" class=" transition" selectiongroup="u12892_tree_group">
  1690. <div id="u12905_div" class=""></div>
  1691. <div id="u12905_text" class="text ">
  1692. <p><span>102室</span></p>
  1693. </div>
  1694. </div>
  1695. </div>
  1696. <!-- Unnamed (Tree node) -->
  1697. <div id="u12906" class="ax_default tree_node treenode">
  1698. <!-- Unnamed (Rectangle) -->
  1699. <div id="u12907" class=" transition" selectiongroup="u12892_tree_group">
  1700. <div id="u12907_div" class=""></div>
  1701. <div id="u12907_text" class="text ">
  1702. <p><span>103室</span></p>
  1703. </div>
  1704. </div>
  1705. </div>
  1706. <!-- Unnamed (Tree node) -->
  1707. <div id="u12908" class="ax_default tree_node treenode">
  1708. <!-- Unnamed (Rectangle) -->
  1709. <div id="u12909" class=" transition" selectiongroup="u12892_tree_group">
  1710. <div id="u12909_div" class=""></div>
  1711. <div id="u12909_text" class="text ">
  1712. <p><span>201室</span></p>
  1713. </div>
  1714. </div>
  1715. </div>
  1716. <!-- Unnamed (Tree node) -->
  1717. <div id="u12910" class="ax_default tree_node treenode">
  1718. <!-- Unnamed (Rectangle) -->
  1719. <div id="u12911" class=" transition" selectiongroup="u12892_tree_group">
  1720. <div id="u12911_div" class=""></div>
  1721. <div id="u12911_text" class="text ">
  1722. <p><span>202室</span></p>
  1723. </div>
  1724. </div>
  1725. </div>
  1726. <!-- Unnamed (Tree node) -->
  1727. <div id="u12912" class="ax_default tree_node treenode">
  1728. <!-- Unnamed (Rectangle) -->
  1729. <div id="u12913" class=" transition" selectiongroup="u12892_tree_group">
  1730. <div id="u12913_div" class=""></div>
  1731. <div id="u12913_text" class="text ">
  1732. <p><span>……</span></p>
  1733. </div>
  1734. </div>
  1735. </div>
  1736. </div>
  1737. </div>
  1738. <!-- Unnamed (Tree node) -->
  1739. <div id="u12914" class="ax_default tree_node treenode">
  1740. <!-- Unnamed (Image) -->
  1741. <div id="u12915" class="ax_default image1 transition">
  1742. <img id="u12915_img" class="img " src="images/设备监测/u7422_selected.png"/>
  1743. <div id="u12915_text" class="text " style="display:none; visibility: hidden">
  1744. <p></p>
  1745. </div>
  1746. </div>
  1747. <!-- Unnamed (Rectangle) -->
  1748. <div id="u12916" class=" transition" selectiongroup="u12892_tree_group">
  1749. <div id="u12916_div" class=""></div>
  1750. <div id="u12916_text" class="text ">
  1751. <p><span>02单元</span></p>
  1752. </div>
  1753. </div>
  1754. <div id="u12914_children" class="u12914_children">
  1755. <!-- Unnamed (Tree node) -->
  1756. <div id="u12917" class="ax_default tree_node treenode">
  1757. <!-- Unnamed (Rectangle) -->
  1758. <div id="u12918" class=" transition" selectiongroup="u12892_tree_group">
  1759. <div id="u12918_div" class=""></div>
  1760. <div id="u12918_text" class="text ">
  1761. <p><span>101室</span></p>
  1762. </div>
  1763. </div>
  1764. </div>
  1765. <!-- Unnamed (Tree node) -->
  1766. <div id="u12919" class="ax_default tree_node treenode">
  1767. <!-- Unnamed (Rectangle) -->
  1768. <div id="u12920" class=" transition" selectiongroup="u12892_tree_group">
  1769. <div id="u12920_div" class=""></div>
  1770. <div id="u12920_text" class="text ">
  1771. <p><span>102室</span></p>
  1772. </div>
  1773. </div>
  1774. </div>
  1775. <!-- Unnamed (Tree node) -->
  1776. <div id="u12921" class="ax_default tree_node treenode">
  1777. <!-- Unnamed (Rectangle) -->
  1778. <div id="u12922" class=" transition" selectiongroup="u12892_tree_group">
  1779. <div id="u12922_div" class=""></div>
  1780. <div id="u12922_text" class="text ">
  1781. <p><span>103室</span></p>
  1782. </div>
  1783. </div>
  1784. </div>
  1785. <!-- Unnamed (Tree node) -->
  1786. <div id="u12923" class="ax_default tree_node treenode">
  1787. <!-- Unnamed (Rectangle) -->
  1788. <div id="u12924" class=" transition" selectiongroup="u12892_tree_group">
  1789. <div id="u12924_div" class=""></div>
  1790. <div id="u12924_text" class="text ">
  1791. <p><span>201室</span></p>
  1792. </div>
  1793. </div>
  1794. </div>
  1795. <!-- Unnamed (Tree node) -->
  1796. <div id="u12925" class="ax_default tree_node treenode">
  1797. <!-- Unnamed (Rectangle) -->
  1798. <div id="u12926" class=" transition" selectiongroup="u12892_tree_group">
  1799. <div id="u12926_div" class=""></div>
  1800. <div id="u12926_text" class="text ">
  1801. <p><span>202室</span></p>
  1802. </div>
  1803. </div>
  1804. </div>
  1805. <!-- Unnamed (Tree node) -->
  1806. <div id="u12927" class="ax_default tree_node treenode">
  1807. <!-- Unnamed (Rectangle) -->
  1808. <div id="u12928" class=" transition" selectiongroup="u12892_tree_group">
  1809. <div id="u12928_div" class=""></div>
  1810. <div id="u12928_text" class="text ">
  1811. <p><span>……</span></p>
  1812. </div>
  1813. </div>
  1814. </div>
  1815. </div>
  1816. </div>
  1817. </div>
  1818. </div>
  1819. <!-- Unnamed (Tree node) -->
  1820. <div id="u12929" class="ax_default tree_node treenode">
  1821. <!-- Unnamed (Image) -->
  1822. <div id="u12930" class="ax_default image1 transition">
  1823. <img id="u12930_img" class="img " src="images/设备监测/u7422_selected.png"/>
  1824. <div id="u12930_text" class="text " style="display:none; visibility: hidden">
  1825. <p></p>
  1826. </div>
  1827. </div>
  1828. <!-- Unnamed (Rectangle) -->
  1829. <div id="u12931" class=" transition" selectiongroup="u12892_tree_group">
  1830. <div id="u12931_div" class=""></div>
  1831. <div id="u12931_text" class="text ">
  1832. <p><span>2号楼</span></p>
  1833. </div>
  1834. </div>
  1835. <div id="u12929_children" class="u12929_children">
  1836. <!-- Unnamed (Tree node) -->
  1837. <div id="u12932" class="ax_default tree_node treenode">
  1838. <!-- Unnamed (Rectangle) -->
  1839. <div id="u12933" class=" transition" selectiongroup="u12892_tree_group">
  1840. <div id="u12933_div" class=""></div>
  1841. <div id="u12933_text" class="text ">
  1842. <p><span>101室</span></p>
  1843. </div>
  1844. </div>
  1845. </div>
  1846. <!-- Unnamed (Tree node) -->
  1847. <div id="u12934" class="ax_default tree_node treenode">
  1848. <!-- Unnamed (Rectangle) -->
  1849. <div id="u12935" class=" transition" selectiongroup="u12892_tree_group">
  1850. <div id="u12935_div" class=""></div>
  1851. <div id="u12935_text" class="text ">
  1852. <p><span>102室</span></p>
  1853. </div>
  1854. </div>
  1855. </div>
  1856. <!-- Unnamed (Tree node) -->
  1857. <div id="u12936" class="ax_default tree_node treenode">
  1858. <!-- Unnamed (Rectangle) -->
  1859. <div id="u12937" class=" transition" selectiongroup="u12892_tree_group">
  1860. <div id="u12937_div" class=""></div>
  1861. <div id="u12937_text" class="text ">
  1862. <p><span>201室</span></p>
  1863. </div>
  1864. </div>
  1865. </div>
  1866. <!-- Unnamed (Tree node) -->
  1867. <div id="u12938" class="ax_default tree_node treenode">
  1868. <!-- Unnamed (Rectangle) -->
  1869. <div id="u12939" class=" transition" selectiongroup="u12892_tree_group">
  1870. <div id="u12939_div" class=""></div>
  1871. <div id="u12939_text" class="text ">
  1872. <p><span>202室</span></p>
  1873. </div>
  1874. </div>
  1875. </div>
  1876. <!-- Unnamed (Tree node) -->
  1877. <div id="u12940" class="ax_default tree_node treenode">
  1878. <!-- Unnamed (Rectangle) -->
  1879. <div id="u12941" class=" transition" selectiongroup="u12892_tree_group">
  1880. <div id="u12941_div" class=""></div>
  1881. <div id="u12941_text" class="text ">
  1882. <p><span>……</span></p>
  1883. </div>
  1884. </div>
  1885. </div>
  1886. </div>
  1887. </div>
  1888. <!-- Unnamed (Tree node) -->
  1889. <div id="u12942" class="ax_default tree_node treenode">
  1890. <!-- Unnamed (Image) -->
  1891. <div id="u12943" class="ax_default image1 transition">
  1892. <img id="u12943_img" class="img " src="images/设备监测/u7422_selected.png"/>
  1893. <div id="u12943_text" class="text " style="display:none; visibility: hidden">
  1894. <p></p>
  1895. </div>
  1896. </div>
  1897. <!-- Unnamed (Rectangle) -->
  1898. <div id="u12944" class=" transition" selectiongroup="u12892_tree_group">
  1899. <div id="u12944_div" class=""></div>
  1900. <div id="u12944_text" class="text ">
  1901. <p><span>3号楼</span></p>
  1902. </div>
  1903. </div>
  1904. <div id="u12942_children" class="u12942_children">
  1905. <!-- Unnamed (Tree node) -->
  1906. <div id="u12945" class="ax_default tree_node treenode">
  1907. <!-- Unnamed (Rectangle) -->
  1908. <div id="u12946" class=" transition" selectiongroup="u12892_tree_group">
  1909. <div id="u12946_div" class=""></div>
  1910. <div id="u12946_text" class="text ">
  1911. <p><span>enter text...</span></p>
  1912. </div>
  1913. </div>
  1914. </div>
  1915. <!-- Unnamed (Tree node) -->
  1916. <div id="u12947" class="ax_default tree_node treenode">
  1917. <!-- Unnamed (Rectangle) -->
  1918. <div id="u12948" class=" transition" selectiongroup="u12892_tree_group">
  1919. <div id="u12948_div" class=""></div>
  1920. <div id="u12948_text" class="text ">
  1921. <p><span>enter text...</span></p>
  1922. </div>
  1923. </div>
  1924. </div>
  1925. </div>
  1926. </div>
  1927. </div>
  1928. </div>
  1929. </div>
  1930. </div>
  1931. <!-- Unnamed (Group) -->
  1932. <div id="u12949" class="ax_default" data-left="350" data-top="199" data-width="170" data-height="30" layer-opacity="1">
  1933. <!-- Unnamed (Rectangle) -->
  1934. <div id="u12950" class="ax_default shape transition">
  1935. <div id="u12950_div" class=""></div>
  1936. <div id="u12950_text" class="text " style="display:none; visibility: hidden">
  1937. <p></p>
  1938. </div>
  1939. </div>
  1940. <!-- 选项内容 (Text field) -->
  1941. <div id="u12951" class="ax_default text_field transition" data-label="选项内容">
  1942. <div id="u12951_div" class=""></div>
  1943. <input id="u12951_input" type="text" value="" class="u12951_input"/>
  1944. </div>
  1945. <!-- Unnamed (Shape) -->
  1946. <div id="u12952" class="ax_default icon1 transition">
  1947. <svg data="images/设备监测/u7489.svg" id="u12952_img" class="img generatedImage">
  1948. <defs>
  1949. <pattern id="u12952_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  1950. <mask fill="white" id="u12952_img_cl3150">
  1951. <path d="M 8.5859375 8.5859375 C 9.32351762820513 7.8483573717948705 9.692307692307692 6.960737179487179 9.692307692307692 5.923076923076923 C 9.692307692307692 4.885416666666666 9.32351762820513 3.9977964743589736 8.5859375 3.260216346153846 C 7.848357371794872 2.522636217948717 6.96073717948718 2.153846153846154 5.923076923076923 2.153846153846154 C 4.885416666666667 2.153846153846154 3.9977964743589753 2.522636217948717 3.260216346153846 3.260216346153846 C 2.522636217948718 3.9977964743589736 2.153846153846154 4.885416666666666 2.153846153846154 5.923076923076923 C 2.153846153846154 6.960737179487179 2.522636217948718 7.8483573717948705 3.260216346153846 8.5859375 C 3.9977964743589753 9.323517628205126 4.885416666666667 9.692307692307692 5.923076923076923 9.692307692307692 C 6.96073717948718 9.692307692307692 7.848357371794872 9.323517628205126 8.5859375 8.5859375 Z M 13.688701923076923 12.165865384615383 C 13.896233974358974 12.373397435897438 14 12.625801282051283 14 12.923076923076923 C 14 13.214743589743591 13.893429487179489 13.467147435897438 13.680288461538462 13.680288461538462 C 13.467147435897438 13.893429487179487 13.214743589743591 14 12.923076923076923 14 C 12.620192307692308 14 12.367788461538462 13.893429487179487 12.165865384615383 13.680288461538462 L 9.280048076923077 10.802884615384617 C 8.276041666666668 11.498397435897438 7.157051282051283 11.846153846153847 5.923076923076923 11.846153846153847 C 5.12099358974359 11.846153846153847 4.353966346153846 11.690504807692308 3.621995192307692 11.379206730769232 C 2.8900240384615383 11.067908653846153 2.259014423076923 10.647235576923077 1.7289663461538463 10.1171875 C 1.1989182692307692 9.587139423076923 0.7782451923076925 8.956129807692308 0.46694711538461536 8.224158653846153 C 0.15564903846153846 7.4921875 0 6.7251602564102555 0 5.923076923076923 C 0 5.120993589743588 0.15564903846153846 4.353966346153846 0.46694711538461536 3.621995192307692 C 0.7782451923076925 2.8900240384615383 1.1989182692307692 2.259014423076924 1.7289663461538463 1.728966346153846 C 2.259014423076923 1.1989182692307698 2.8900240384615383 0.7782451923076921 3.621995192307692 0.46694711538461586 C 4.353966346153846 0.1556490384615381 5.12099358974359 0 5.923076923076923 0 C 6.725160256410256 0 7.4921875 0.1556490384615381 8.224158653846153 0.46694711538461586 C 8.956129807692308 0.7782451923076921 9.587139423076923 1.1989182692307698 10.1171875 1.728966346153846 C 10.647235576923077 2.259014423076924 11.067908653846153 2.8900240384615383 11.37920673076923 3.621995192307692 C 11.690504807692308 4.353966346153846 11.846153846153847 5.120993589743588 11.846153846153847 5.923076923076923 C 11.846153846153847 7.157051282051281 11.498397435897438 8.276041666666666 10.802884615384617 9.280048076923077 L 13.688701923076923 12.165865384615383 Z " fill-rule="evenodd" />
  1952. </mask>
  1953. </defs>
  1954. <g transform="matrix(1 0 0 1 -528 -298 )">
  1955. <path d="M 8.5859375 8.5859375 C 9.32351762820513 7.8483573717948705 9.692307692307692 6.960737179487179 9.692307692307692 5.923076923076923 C 9.692307692307692 4.885416666666666 9.32351762820513 3.9977964743589736 8.5859375 3.260216346153846 C 7.848357371794872 2.522636217948717 6.96073717948718 2.153846153846154 5.923076923076923 2.153846153846154 C 4.885416666666667 2.153846153846154 3.9977964743589753 2.522636217948717 3.260216346153846 3.260216346153846 C 2.522636217948718 3.9977964743589736 2.153846153846154 4.885416666666666 2.153846153846154 5.923076923076923 C 2.153846153846154 6.960737179487179 2.522636217948718 7.8483573717948705 3.260216346153846 8.5859375 C 3.9977964743589753 9.323517628205126 4.885416666666667 9.692307692307692 5.923076923076923 9.692307692307692 C 6.96073717948718 9.692307692307692 7.848357371794872 9.323517628205126 8.5859375 8.5859375 Z M 13.688701923076923 12.165865384615383 C 13.896233974358974 12.373397435897438 14 12.625801282051283 14 12.923076923076923 C 14 13.214743589743591 13.893429487179489 13.467147435897438 13.680288461538462 13.680288461538462 C 13.467147435897438 13.893429487179487 13.214743589743591 14 12.923076923076923 14 C 12.620192307692308 14 12.367788461538462 13.893429487179487 12.165865384615383 13.680288461538462 L 9.280048076923077 10.802884615384617 C 8.276041666666668 11.498397435897438 7.157051282051283 11.846153846153847 5.923076923076923 11.846153846153847 C 5.12099358974359 11.846153846153847 4.353966346153846 11.690504807692308 3.621995192307692 11.379206730769232 C 2.8900240384615383 11.067908653846153 2.259014423076923 10.647235576923077 1.7289663461538463 10.1171875 C 1.1989182692307692 9.587139423076923 0.7782451923076925 8.956129807692308 0.46694711538461536 8.224158653846153 C 0.15564903846153846 7.4921875 0 6.7251602564102555 0 5.923076923076923 C 0 5.120993589743588 0.15564903846153846 4.353966346153846 0.46694711538461536 3.621995192307692 C 0.7782451923076925 2.8900240384615383 1.1989182692307692 2.259014423076924 1.7289663461538463 1.728966346153846 C 2.259014423076923 1.1989182692307698 2.8900240384615383 0.7782451923076921 3.621995192307692 0.46694711538461586 C 4.353966346153846 0.1556490384615381 5.12099358974359 0 5.923076923076923 0 C 6.725160256410256 0 7.4921875 0.1556490384615381 8.224158653846153 0.46694711538461586 C 8.956129807692308 0.7782451923076921 9.587139423076923 1.1989182692307698 10.1171875 1.728966346153846 C 10.647235576923077 2.259014423076924 11.067908653846153 2.8900240384615383 11.37920673076923 3.621995192307692 C 11.690504807692308 4.353966346153846 11.846153846153847 5.120993589743588 11.846153846153847 5.923076923076923 C 11.846153846153847 7.157051282051281 11.498397435897438 8.276041666666666 10.802884615384617 9.280048076923077 L 13.688701923076923 12.165865384615383 Z " fill-rule="nonzero" fill="rgba(170, 170, 170, 1)" stroke="none" transform="matrix(1 0 0 1 528 298 )" class="fill" />
  1956. <path d="M 8.5859375 8.5859375 C 9.32351762820513 7.8483573717948705 9.692307692307692 6.960737179487179 9.692307692307692 5.923076923076923 C 9.692307692307692 4.885416666666666 9.32351762820513 3.9977964743589736 8.5859375 3.260216346153846 C 7.848357371794872 2.522636217948717 6.96073717948718 2.153846153846154 5.923076923076923 2.153846153846154 C 4.885416666666667 2.153846153846154 3.9977964743589753 2.522636217948717 3.260216346153846 3.260216346153846 C 2.522636217948718 3.9977964743589736 2.153846153846154 4.885416666666666 2.153846153846154 5.923076923076923 C 2.153846153846154 6.960737179487179 2.522636217948718 7.8483573717948705 3.260216346153846 8.5859375 C 3.9977964743589753 9.323517628205126 4.885416666666667 9.692307692307692 5.923076923076923 9.692307692307692 C 6.96073717948718 9.692307692307692 7.848357371794872 9.323517628205126 8.5859375 8.5859375 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 528 298 )" class="stroke" mask="url(#u12952_img_cl3150)" />
  1957. <path d="M 13.688701923076923 12.165865384615383 C 13.896233974358974 12.373397435897438 14 12.625801282051283 14 12.923076923076923 C 14 13.214743589743591 13.893429487179489 13.467147435897438 13.680288461538462 13.680288461538462 C 13.467147435897438 13.893429487179487 13.214743589743591 14 12.923076923076923 14 C 12.620192307692308 14 12.367788461538462 13.893429487179487 12.165865384615383 13.680288461538462 L 9.280048076923077 10.802884615384617 C 8.276041666666668 11.498397435897438 7.157051282051283 11.846153846153847 5.923076923076923 11.846153846153847 C 5.12099358974359 11.846153846153847 4.353966346153846 11.690504807692308 3.621995192307692 11.379206730769232 C 2.8900240384615383 11.067908653846153 2.259014423076923 10.647235576923077 1.7289663461538463 10.1171875 C 1.1989182692307692 9.587139423076923 0.7782451923076925 8.956129807692308 0.46694711538461536 8.224158653846153 C 0.15564903846153846 7.4921875 0 6.7251602564102555 0 5.923076923076923 C 0 5.120993589743588 0.15564903846153846 4.353966346153846 0.46694711538461536 3.621995192307692 C 0.7782451923076925 2.8900240384615383 1.1989182692307692 2.259014423076924 1.7289663461538463 1.728966346153846 C 2.259014423076923 1.1989182692307698 2.8900240384615383 0.7782451923076921 3.621995192307692 0.46694711538461586 C 4.353966346153846 0.1556490384615381 5.12099358974359 0 5.923076923076923 0 C 6.725160256410256 0 7.4921875 0.1556490384615381 8.224158653846153 0.46694711538461586 C 8.956129807692308 0.7782451923076921 9.587139423076923 1.1989182692307698 10.1171875 1.728966346153846 C 10.647235576923077 2.259014423076924 11.067908653846153 2.8900240384615383 11.37920673076923 3.621995192307692 C 11.690504807692308 4.353966346153846 11.846153846153847 5.120993589743588 11.846153846153847 5.923076923076923 C 11.846153846153847 7.157051282051281 11.498397435897438 8.276041666666666 10.802884615384617 9.280048076923077 L 13.688701923076923 12.165865384615383 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 528 298 )" class="stroke" mask="url(#u12952_img_cl3150)" />
  1958. </g>
  1959. </svg>
  1960. <div id="u12952_text" class="text " style="display:none; visibility: hidden">
  1961. <p></p>
  1962. </div>
  1963. </div>
  1964. </div>
  1965. <!-- Unnamed (Group) -->
  1966. <div id="u12953" class="ax_default" data-left="350" data-top="160" data-width="133" data-height="30" layer-opacity="1">
  1967. <!-- Unnamed (Rectangle) -->
  1968. <div id="u12954" class="ax_default paragraph transition">
  1969. <div id="u12954_div" class=""></div>
  1970. <div id="u12954_text" class="text ">
  1971. <p><span>西安保利天汇</span></p>
  1972. </div>
  1973. </div>
  1974. <!-- Unnamed (Shape) -->
  1975. <div id="u12955" class="ax_default icon1 transition">
  1976. <svg data="images/房屋住户/u12955.svg" id="u12955_img" class="img generatedImage">
  1977. <defs>
  1978. <pattern id="u12955_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  1979. <mask fill="white" id="u12955_img_cl3516">
  1980. <path d="M 11.77734375 0.23090277777777812 C 11.92578125 0.38483796296296224 12 0.5671296296296279 12 0.7777777777777781 C 12 0.9884259259259253 11.92578125 1.1707175925925917 11.77734375 1.3246527777777781 L 6.52734375 6.769097222222221 C 6.37890625 6.923032407407408 6.203125 7 6 7 C 5.796875000000001 7 5.621093750000001 6.923032407407408 5.47265625 6.769097222222221 L 0.22265625 1.3246527777777781 C 0.07421875 1.1707175925925917 0 0.9884259259259253 0 0.7777777777777781 C 0 0.5671296296296279 0.07421875 0.38483796296296224 0.22265625 0.23090277777777812 C 0.37109375 0.07696759259259167 0.546875 0 0.75 0 L 11.25 0 C 11.453125 0 11.62890625 0.07696759259259167 11.77734375 0.23090277777777812 Z " fill-rule="evenodd" />
  1981. </mask>
  1982. </defs>
  1983. <g transform="matrix(1 0 0 1 -471 -171 )">
  1984. <path d="M 11.77734375 0.23090277777777812 C 11.92578125 0.38483796296296224 12 0.5671296296296279 12 0.7777777777777781 C 12 0.9884259259259253 11.92578125 1.1707175925925917 11.77734375 1.3246527777777781 L 6.52734375 6.769097222222221 C 6.37890625 6.923032407407408 6.203125 7 6 7 C 5.796875000000001 7 5.621093750000001 6.923032407407408 5.47265625 6.769097222222221 L 0.22265625 1.3246527777777781 C 0.07421875 1.1707175925925917 0 0.9884259259259253 0 0.7777777777777781 C 0 0.5671296296296279 0.07421875 0.38483796296296224 0.22265625 0.23090277777777812 C 0.37109375 0.07696759259259167 0.546875 0 0.75 0 L 11.25 0 C 11.453125 0 11.62890625 0.07696759259259167 11.77734375 0.23090277777777812 Z " fill-rule="nonzero" fill="rgba(0, 0, 0, 1)" stroke="none" transform="matrix(1 0 0 1 471 171 )" class="fill" />
  1985. <path d="M 11.77734375 0.23090277777777812 C 11.92578125 0.38483796296296224 12 0.5671296296296279 12 0.7777777777777781 C 12 0.9884259259259253 11.92578125 1.1707175925925917 11.77734375 1.3246527777777781 L 6.52734375 6.769097222222221 C 6.37890625 6.923032407407408 6.203125 7 6 7 C 5.796875000000001 7 5.621093750000001 6.923032407407408 5.47265625 6.769097222222221 L 0.22265625 1.3246527777777781 C 0.07421875 1.1707175925925917 0 0.9884259259259253 0 0.7777777777777781 C 0 0.5671296296296279 0.07421875 0.38483796296296224 0.22265625 0.23090277777777812 C 0.37109375 0.07696759259259167 0.546875 0 0.75 0 L 11.25 0 C 11.453125 0 11.62890625 0.07696759259259167 11.77734375 0.23090277777777812 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 471 171 )" class="stroke" mask="url(#u12955_img_cl3516)" />
  1986. </g>
  1987. </svg>
  1988. <div id="u12955_text" class="text " style="display:none; visibility: hidden">
  1989. <p></p>
  1990. </div>
  1991. </div>
  1992. </div>
  1993. </div>
  1994. <!-- Unnamed (Rectangle) -->
  1995. <div id="u12956" class="ax_default paragraph transition">
  1996. <div id="u12956_div" class=""></div>
  1997. <div id="u12956_text" class="text ">
  1998. <p><span>1号楼01单元102室</span></p>
  1999. </div>
  2000. </div>
  2001. <!-- Unnamed (Group) -->
  2002. <div id="u12957" class="ax_default" data-left="1161" data-top="199" data-width="140" data-height="30" layer-opacity="1">
  2003. <!-- Unnamed (Rectangle) -->
  2004. <div id="u12958" class="ax_default box_1 transition">
  2005. <div id="u12958_div" class=""></div>
  2006. <div id="u12958_text" class="text " style="display:none; visibility: hidden">
  2007. <p></p>
  2008. </div>
  2009. </div>
  2010. <!-- Unnamed (Droplist) -->
  2011. <div id="u12959" class="ax_default droplist transition">
  2012. <div id="u12959_div" class=""></div>
  2013. <select id="u12959_input" class="u12959_input">
  2014. <option class="u12959_input_option" value="人员身份">人员身份</option>
  2015. <option class="u12959_input_option" value="业主">业主</option>
  2016. <option class="u12959_input_option" value="租客">租客</option>
  2017. <option class="u12959_input_option" value="成员">成员</option>
  2018. </select>
  2019. </div>
  2020. </div>
  2021. <!-- Unnamed (Rectangle) -->
  2022. <div id="u12960" class="ax_default box_1 transition">
  2023. <div id="u12960_div" class=""></div>
  2024. <div id="u12960_text" class="text ">
  2025. <p><span>设置</span></p>
  2026. </div>
  2027. </div>
  2028. <!-- Unnamed (Group) -->
  2029. <div id="u12961" class="ax_default" data-left="1498" data-top="465" data-width="80" data-height="100" layer-opacity="1">
  2030. <!-- Unnamed (Rectangle) -->
  2031. <div id="u12962" class="ax_default box_1 transition">
  2032. <div id="u12962_div" class=""></div>
  2033. <div id="u12962_text" class="text " style="display:none; visibility: hidden">
  2034. <p></p>
  2035. </div>
  2036. </div>
  2037. <!-- Unnamed (Rectangle) -->
  2038. <div id="u12963" class="ax_default box_1 transition">
  2039. <div id="u12963_div" class=""></div>
  2040. <div id="u12963_text" class="text ">
  2041. <p><span>移除</span></p>
  2042. </div>
  2043. </div>
  2044. <!-- Unnamed (Rectangle) -->
  2045. <div id="u12964" class="ax_default box_1 transition">
  2046. <div id="u12964_div" class=""></div>
  2047. <div id="u12964_text" class="text ">
  2048. <p><span>编辑</span></p>
  2049. </div>
  2050. </div>
  2051. </div>
  2052. <!-- Unnamed (客户-人员中心) -->
  2053. <div id="u12965" class="nopointer ax_default">
  2054. <!-- Unnamed (Group) -->
  2055. <div id="u12966" class="ax_default" data-left="120" data-top="50" data-width="201" data-height="1190" layer-opacity="1">
  2056. <!-- Unnamed (Rectangle) -->
  2057. <div id="u12967" class="ax_default box_2 transition">
  2058. <div id="u12967_div" class=""></div>
  2059. <div id="u12967_text" class="text " style="display:none; visibility: hidden">
  2060. <p></p>
  2061. </div>
  2062. </div>
  2063. <!-- Unnamed (Rectangle) -->
  2064. <div id="u12968" class="ax_default label transition">
  2065. <div id="u12968_div" class=""></div>
  2066. <div id="u12968_text" class="text ">
  2067. <p><span>客户中心</span></p>
  2068. </div>
  2069. </div>
  2070. <!-- Unnamed (Rectangle) -->
  2071. <div id="u12969" class="ax_default label transition">
  2072. <div id="u12969_div" class=""></div>
  2073. <div id="u12969_text" class="text ">
  2074. <p><span>入驻企业</span></p>
  2075. </div>
  2076. </div>
  2077. <!-- Unnamed (Rectangle) -->
  2078. <div id="u12970" class="ax_default label transition">
  2079. <div id="u12970_div" class=""></div>
  2080. <div id="u12970_text" class="text ">
  2081. <p><span>入驻机构</span></p>
  2082. </div>
  2083. </div>
  2084. <!-- Unnamed (Rectangle) -->
  2085. <div id="u12971" class="ax_default label transition">
  2086. <div id="u12971_div" class=""></div>
  2087. <div id="u12971_text" class="text ">
  2088. <p><span>人员登记</span></p>
  2089. </div>
  2090. </div>
  2091. <!-- Unnamed (Rectangle) -->
  2092. <div id="u12972" class="ax_default label transition">
  2093. <div id="u12972_div" class=""></div>
  2094. <div id="u12972_text" class="text ">
  2095. <p><span>房屋住户</span></p>
  2096. </div>
  2097. </div>
  2098. <!-- Unnamed (Line) -->
  2099. <div id="u12973" class="ax_default line1 transition">
  2100. <svg data="images/项目列表/u4861.svg" id="u12973_img" class="img generatedImage">
  2101. <g transform="matrix(1 0 0 1 -1 -122 )">
  2102. <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" />
  2103. </g>
  2104. </svg>
  2105. <div id="u12973_text" class="text " style="display:none; visibility: hidden">
  2106. <p></p>
  2107. </div>
  2108. </div>
  2109. <!-- Unnamed (Rectangle) -->
  2110. <div id="u12974" class="ax_default label transition">
  2111. <div id="u12974_div" class=""></div>
  2112. <div id="u12974_text" class="text ">
  2113. <p><span>企业员工</span></p>
  2114. </div>
  2115. </div>
  2116. <!-- Unnamed (Rectangle) -->
  2117. <div id="u12975" class="ax_default label transition">
  2118. <div id="u12975_div" class=""></div>
  2119. <div id="u12975_text" class="text ">
  2120. <p><span>业主管理</span></p>
  2121. </div>
  2122. </div>
  2123. <!-- Unnamed (Line) -->
  2124. <div id="u12976" class="ax_default line1 transition">
  2125. <svg data="images/项目列表/u4861.svg" id="u12976_img" class="img generatedImage">
  2126. <g transform="matrix(1 0 0 1 -1 -122 )">
  2127. <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" />
  2128. </g>
  2129. </svg>
  2130. <div id="u12976_text" class="text " style="display:none; visibility: hidden">
  2131. <p></p>
  2132. </div>
  2133. </div>
  2134. <!-- Unnamed (Rectangle) -->
  2135. <div id="u12977" class="ax_default label transition">
  2136. <div id="u12977_div" class=""></div>
  2137. <div id="u12977_text" class="text ">
  2138. <p><span>房屋业主</span></p>
  2139. </div>
  2140. </div>
  2141. <!-- Unnamed (Rectangle) -->
  2142. <div id="u12978" class="ax_default label transition">
  2143. <div id="u12978_div" class=""></div>
  2144. <div id="u12978_text" class="text ">
  2145. <p><span>车位业主</span></p>
  2146. </div>
  2147. </div>
  2148. <!-- Unnamed (Rectangle) -->
  2149. <div id="u12979" class="ax_default label transition">
  2150. <div id="u12979_div" class=""></div>
  2151. <div id="u12979_text" class="text ">
  2152. <p><span>认证设置</span></p>
  2153. </div>
  2154. </div>
  2155. <!-- Unnamed (Rectangle) -->
  2156. <div id="u12980" class="ax_default label transition">
  2157. <div id="u12980_div" class=""></div>
  2158. <div id="u12980_text" class="text ">
  2159. <p><span>房屋业主认证</span></p>
  2160. </div>
  2161. </div>
  2162. <!-- Unnamed (Rectangle) -->
  2163. <div id="u12981" class="ax_default label transition">
  2164. <div id="u12981_div" class=""></div>
  2165. <div id="u12981_text" class="text ">
  2166. <p><span>身份认证</span></p>
  2167. </div>
  2168. </div>
  2169. <!-- Unnamed (Line) -->
  2170. <div id="u12982" class="ax_default line1 transition">
  2171. <svg data="images/项目列表/u4861.svg" id="u12982_img" class="img generatedImage">
  2172. <g transform="matrix(1 0 0 1 -1 -122 )">
  2173. <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" />
  2174. </g>
  2175. </svg>
  2176. <div id="u12982_text" class="text " style="display:none; visibility: hidden">
  2177. <p></p>
  2178. </div>
  2179. </div>
  2180. <!-- Unnamed (Rectangle) -->
  2181. <div id="u12983" class="ax_default label transition">
  2182. <div id="u12983_div" class=""></div>
  2183. <div id="u12983_text" class="text ">
  2184. <p><span>房源住户认证</span></p>
  2185. </div>
  2186. </div>
  2187. <!-- Unnamed (Rectangle) -->
  2188. <div id="u12984" class="ax_default label transition">
  2189. <div id="u12984_div" class=""></div>
  2190. <div id="u12984_text" class="text ">
  2191. <p><span>入驻企业认证</span></p>
  2192. </div>
  2193. </div>
  2194. <!-- Unnamed (Rectangle) -->
  2195. <div id="u12985" class="ax_default label transition">
  2196. <div id="u12985_div" class=""></div>
  2197. <div id="u12985_text" class="text ">
  2198. <p><span>人员档案</span></p>
  2199. </div>
  2200. </div>
  2201. <!-- Unnamed (Rectangle) -->
  2202. <div id="u12986" class="ax_default label transition">
  2203. <div id="u12986_div" class=""></div>
  2204. <div id="u12986_text" class="text ">
  2205. <p><span>客户档案</span></p>
  2206. </div>
  2207. </div>
  2208. <!-- Unnamed (Line) -->
  2209. <div id="u12987" class="ax_default line1 transition">
  2210. <svg data="images/项目列表/u4861.svg" id="u12987_img" class="img generatedImage">
  2211. <g transform="matrix(1 0 0 1 -1 -122 )">
  2212. <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" />
  2213. </g>
  2214. </svg>
  2215. <div id="u12987_text" class="text " style="display:none; visibility: hidden">
  2216. <p></p>
  2217. </div>
  2218. </div>
  2219. <!-- Unnamed (Rectangle) -->
  2220. <div id="u12988" class="ax_default label transition">
  2221. <div id="u12988_div" class=""></div>
  2222. <div id="u12988_text" class="text ">
  2223. <p><span>机构档案</span></p>
  2224. </div>
  2225. </div>
  2226. <!-- Unnamed (Rectangle) -->
  2227. <div id="u12989" class="ax_default label transition">
  2228. <div id="u12989_div" class=""></div>
  2229. <div id="u12989_text" class="text ">
  2230. <p><span>物业人员认证</span></p>
  2231. </div>
  2232. </div>
  2233. <!-- Unnamed (Rectangle) -->
  2234. <div id="u12990" class="ax_default label transition">
  2235. <div id="u12990_div" class=""></div>
  2236. <div id="u12990_text" class="text ">
  2237. <p><span>业主委员会</span></p>
  2238. </div>
  2239. </div>
  2240. <!-- Unnamed (Rectangle) -->
  2241. <div id="u12991" class="ax_default label transition">
  2242. <div id="u12991_div" class=""></div>
  2243. <div id="u12991_text" class="text ">
  2244. <p><span>车位业主认证</span></p>
  2245. </div>
  2246. </div>
  2247. <!-- Unnamed (Rectangle) -->
  2248. <div id="u12992" class="ax_default label transition">
  2249. <div id="u12992_div" class=""></div>
  2250. <div id="u12992_text" class="text ">
  2251. <p><span>物业员工</span></p>
  2252. </div>
  2253. </div>
  2254. <!-- Unnamed (Rectangle) -->
  2255. <div id="u12993" class="ax_default label transition">
  2256. <div id="u12993_div" class=""></div>
  2257. <div id="u12993_text" class="text ">
  2258. <p><span>骑手快递员</span></p>
  2259. </div>
  2260. </div>
  2261. <!-- Unnamed (Rectangle) -->
  2262. <div id="u12994" class="ax_default label transition">
  2263. <div id="u12994_div" class=""></div>
  2264. <div id="u12994_text" class="text ">
  2265. <p><span>装修工人</span></p>
  2266. </div>
  2267. </div>
  2268. <!-- Unnamed (Rectangle) -->
  2269. <div id="u12995" class="ax_default label transition">
  2270. <div id="u12995_div" class=""></div>
  2271. <div id="u12995_text" class="text ">
  2272. <p><span>临时登记人员</span></p>
  2273. </div>
  2274. </div>
  2275. <!-- Unnamed (Line) -->
  2276. <div id="u12996" class="ax_default line1 transition">
  2277. <svg data="images/项目列表/u4861.svg" id="u12996_img" class="img generatedImage">
  2278. <g transform="matrix(1 0 0 1 -1 -122 )">
  2279. <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" />
  2280. </g>
  2281. </svg>
  2282. <div id="u12996_text" class="text " style="display:none; visibility: hidden">
  2283. <p></p>
  2284. </div>
  2285. </div>
  2286. </div>
  2287. </div>
  2288. <!-- Unnamed (Group) -->
  2289. <div id="u12997" class="ax_default" data-left="1311" data-top="199" data-width="140" data-height="30" layer-opacity="1">
  2290. <!-- Unnamed (Rectangle) -->
  2291. <div id="u12998" class="ax_default shape transition">
  2292. <div id="u12998_div" class=""></div>
  2293. <div id="u12998_text" class="text " style="display:none; visibility: hidden">
  2294. <p></p>
  2295. </div>
  2296. </div>
  2297. <!-- 选项内容 (Text field) -->
  2298. <div id="u12999" class="ax_default text_field transition" data-label="选项内容">
  2299. <div id="u12999_div" class=""></div>
  2300. <input id="u12999_input" type="text" value="" class="u12999_input"/>
  2301. </div>
  2302. </div>
  2303. <!-- Unnamed (Rectangle) -->
  2304. <div id="u13000" class="ax_default paragraph transition">
  2305. <div id="u13000_div" class=""></div>
  2306. <div id="u13000_text" class="text ">
  2307. <p><span>此处登记项目房屋的相关人员,包含房源业主、租客、住户等人员信息。人员身份类型、人员默认通行权限,请前往「设置」配置。</span></p>
  2308. </div>
  2309. </div>
  2310. <!-- Unnamed (Group) -->
  2311. <div id="u13001" class="ax_default" data-left="1110" data-top="523" data-width="380" data-height="160" layer-opacity="1">
  2312. <!-- Unnamed (Group) -->
  2313. <div id="u13002" class="ax_default" data-left="1110" data-top="523" data-width="380" data-height="160" layer-opacity="1">
  2314. <!-- Unnamed (Rectangle) -->
  2315. <div id="u13003" class="ax_default shape transition">
  2316. <div id="u13003_div" class=""></div>
  2317. <div id="u13003_text" class="text " style="display:none; visibility: hidden">
  2318. <p></p>
  2319. </div>
  2320. </div>
  2321. <!-- Unnamed (Rectangle) -->
  2322. <div id="u13004" class="ax_default paragraph transition">
  2323. <div id="u13004_div" class=""></div>
  2324. <div id="u13004_text" class="text ">
  2325. <p><span>确定移除房屋住户?</span></p>
  2326. </div>
  2327. </div>
  2328. <!-- Unnamed (Rectangle) -->
  2329. <div id="u13005" class="ax_default shape transition">
  2330. <div id="u13005_div" class=""></div>
  2331. <div id="u13005_text" class="text ">
  2332. <p><span>确定</span></p>
  2333. </div>
  2334. </div>
  2335. <!-- Unnamed (Shape) -->
  2336. <div id="u13006" class="ax_default icon transition">
  2337. <svg data="images/项目列表/u4791.svg" id="u13006_img" class="img generatedImage">
  2338. <defs>
  2339. <pattern id="u13006_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2340. <mask fill="white" id="u13006_img_cl2936">
  2341. <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" />
  2342. </mask>
  2343. </defs>
  2344. <g transform="matrix(1 0 0 1 -1661 -842 )">
  2345. <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" />
  2346. <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(#u13006_img_cl2936)" />
  2347. <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(#u13006_img_cl2936)" />
  2348. <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(#u13006_img_cl2936)" />
  2349. </g>
  2350. </svg>
  2351. <div id="u13006_text" class="text " style="display:none; visibility: hidden">
  2352. <p></p>
  2353. </div>
  2354. </div>
  2355. <!-- Unnamed (Rectangle) -->
  2356. <div id="u13007" class="ax_default paragraph transition">
  2357. <div id="u13007_div" class=""></div>
  2358. <div id="u13007_text" class="text ">
  2359. <p><span>移除之后,人员将移除相关通行权限,且认证微信账号将同步失效。</span></p>
  2360. </div>
  2361. </div>
  2362. <!-- Unnamed (Rectangle) -->
  2363. <div id="u13008" class="ax_default shape transition">
  2364. <div id="u13008_div" class=""></div>
  2365. <div id="u13008_text" class="text ">
  2366. <p><span>取 消</span></p>
  2367. </div>
  2368. </div>
  2369. </div>
  2370. </div>
  2371. <!-- Unnamed (Group) -->
  2372. <div id="u13009" class="ax_default" data-left="1110" data-top="705" data-width="380" data-height="160" layer-opacity="1">
  2373. <!-- Unnamed (Group) -->
  2374. <div id="u13010" class="ax_default" data-left="1110" data-top="705" data-width="380" data-height="160" layer-opacity="1">
  2375. <!-- Unnamed (Rectangle) -->
  2376. <div id="u13011" class="ax_default shape transition">
  2377. <div id="u13011_div" class=""></div>
  2378. <div id="u13011_text" class="text " style="display:none; visibility: hidden">
  2379. <p></p>
  2380. </div>
  2381. </div>
  2382. <!-- Unnamed (Rectangle) -->
  2383. <div id="u13012" class="ax_default paragraph transition">
  2384. <div id="u13012_div" class=""></div>
  2385. <div id="u13012_text" class="text ">
  2386. <p><span>移除失败!</span></p>
  2387. </div>
  2388. </div>
  2389. <!-- Unnamed (Rectangle) -->
  2390. <div id="u13013" class="ax_default shape transition">
  2391. <div id="u13013_div" class=""></div>
  2392. <div id="u13013_text" class="text ">
  2393. <p><span>确定</span></p>
  2394. </div>
  2395. </div>
  2396. <!-- Unnamed (Rectangle) -->
  2397. <div id="u13014" class="ax_default paragraph transition">
  2398. <div id="u13014_div" class=""></div>
  2399. <div id="u13014_text" class="text ">
  2400. <p><span>当前住户存在该房屋未完结账单,请先完成缴费或账单出来。</span></p>
  2401. </div>
  2402. </div>
  2403. <!-- Unnamed (Shape) -->
  2404. <div id="u13015" class="ax_default icon transition">
  2405. <svg data="images/项目列表/u4777.svg" id="u13015_img" class="img generatedImage">
  2406. <defs>
  2407. <pattern id="u13015_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2408. <mask fill="white" id="u13015_img_cl2935">
  2409. <path d="M 14.713541666666668 13.541666666666664 C 14.878472222222223 13.37673611111111 14.9609375 13.177083333333336 14.9609375 12.942708333333336 C 14.9609375 12.71701388888889 14.878472222222223 12.52170138888889 14.713541666666668 12.356770833333336 L 12.356770833333332 10 L 14.713541666666668 7.643229166666668 C 14.878472222222223 7.478298611111109 14.9609375 7.282986111111109 14.9609375 7.057291666666668 C 14.9609375 6.822916666666668 14.878472222222223 6.623263888888886 14.713541666666668 6.458333333333332 L 13.541666666666668 5.286458333333332 C 13.376736111111114 5.121527777777777 13.177083333333332 5.0390625 12.942708333333332 5.0390625 C 12.717013888888891 5.0390625 12.521701388888891 5.121527777777777 12.356770833333332 5.286458333333332 L 10 7.643229166666668 L 7.643229166666666 5.286458333333332 C 7.478298611111112 5.121527777777777 7.282986111111112 5.0390625 7.057291666666666 5.0390625 C 6.822916666666666 5.0390625 6.623263888888889 5.121527777777777 6.458333333333334 5.286458333333332 L 5.286458333333334 6.458333333333332 C 5.121527777777778 6.623263888888886 5.039062500000001 6.822916666666668 5.0390625 7.057291666666668 C 5.039062500000001 7.282986111111109 5.121527777777778 7.478298611111109 5.286458333333334 7.643229166666668 L 7.643229166666666 10 L 5.286458333333334 12.356770833333336 C 5.121527777777778 12.52170138888889 5.039062500000001 12.71701388888889 5.0390625 12.942708333333336 C 5.039062500000001 13.177083333333336 5.121527777777778 13.37673611111111 5.286458333333334 13.541666666666664 L 6.458333333333334 14.713541666666664 C 6.623263888888889 14.878472222222218 6.822916666666666 14.9609375 7.057291666666666 14.9609375 C 7.282986111111112 14.9609375 7.478298611111112 14.878472222222218 7.643229166666666 14.713541666666664 L 10 12.356770833333336 L 12.356770833333332 14.713541666666664 C 12.521701388888891 14.878472222222218 12.717013888888891 14.9609375 12.942708333333332 14.9609375 C 13.177083333333332 14.9609375 13.376736111111114 14.878472222222218 13.541666666666668 14.713541666666664 L 14.713541666666668 13.541666666666664 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" />
  2410. </mask>
  2411. </defs>
  2412. <g transform="matrix(1 0 0 1 -2062 -389 )">
  2413. <path d="M 14.713541666666668 13.541666666666664 C 14.878472222222223 13.37673611111111 14.9609375 13.177083333333336 14.9609375 12.942708333333336 C 14.9609375 12.71701388888889 14.878472222222223 12.52170138888889 14.713541666666668 12.356770833333336 L 12.356770833333332 10 L 14.713541666666668 7.643229166666668 C 14.878472222222223 7.478298611111109 14.9609375 7.282986111111109 14.9609375 7.057291666666668 C 14.9609375 6.822916666666668 14.878472222222223 6.623263888888886 14.713541666666668 6.458333333333332 L 13.541666666666668 5.286458333333332 C 13.376736111111114 5.121527777777777 13.177083333333332 5.0390625 12.942708333333332 5.0390625 C 12.717013888888891 5.0390625 12.521701388888891 5.121527777777777 12.356770833333332 5.286458333333332 L 10 7.643229166666668 L 7.643229166666666 5.286458333333332 C 7.478298611111112 5.121527777777777 7.282986111111112 5.0390625 7.057291666666666 5.0390625 C 6.822916666666666 5.0390625 6.623263888888889 5.121527777777777 6.458333333333334 5.286458333333332 L 5.286458333333334 6.458333333333332 C 5.121527777777778 6.623263888888886 5.039062500000001 6.822916666666668 5.0390625 7.057291666666668 C 5.039062500000001 7.282986111111109 5.121527777777778 7.478298611111109 5.286458333333334 7.643229166666668 L 7.643229166666666 10 L 5.286458333333334 12.356770833333336 C 5.121527777777778 12.52170138888889 5.039062500000001 12.71701388888889 5.0390625 12.942708333333336 C 5.039062500000001 13.177083333333336 5.121527777777778 13.37673611111111 5.286458333333334 13.541666666666664 L 6.458333333333334 14.713541666666664 C 6.623263888888889 14.878472222222218 6.822916666666666 14.9609375 7.057291666666666 14.9609375 C 7.282986111111112 14.9609375 7.478298611111112 14.878472222222218 7.643229166666666 14.713541666666664 L 10 12.356770833333336 L 12.356770833333332 14.713541666666664 C 12.521701388888891 14.878472222222218 12.717013888888891 14.9609375 12.942708333333332 14.9609375 C 13.177083333333332 14.9609375 13.376736111111114 14.878472222222218 13.541666666666668 14.713541666666664 L 14.713541666666668 13.541666666666664 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(217, 0, 27, 1)" stroke="none" transform="matrix(1 0 0 1 2062 389 )" class="fill" />
  2414. <path d="M 14.713541666666668 13.541666666666664 C 14.878472222222223 13.37673611111111 14.9609375 13.177083333333336 14.9609375 12.942708333333336 C 14.9609375 12.71701388888889 14.878472222222223 12.52170138888889 14.713541666666668 12.356770833333336 L 12.356770833333332 10 L 14.713541666666668 7.643229166666668 C 14.878472222222223 7.478298611111109 14.9609375 7.282986111111109 14.9609375 7.057291666666668 C 14.9609375 6.822916666666668 14.878472222222223 6.623263888888886 14.713541666666668 6.458333333333332 L 13.541666666666668 5.286458333333332 C 13.376736111111114 5.121527777777777 13.177083333333332 5.0390625 12.942708333333332 5.0390625 C 12.717013888888891 5.0390625 12.521701388888891 5.121527777777777 12.356770833333332 5.286458333333332 L 10 7.643229166666668 L 7.643229166666666 5.286458333333332 C 7.478298611111112 5.121527777777777 7.282986111111112 5.0390625 7.057291666666666 5.0390625 C 6.822916666666666 5.0390625 6.623263888888889 5.121527777777777 6.458333333333334 5.286458333333332 L 5.286458333333334 6.458333333333332 C 5.121527777777778 6.623263888888886 5.039062500000001 6.822916666666668 5.0390625 7.057291666666668 C 5.039062500000001 7.282986111111109 5.121527777777778 7.478298611111109 5.286458333333334 7.643229166666668 L 7.643229166666666 10 L 5.286458333333334 12.356770833333336 C 5.121527777777778 12.52170138888889 5.039062500000001 12.71701388888889 5.0390625 12.942708333333336 C 5.039062500000001 13.177083333333336 5.121527777777778 13.37673611111111 5.286458333333334 13.541666666666664 L 6.458333333333334 14.713541666666664 C 6.623263888888889 14.878472222222218 6.822916666666666 14.9609375 7.057291666666666 14.9609375 C 7.282986111111112 14.9609375 7.478298611111112 14.878472222222218 7.643229166666666 14.713541666666664 L 10 12.356770833333336 L 12.356770833333332 14.713541666666664 C 12.521701388888891 14.878472222222218 12.717013888888891 14.9609375 12.942708333333332 14.9609375 C 13.177083333333332 14.9609375 13.376736111111114 14.878472222222218 13.541666666666668 14.713541666666664 L 14.713541666666668 13.541666666666664 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 2062 389 )" class="stroke" mask="url(#u13015_img_cl2935)" />
  2415. <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 2062 389 )" class="stroke" mask="url(#u13015_img_cl2935)" />
  2416. </g>
  2417. </svg>
  2418. <div id="u13015_text" class="text " style="display:none; visibility: hidden">
  2419. <p></p>
  2420. </div>
  2421. </div>
  2422. </div>
  2423. </div>
  2424. <!-- Unnamed (Rectangle) -->
  2425. <div id="u13016" class="ax_default box_1 transition">
  2426. <div id="u13016_div" class=""></div>
  2427. <div id="u13016_text" class="text ">
  2428. <p><span>添加</span></p>
  2429. </div>
  2430. </div>
  2431. <!-- Unnamed (Rectangle) -->
  2432. <div id="u13017" class="ax_default box_1 transition">
  2433. <div id="u13017_div" class=""></div>
  2434. <div id="u13017_text" class="text ">
  2435. <p><span>导出</span></p>
  2436. </div>
  2437. </div>
  2438. <!-- Unnamed (Rectangle) -->
  2439. <div id="u13018" class="ax_default box_1 transition">
  2440. <div id="u13018_div" class=""></div>
  2441. <div id="u13018_text" class="text ">
  2442. <p><span>导入</span></p>
  2443. </div>
  2444. </div>
  2445. <!-- Unnamed (Rectangle) -->
  2446. <div id="u13019" class="ax_default box_1 transition">
  2447. <div id="u13019_div" class=""></div>
  2448. <div id="u13019_text" class="text ">
  2449. <p><span style="text-decoration:underline ;">已认证微信用户</span></p>
  2450. </div>
  2451. </div>
  2452. <!-- Unnamed (Group) -->
  2453. <div id="u13020" class="ax_default" data-left="1161" data-top="240" data-width="130" data-height="30" layer-opacity="1">
  2454. <!-- Unnamed (Rectangle) -->
  2455. <div id="u13021" class="ax_default box_1 transition">
  2456. <div id="u13021_div" class=""></div>
  2457. <div id="u13021_text" class="text ">
  2458. <p><span>搜索</span></p>
  2459. </div>
  2460. </div>
  2461. <!-- Unnamed (Rectangle) -->
  2462. <div id="u13022" class="ax_default box_1 transition">
  2463. <div id="u13022_div" class=""></div>
  2464. <div id="u13022_text" class="text ">
  2465. <p><span>重置</span></p>
  2466. </div>
  2467. </div>
  2468. </div>
  2469. <!-- Unnamed (Group) -->
  2470. <div id="u13023" class="ax_default" data-left="711" data-top="199" data-width="140" data-height="30" layer-opacity="1">
  2471. <!-- Unnamed (Rectangle) -->
  2472. <div id="u13024" class="ax_default box_1 transition">
  2473. <div id="u13024_div" class=""></div>
  2474. <div id="u13024_text" class="text " style="display:none; visibility: hidden">
  2475. <p></p>
  2476. </div>
  2477. </div>
  2478. <!-- Unnamed (Droplist) -->
  2479. <div id="u13025" class="ax_default droplist transition">
  2480. <div id="u13025_div" class=""></div>
  2481. <select id="u13025_input" class="u13025_input">
  2482. <option class="u13025_input_option" value="楼栋">楼栋</option>
  2483. </select>
  2484. </div>
  2485. </div>
  2486. <!-- Unnamed (Group) -->
  2487. <div id="u13026" class="ax_default" data-left="1011" data-top="239" data-width="140" data-height="30" layer-opacity="1">
  2488. <!-- Unnamed (Rectangle) -->
  2489. <div id="u13027" class="ax_default shape transition">
  2490. <div id="u13027_div" class=""></div>
  2491. <div id="u13027_text" class="text " style="display:none; visibility: hidden">
  2492. <p></p>
  2493. </div>
  2494. </div>
  2495. <!-- 选项内容 (Text field) -->
  2496. <div id="u13028" class="ax_default text_field transition" data-label="选项内容">
  2497. <div id="u13028_div" class=""></div>
  2498. <input id="u13028_input" type="text" value="" class="u13028_input"/>
  2499. </div>
  2500. </div>
  2501. <!-- Unnamed (Group) -->
  2502. <div id="u13029" class="ax_default" data-left="563" data-top="199" data-width="140" data-height="30" layer-opacity="1">
  2503. <!-- Unnamed (Rectangle) -->
  2504. <div id="u13030" class="ax_default box_1 transition">
  2505. <div id="u13030_div" class=""></div>
  2506. <div id="u13030_text" class="text " style="display:none; visibility: hidden">
  2507. <p></p>
  2508. </div>
  2509. </div>
  2510. <!-- Unnamed (Droplist) -->
  2511. <div id="u13031" class="ax_default droplist transition">
  2512. <div id="u13031_div" class=""></div>
  2513. <select id="u13031_input" class="u13031_input">
  2514. <option class="u13031_input_option" value="项目">项目</option>
  2515. </select>
  2516. </div>
  2517. </div>
  2518. <!-- Unnamed (Group) -->
  2519. <div id="u13032" class="ax_default" data-left="861" data-top="199" data-width="140" data-height="30" layer-opacity="1">
  2520. <!-- Unnamed (Rectangle) -->
  2521. <div id="u13033" class="ax_default box_1 transition">
  2522. <div id="u13033_div" class=""></div>
  2523. <div id="u13033_text" class="text " style="display:none; visibility: hidden">
  2524. <p></p>
  2525. </div>
  2526. </div>
  2527. <!-- Unnamed (Droplist) -->
  2528. <div id="u13034" class="ax_default droplist transition">
  2529. <div id="u13034_div" class=""></div>
  2530. <select id="u13034_input" class="u13034_input">
  2531. <option class="u13034_input_option" value="单元">单元</option>
  2532. </select>
  2533. </div>
  2534. </div>
  2535. <!-- Unnamed (Group) -->
  2536. <div id="u13035" class="ax_default" data-left="1011" data-top="199" data-width="140" data-height="30" layer-opacity="1">
  2537. <!-- Unnamed (Rectangle) -->
  2538. <div id="u13036" class="ax_default box_1 transition">
  2539. <div id="u13036_div" class=""></div>
  2540. <div id="u13036_text" class="text " style="display:none; visibility: hidden">
  2541. <p></p>
  2542. </div>
  2543. </div>
  2544. <!-- Unnamed (Droplist) -->
  2545. <div id="u13037" class="ax_default droplist transition">
  2546. <div id="u13037_div" class=""></div>
  2547. <select id="u13037_input" class="u13037_input">
  2548. <option class="u13037_input_option" value="房屋">房屋</option>
  2549. </select>
  2550. </div>
  2551. </div>
  2552. <!-- 需求更新记录 (Dynamic panel) -->
  2553. <div id="u13038" class="ax_default" data-label="需求更新记录">
  2554. <div id="u13038_state0" class="panel_state" data-label="V1.1" style="">
  2555. <div id="u13038_state0_content" class="panel_state_content">
  2556. <!-- Unnamed (Line) -->
  2557. <div id="u13039" class="ax_default line1 transition">
  2558. <svg data="images/房屋住户/u13039.svg" id="u13039_img" class="img generatedImage">
  2559. <g transform="matrix(1 0 0 1 0 -43 )">
  2560. <path d="M 0 0.5 L 1000 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 43 )" class="stroke" />
  2561. </g>
  2562. </svg>
  2563. <div id="u13039_text" class="text " style="display:none; visibility: hidden">
  2564. <p></p>
  2565. </div>
  2566. </div>
  2567. <!-- Unnamed (Group) -->
  2568. <div id="u13040" class="ax_default" data-left="28" data-top="7" data-width="38" data-height="43" layer-opacity="1">
  2569. <!-- Unnamed (Ellipse) -->
  2570. <div id="u13041" class="ax_default ellipse transition">
  2571. <svg data="images/房屋住户/u13041.svg" id="u13041_img" class="img generatedImage">
  2572. <defs>
  2573. <pattern id="u13041_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2574. <mask fill="white" id="u13041_img_cl3517">
  2575. <path d="M 0 6.5 C 0 2.8599999999999994 2.8599999999999994 0 6.5 0 C 10.14 0 13 2.8599999999999994 13 6.5 C 13 10.14 10.14 13 6.5 13 C 2.8599999999999994 13 0 10.14 0 6.5 Z " fill-rule="evenodd" />
  2576. </mask>
  2577. </defs>
  2578. <g transform="matrix(1 0 0 1 -40 -37 )">
  2579. <path d="M 0 6.5 C 0 2.8599999999999994 2.8599999999999994 0 6.5 0 C 10.14 0 13 2.8599999999999994 13 6.5 C 13 10.14 10.14 13 6.5 13 C 2.8599999999999994 13 0 10.14 0 6.5 Z " fill-rule="nonzero" fill="rgba(0, 170, 170, 1)" stroke="none" transform="matrix(1 0 0 1 40 37 )" class="fill" />
  2580. <path d="M 0 6.5 C 0 2.8599999999999994 2.8599999999999994 0 6.5 0 C 10.14 0 13 2.8599999999999994 13 6.5 C 13 10.14 10.14 13 6.5 13 C 2.8599999999999994 13 0 10.14 0 6.5 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 40 37 )" class="stroke" mask="url(#u13041_img_cl3517)" />
  2581. </g>
  2582. </svg>
  2583. <div id="u13041_text" class="text " style="display:none; visibility: hidden">
  2584. <p></p>
  2585. </div>
  2586. </div>
  2587. <!-- Unnamed (Rectangle) -->
  2588. <div id="u13042" class="ax_default heading_1 transition">
  2589. <div id="u13042_div" class=""></div>
  2590. <div id="u13042_text" class="text ">
  2591. <p><span>V1.1</span></p>
  2592. </div>
  2593. </div>
  2594. </div>
  2595. <!-- Unnamed (Tree) -->
  2596. <div id="u13043" class="ax_default tree_node1 treeroot">
  2597. <div id="u13043_children" class="u13043_children">
  2598. <!-- Unnamed (Tree node) -->
  2599. <div id="u13044" class="ax_default tree_node1 treenode">
  2600. <!-- Unnamed (Image) -->
  2601. <div id="u13045" class="ax_default image1 transition">
  2602. <img id="u13045_img" class="img " src="images/设备监测/u7422_selected.png"/>
  2603. <div id="u13045_text" class="text " style="display:none; visibility: hidden">
  2604. <p></p>
  2605. </div>
  2606. </div>
  2607. <!-- Unnamed (Rectangle) -->
  2608. <div id="u13046" class=" transition" selectiongroup="u13043_tree_group">
  2609. <div id="u13046_div" class=""></div>
  2610. <div id="u13046_text" class="text ">
  2611. <p><span>1、房屋导航显示格式</span></p>
  2612. </div>
  2613. </div>
  2614. <div id="u13044_children" class="u13044_children">
  2615. <!-- Unnamed (Tree node) -->
  2616. <div id="u13047" class="ax_default tree_node1 treenode">
  2617. <!-- Unnamed (Rectangle) -->
  2618. <div id="u13048" class=" transition" selectiongroup="u13043_tree_group">
  2619. <div id="u13048_div" class=""></div>
  2620. <div id="u13048_text" class="text ">
  2621. <p><span>1.1房屋树显示格式:1号楼01单元203室;根据空间&gt;楼栋、单元、房屋基础信息设置统一规范;当前房屋树不显示:楼层</span></p>
  2622. </div>
  2623. </div>
  2624. </div>
  2625. </div>
  2626. </div>
  2627. <!-- Unnamed (Tree node) -->
  2628. <div id="u13049" class="ax_default tree_node1 treenode">
  2629. <!-- Unnamed (Image) -->
  2630. <div id="u13050" class="ax_default image1 transition">
  2631. <img id="u13050_img" class="img " src="images/设备监测/u7422_selected.png"/>
  2632. <div id="u13050_text" class="text " style="display:none; visibility: hidden">
  2633. <p></p>
  2634. </div>
  2635. </div>
  2636. <!-- Unnamed (Rectangle) -->
  2637. <div id="u13051" class=" transition" selectiongroup="u13043_tree_group">
  2638. <div id="u13051_div" class=""></div>
  2639. <div id="u13051_text" class="text ">
  2640. <p><span>2、查询模块</span></p>
  2641. </div>
  2642. </div>
  2643. <div id="u13049_children" class="u13049_children">
  2644. <!-- Unnamed (Tree node) -->
  2645. <div id="u13052" class="ax_default tree_node1 treenode">
  2646. <!-- Unnamed (Rectangle) -->
  2647. <div id="u13053" class=" transition" selectiongroup="u13043_tree_group">
  2648. <div id="u13053_div" class=""></div>
  2649. <div id="u13053_text" class="text ">
  2650. <p><span>查询字段根据原型调整</span></p>
  2651. </div>
  2652. </div>
  2653. </div>
  2654. </div>
  2655. </div>
  2656. <!-- Unnamed (Tree node) -->
  2657. <div id="u13054" class="ax_default tree_node1 treenode">
  2658. <!-- Unnamed (Image) -->
  2659. <div id="u13055" class="ax_default image1 transition">
  2660. <img id="u13055_img" class="img " src="images/设备监测/u7422_selected.png"/>
  2661. <div id="u13055_text" class="text " style="display:none; visibility: hidden">
  2662. <p></p>
  2663. </div>
  2664. </div>
  2665. <!-- Unnamed (Rectangle) -->
  2666. <div id="u13056" class=" transition" selectiongroup="u13043_tree_group">
  2667. <div id="u13056_div" class=""></div>
  2668. <div id="u13056_text" class="text ">
  2669. <p><span>3、列表模块</span></p>
  2670. </div>
  2671. </div>
  2672. <div id="u13054_children" class="u13054_children">
  2673. <!-- Unnamed (Tree node) -->
  2674. <div id="u13057" class="ax_default tree_node1 treenode">
  2675. <!-- Unnamed (Rectangle) -->
  2676. <div id="u13058" class=" transition" selectiongroup="u13043_tree_group">
  2677. <div id="u13058_div" class=""></div>
  2678. <div id="u13058_text" class="text ">
  2679. <p><span>3.1列表字段根据原型调整</span></p>
  2680. </div>
  2681. </div>
  2682. </div>
  2683. <!-- Unnamed (Tree node) -->
  2684. <div id="u13059" class="ax_default tree_node1 treenode">
  2685. <!-- Unnamed (Rectangle) -->
  2686. <div id="u13060" class=" transition" selectiongroup="u13043_tree_group">
  2687. <div id="u13060_div" class=""></div>
  2688. <div id="u13060_text" class="text ">
  2689. <p><span>3.2业主身份的记录,操作不显示「更多」,在房屋住户列表,不支持移除业主和编辑业主信息;需到房源业主模块设置/编辑</span></p>
  2690. </div>
  2691. </div>
  2692. </div>
  2693. <!-- Unnamed (Tree node) -->
  2694. <div id="u13061" class="ax_default tree_node1 treenode">
  2695. <!-- Unnamed (Rectangle) -->
  2696. <div id="u13062" class=" transition" selectiongroup="u13043_tree_group">
  2697. <div id="u13062_div" class=""></div>
  2698. <div id="u13062_text" class="text ">
  2699. <p><span>3.3添加房源住户时,去掉人员身份为“业主”的选择;业主若为房源住户,在房屋业主列表进行开启/关闭设置。</span></p>
  2700. </div>
  2701. </div>
  2702. </div>
  2703. </div>
  2704. </div>
  2705. <!-- Unnamed (Tree node) -->
  2706. <div id="u13063" class="ax_default tree_node1 treenode">
  2707. <!-- Unnamed (Image) -->
  2708. <div id="u13064" class="ax_default image1 transition">
  2709. <img id="u13064_img" class="img " src="images/设备监测/u7422_selected.png"/>
  2710. <div id="u13064_text" class="text " style="display:none; visibility: hidden">
  2711. <p></p>
  2712. </div>
  2713. </div>
  2714. <!-- Unnamed (Rectangle) -->
  2715. <div id="u13065" class=" transition" selectiongroup="u13043_tree_group">
  2716. <div id="u13065_div" class=""></div>
  2717. <div id="u13065_text" class="text ">
  2718. <p><span>4、已认证微信用户</span></p>
  2719. </div>
  2720. </div>
  2721. <div id="u13063_children" class="u13063_children">
  2722. <!-- Unnamed (Tree node) -->
  2723. <div id="u13066" class="ax_default tree_node1 treenode">
  2724. <!-- Unnamed (Rectangle) -->
  2725. <div id="u13067" class=" transition" selectiongroup="u13043_tree_group">
  2726. <div id="u13067_div" class=""></div>
  2727. <div id="u13067_text" class="text ">
  2728. <p><span>4.1点击「已认证微信用户」,查看当前项目所有房屋住户人员,在微信小程序已完成房屋认证的用户信息。</span></p>
  2729. </div>
  2730. </div>
  2731. </div>
  2732. <!-- Unnamed (Tree node) -->
  2733. <div id="u13068" class="ax_default tree_node1 treenode">
  2734. <!-- Unnamed (Rectangle) -->
  2735. <div id="u13069" class=" transition" selectiongroup="u13043_tree_group">
  2736. <div id="u13069_div" class=""></div>
  2737. <div id="u13069_text" class="text ">
  2738. <p><span>4.2物业在管理后台,支持移除处理已认证微信用户;移除之后,认证关系失效。小程序端用户&gt;我的房屋状态失效。</span></p>
  2739. </div>
  2740. </div>
  2741. </div>
  2742. </div>
  2743. </div>
  2744. </div>
  2745. </div>
  2746. </div>
  2747. </div>
  2748. </div>
  2749. </div>
  2750. <script src="resources/scripts/axure/ios.js"></script>
  2751. </body>
  2752. </html>