123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>房屋住户</title>
- <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
- <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
- <link href="resources/css/axure_rp_page.css" type="text/css" rel="stylesheet"/>
- <link href="data/styles.css" type="text/css" rel="stylesheet"/>
- <link href="files/房屋住户/styles.css" type="text/css" rel="stylesheet"/>
- <link href="https://fonts.googleapis.com" rel="preconnect"/>
- <link href="https://fonts.gstatic.com" rel="preconnect"/>
- <link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet"/>
- <script src="resources/scripts/jquery-3.7.1.min.js"></script>
- <script src="resources/scripts/axure/axQuery.js"></script>
- <script src="resources/scripts/axure/globals.js"></script>
- <script src="resources/scripts/axutils.js"></script>
- <script src="resources/scripts/axure/annotation.js"></script>
- <script src="resources/scripts/axure/axQuery.std.js"></script>
- <script src="resources/scripts/axure/doc.js"></script>
- <script src="resources/scripts/messagecenter.js"></script>
- <script src="resources/scripts/axure/events.js"></script>
- <script src="resources/scripts/axure/recording.js"></script>
- <script src="resources/scripts/axure/action.js"></script>
- <script src="resources/scripts/axure/expr.js"></script>
- <script src="resources/scripts/axure/geometry.js"></script>
- <script src="resources/scripts/axure/flyout.js"></script>
- <script src="resources/scripts/axure/model.js"></script>
- <script src="resources/scripts/axure/repeater.js"></script>
- <script src="resources/scripts/axure/sto.js"></script>
- <script src="resources/scripts/axure/utils.temp.js"></script>
- <script src="resources/scripts/axure/variables.js"></script>
- <script src="resources/scripts/axure/drag.js"></script>
- <script src="resources/scripts/axure/move.js"></script>
- <script src="resources/scripts/axure/visibility.js"></script>
- <script src="resources/scripts/axure/style.js"></script>
- <script src="resources/scripts/axure/adaptive.js"></script>
- <script src="resources/scripts/axure/tree.js"></script>
- <script src="resources/scripts/axure/init.temp.js"></script>
- <script src="resources/scripts/axure/legacy.js"></script>
- <script src="resources/scripts/axure/viewer.js"></script>
- <script src="resources/scripts/axure/math.js"></script>
- <script src="resources/scripts/axure/jquery.nicescroll.min.js"></script>
- <script src="data/document.js"></script>
- <script src="files/房屋住户/data.js"></script>
- <script type="text/javascript">
- $axure.utils.getTransparentGifPath = function() { return 'resources/images/transparent.gif'; };
- $axure.utils.getOtherPath = function() { return 'resources/Other.html'; };
- $axure.utils.getReloadPath = function() { return 'resources/reload.html'; };
- </script>
- </head>
- <body>
- <div id="base" class="">
- <!-- Unnamed (客户管理端-一级) -->
- <div id="u12736" class="nopointer ax_default">
- <!-- Unnamed (Rectangle) -->
- <div id="u12737" class="ax_default box_2 transition">
- <div id="u12737_div" class=""></div>
- <div id="u12737_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12738" class="ax_default label transition">
- <div id="u12738_div" class=""></div>
- <div id="u12738_text" class="text ">
- <p><span>课后延时慧学平台</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12739" class="ax_default box_2 transition">
- <div id="u12739_div" class=""></div>
- <div id="u12739_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12740" class="ax_default" data-left="19" data-top="10" data-width="204" data-height="31" layer-opacity="1">
- <!-- Unnamed (Ellipse) -->
- <div id="u12741" class="ax_default ellipse transition">
- <svg data="images/pc网页端/u5.svg" id="u12741_img" class="img generatedImage">
- <defs>
- <pattern id="u12741_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u12741_img_cl2539">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -19 -10 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u12741_text" class="text ">
- <p><span>logo</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12742" class="ax_default label transition">
- <div id="u12742_div" class=""></div>
- <div id="u12742_text" class="text ">
- <p><span>保利智慧社区管理平台</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12743" class="ax_default box_2 transition">
- <div id="u12743_div" class=""></div>
- <div id="u12743_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12744" class="ax_default" data-left="20" data-top="171" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12745" class="ax_default label transition">
- <div id="u12745_div" class=""></div>
- <div id="u12745_text" class="text ">
- <p><span>项目</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u12746" class="ax_default placeholder transition">
- <svg data="images/房屋住户/u12746.svg" id="u12746_img" class="img generatedImage">
- <defs>
- <pattern id="u12746_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u12746_img_cl3503">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -175 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u12746_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12747" class="ax_default" data-left="20" data-top="381" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12748" class="ax_default label transition">
- <div id="u12748_div" class=""></div>
- <div id="u12748_text" class="text ">
- <p><span>企业</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u12749" class="ax_default placeholder transition">
- <svg data="images/房屋住户/u12749.svg" id="u12749_img" class="img generatedImage">
- <defs>
- <pattern id="u12749_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u12749_img_cl3504">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -385 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u12749_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12750" class="ax_default" data-left="20" data-top="133" data-width="68" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12751" class="ax_default label transition">
- <div id="u12751_div" class=""></div>
- <div id="u12751_text" class="text ">
- <p><span>可视化</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u12752" class="ax_default placeholder transition">
- <svg data="images/房屋住户/u12752.svg" id="u12752_img" class="img generatedImage">
- <defs>
- <pattern id="u12752_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u12752_img_cl3505">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -137 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u12752_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12753" class="ax_default" data-left="20" data-top="423" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12754" class="ax_default label transition">
- <div id="u12754_div" class=""></div>
- <div id="u12754_text" class="text ">
- <p><span>标签</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u12755" class="ax_default placeholder transition">
- <svg data="images/房屋住户/u12755.svg" id="u12755_img" class="img generatedImage">
- <defs>
- <pattern id="u12755_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u12755_img_cl3506">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -427 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u12755_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12756" class="ax_default" data-left="20" data-top="297" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12757" class="ax_default label transition">
- <div id="u12757_div" class=""></div>
- <div id="u12757_text" class="text ">
- <p><span>财务</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u12758" class="ax_default placeholder transition">
- <svg data="images/房屋住户/u12758.svg" id="u12758_img" class="img generatedImage">
- <defs>
- <pattern id="u12758_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u12758_img_cl3507">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -301 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u12758_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12759" class="ax_default" data-left="20" data-top="213" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12760" class="ax_default label transition">
- <div id="u12760_div" class=""></div>
- <div id="u12760_text" class="text ">
- <p><span>空间</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u12761" class="ax_default placeholder transition">
- <svg data="images/房屋住户/u12761.svg" id="u12761_img" class="img generatedImage">
- <defs>
- <pattern id="u12761_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u12761_img_cl3508">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -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 217 )" class="fill" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u12761_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12762" class="ax_default" data-left="20" data-top="339" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12763" class="ax_default label transition">
- <div id="u12763_div" class=""></div>
- <div id="u12763_text" class="text ">
- <p><span>办公</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u12764" class="ax_default placeholder transition">
- <svg data="images/房屋住户/u12764.svg" id="u12764_img" class="img generatedImage">
- <defs>
- <pattern id="u12764_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u12764_img_cl3509">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -343 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u12764_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12765" class="ax_default" data-left="20" data-top="465" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12766" class="ax_default label transition">
- <div id="u12766_div" class=""></div>
- <div id="u12766_text" class="text ">
- <p><span>系统</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u12767" class="ax_default placeholder transition">
- <svg data="images/房屋住户/u12767.svg" id="u12767_img" class="img generatedImage">
- <defs>
- <pattern id="u12767_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u12767_img_cl3510">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -469 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u12767_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12768" class="ax_default" data-left="20" data-top="1144" data-width="61" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12769" class="ax_default label transition">
- <div id="u12769_div" class=""></div>
- <div id="u12769_text" class="text ">
- <p><span>消息</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u12770" class="ax_default placeholder transition">
- <svg data="images/房屋住户/u12770.svg" id="u12770_img" class="img generatedImage">
- <defs>
- <pattern id="u12770_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u12770_img_cl3511">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -1144 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u12770_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12771" class="ax_default" data-left="20" data-top="1186" data-width="61" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12772" class="ax_default label transition">
- <div id="u12772_div" class=""></div>
- <div id="u12772_text" class="text ">
- <p><span>设置</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u12773" class="ax_default placeholder transition">
- <svg data="images/房屋住户/u12773.svg" id="u12773_img" class="img generatedImage">
- <defs>
- <pattern id="u12773_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u12773_img_cl3512">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -1186 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u12773_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12774" class="ax_default" data-left="20" data-top="255" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12775" class="ax_default label transition">
- <div id="u12775_div" class=""></div>
- <div id="u12775_text" class="text ">
- <p><span>收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u12776" class="ax_default placeholder transition">
- <svg data="images/房屋住户/u12776.svg" id="u12776_img" class="img generatedImage">
- <defs>
- <pattern id="u12776_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u12776_img_cl3513">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -259 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u12776_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12777" class="ax_default" data-left="1194" data-top="11" data-width="386" data-height="27" layer-opacity="1">
- <!-- Unnamed (Droplist) -->
- <div id="u12778" class="ax_default droplist transition">
- <div id="u12778_div" class=""></div>
- <select id="u12778_input" class="u12778_input">
- <option class="u12778_input_option" value="西安中尚硕房地产开发有限公司">西安中尚硕房地产开发有限公司</option>
- </select>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u12779" class="ax_default placeholder transition">
- <svg data="images/房屋住户/u12779.svg" id="u12779_img" class="img generatedImage">
- <defs>
- <pattern id="u12779_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u12779_img_cl3514">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -1194 -14 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u12779_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12780" class="ax_default label transition">
- <div id="u12780_div" class=""></div>
- <div id="u12780_text" class="text ">
- <p><span>进入运营后台</span></p>
- </div>
- </div>
- <!-- Unnamed (Vertical line) -->
- <div id="u12781" class="ax_default line1 transition">
- <svg data="images/pc网页端/u45.svg" id="u12781_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -1452 -19 )">
- <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" />
- </g>
- </svg>
- <div id="u12781_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12782" class="ax_default" data-left="20" data-top="1081" data-width="61" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12783" class="ax_default label transition">
- <div id="u12783_div" class=""></div>
- <div id="u12783_text" class="text ">
- <p><span>应用</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u12784" class="ax_default placeholder transition">
- <svg data="images/房屋住户/u12784.svg" id="u12784_img" class="img generatedImage">
- <defs>
- <pattern id="u12784_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u12784_img_cl3515">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -1081 )">
- <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" />
- <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)" />
- <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" />
- </g>
- </svg>
- <div id="u12784_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u12785" class="ax_default line1 transition">
- <svg data="images/pc网页端/u49.svg" id="u12785_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -20 -1123 )">
- <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" />
- </g>
- </svg>
- <div id="u12785_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u12786" class="ax_default line1 transition">
- <svg data="images/pc网页端/u49.svg" id="u12786_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -20 -1123 )">
- <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" />
- </g>
- </svg>
- <div id="u12786_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u12787" class="ax_default line1 transition">
- <svg data="images/pc网页端/u51.svg" id="u12787_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -20 -112 )">
- <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" />
- </g>
- </svg>
- <div id="u12787_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12788" class="ax_default" data-left="20" data-top="71" data-width="56" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12789" class="ax_default label transition">
- <div id="u12789_div" class=""></div>
- <div id="u12789_text" class="text ">
- <p><span>主页</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u12790" class="ax_default icon transition">
- <svg data="images/pc网页端/u54.svg" id="u12790_img" class="img generatedImage">
- <defs>
- <pattern id="u12790_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u12790_img_cl2553">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -75 )">
- <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" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u12790_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12791" class="ax_default box_2 transition">
- <div id="u12791_div" class=""></div>
- <div id="u12791_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table) -->
- <div id="u12792" class="ax_default">
- <!-- Unnamed (Table cell) -->
- <div id="u12793" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12793.svg" id="u12793_img" class="img generatedImage" viewbox="0 0 91 34">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12793_text" class="text ">
- <p><span>房屋</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12794" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12794.svg" id="u12794_img" class="img generatedImage" viewbox="91 0 91 34">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12794_text" class="text ">
- <p><span>资源编号</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12795" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12795.svg" id="u12795_img" class="img generatedImage" viewbox="182 0 76 34">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12795_text" class="text ">
- <p><span>人员编号</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12796" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12796.svg" id="u12796_img" class="img generatedImage" viewbox="258 0 92 34">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12796_text" class="text ">
- <p><span>姓名</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12797" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12797.svg" id="u12797_img" class="img generatedImage" viewbox="350 0 88 34">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12797_text" class="text ">
- <p><span>人员身份</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12798" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12798.svg" id="u12798_img" class="img generatedImage" viewbox="438 0 88 34">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12798_text" class="text ">
- <p><span>性别</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12799" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12799.svg" id="u12799_img" class="img generatedImage" viewbox="526 0 92 34">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12799_text" class="text ">
- <p><span>手机号码</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12800" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12800.svg" id="u12800_img" class="img generatedImage" viewbox="618 0 88 34">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12800_text" class="text ">
- <p><span>证件类型</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12801" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12801.svg" id="u12801_img" class="img generatedImage" viewbox="706 0 88 34">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12801_text" class="text ">
- <p><span>证件号码</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12802" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12802.svg" id="u12802_img" class="img generatedImage" viewbox="794 0 88 34">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12802_text" class="text ">
- <p><span>人员标签</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12803" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12803.svg" id="u12803_img" class="img generatedImage" viewbox="882 0 126 34">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12803_text" class="text ">
- <p><span>操作</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12804" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12804.svg" id="u12804_img" class="img generatedImage" viewbox="0 34 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12804_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12805" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12805.svg" id="u12805_img" class="img generatedImage" viewbox="91 34 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12805_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12806" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12806.svg" id="u12806_img" class="img generatedImage" viewbox="182 34 76 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12806_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12807" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12807.svg" id="u12807_img" class="img generatedImage" viewbox="258 34 92 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12807_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12808" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12808.svg" id="u12808_img" class="img generatedImage" viewbox="350 34 88 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12808_text" class="text ">
- <p><span>业主</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12809" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12809.svg" id="u12809_img" class="img generatedImage" viewbox="438 34 88 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12809_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12810" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12810.svg" id="u12810_img" class="img generatedImage" viewbox="526 34 92 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12810_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12811" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12811.svg" id="u12811_img" class="img generatedImage" viewbox="618 34 88 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12811_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12812" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12812.svg" id="u12812_img" class="img generatedImage" viewbox="706 34 88 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12812_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12813" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12813.svg" id="u12813_img" class="img generatedImage" viewbox="794 34 88 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12813_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12814" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12814.svg" id="u12814_img" class="img generatedImage" viewbox="882 34 126 44">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12814_text" class="text ">
- <p><span style="color:#298FFF;">授权 </span><span style="color:#D7D7D7;">更多</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12815" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12815.svg" id="u12815_img" class="img generatedImage" viewbox="0 78 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12815_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12816" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12816.svg" id="u12816_img" class="img generatedImage" viewbox="91 78 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12816_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12817" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12817.svg" id="u12817_img" class="img generatedImage" viewbox="182 78 76 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12817_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12818" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12818.svg" id="u12818_img" class="img generatedImage" viewbox="258 78 92 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12818_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12819" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12819.svg" id="u12819_img" class="img generatedImage" viewbox="350 78 88 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12819_text" class="text ">
- <p><span>家属</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12820" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12820.svg" id="u12820_img" class="img generatedImage" viewbox="438 78 88 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12820_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12821" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12821.svg" id="u12821_img" class="img generatedImage" viewbox="526 78 92 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12821_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12822" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12822.svg" id="u12822_img" class="img generatedImage" viewbox="618 78 88 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12822_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12823" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12823.svg" id="u12823_img" class="img generatedImage" viewbox="706 78 88 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12823_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12824" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12824.svg" id="u12824_img" class="img generatedImage" viewbox="794 78 88 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12824_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12825" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12825.svg" id="u12825_img" class="img generatedImage" viewbox="882 78 126 44">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12825_text" class="text ">
- <p><span>授权 更多</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12826" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12826.svg" id="u12826_img" class="img generatedImage" viewbox="0 122 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12826_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12827" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12827.svg" id="u12827_img" class="img generatedImage" viewbox="91 122 91 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12827_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12828" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12828.svg" id="u12828_img" class="img generatedImage" viewbox="182 122 76 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12828_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12829" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12829.svg" id="u12829_img" class="img generatedImage" viewbox="258 122 92 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12829_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12830" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12830.svg" id="u12830_img" class="img generatedImage" viewbox="350 122 88 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12830_text" class="text ">
- <p><span>租客</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12831" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12831.svg" id="u12831_img" class="img generatedImage" viewbox="438 122 88 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12831_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12832" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12832.svg" id="u12832_img" class="img generatedImage" viewbox="526 122 92 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12832_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12833" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12833.svg" id="u12833_img" class="img generatedImage" viewbox="618 122 88 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12833_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12834" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12834.svg" id="u12834_img" class="img generatedImage" viewbox="706 122 88 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12834_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12835" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12835.svg" id="u12835_img" class="img generatedImage" viewbox="794 122 88 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12835_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12836" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12836.svg" id="u12836_img" class="img generatedImage" viewbox="882 122 126 44">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12836_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12837" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12837.svg" id="u12837_img" class="img generatedImage" viewbox="0 166 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12837_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12838" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12838.svg" id="u12838_img" class="img generatedImage" viewbox="91 166 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12838_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12839" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12839.svg" id="u12839_img" class="img generatedImage" viewbox="182 166 76 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12839_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12840" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12840.svg" id="u12840_img" class="img generatedImage" viewbox="258 166 92 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12840_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12841" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12841.svg" id="u12841_img" class="img generatedImage" viewbox="350 166 88 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12841_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12842" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12842.svg" id="u12842_img" class="img generatedImage" viewbox="438 166 88 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12842_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12843" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12843.svg" id="u12843_img" class="img generatedImage" viewbox="526 166 92 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12843_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12844" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12844.svg" id="u12844_img" class="img generatedImage" viewbox="618 166 88 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12844_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12845" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12845.svg" id="u12845_img" class="img generatedImage" viewbox="706 166 88 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12845_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12846" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12846.svg" id="u12846_img" class="img generatedImage" viewbox="794 166 88 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12846_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12847" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12847.svg" id="u12847_img" class="img generatedImage" viewbox="882 166 126 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12847_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12848" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12848.svg" id="u12848_img" class="img generatedImage" viewbox="0 204 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12848_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12849" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12849.svg" id="u12849_img" class="img generatedImage" viewbox="91 204 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12849_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12850" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12850.svg" id="u12850_img" class="img generatedImage" viewbox="182 204 76 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12850_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12851" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12851.svg" id="u12851_img" class="img generatedImage" viewbox="258 204 92 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12851_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12852" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12852.svg" id="u12852_img" class="img generatedImage" viewbox="350 204 88 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12852_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12853" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12853.svg" id="u12853_img" class="img generatedImage" viewbox="438 204 88 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12853_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12854" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12854.svg" id="u12854_img" class="img generatedImage" viewbox="526 204 92 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12854_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12855" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12855.svg" id="u12855_img" class="img generatedImage" viewbox="618 204 88 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12855_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12856" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12856.svg" id="u12856_img" class="img generatedImage" viewbox="706 204 88 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12856_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12857" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12857.svg" id="u12857_img" class="img generatedImage" viewbox="794 204 88 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12857_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12858" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12858.svg" id="u12858_img" class="img generatedImage" viewbox="882 204 126 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12858_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12859" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12859.svg" id="u12859_img" class="img generatedImage" viewbox="0 242 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12859_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12860" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12860.svg" id="u12860_img" class="img generatedImage" viewbox="91 242 91 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12860_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12861" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12861.svg" id="u12861_img" class="img generatedImage" viewbox="182 242 76 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12861_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12862" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12862.svg" id="u12862_img" class="img generatedImage" viewbox="258 242 92 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12862_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12863" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12863.svg" id="u12863_img" class="img generatedImage" viewbox="350 242 88 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12863_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12864" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12864.svg" id="u12864_img" class="img generatedImage" viewbox="438 242 88 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12864_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12865" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12865.svg" id="u12865_img" class="img generatedImage" viewbox="526 242 92 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12865_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12866" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12866.svg" id="u12866_img" class="img generatedImage" viewbox="618 242 88 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12866_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12867" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12867.svg" id="u12867_img" class="img generatedImage" viewbox="706 242 88 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12867_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12868" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12868.svg" id="u12868_img" class="img generatedImage" viewbox="794 242 88 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12868_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12869" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12869.svg" id="u12869_img" class="img generatedImage" viewbox="882 242 126 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12869_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12870" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12870.svg" id="u12870_img" class="img generatedImage" viewbox="0 280 91 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12870_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12871" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12871.svg" id="u12871_img" class="img generatedImage" viewbox="91 280 91 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12871_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12872" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12872.svg" id="u12872_img" class="img generatedImage" viewbox="182 280 76 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12872_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12873" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12873.svg" id="u12873_img" class="img generatedImage" viewbox="258 280 92 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12873_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12874" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12874.svg" id="u12874_img" class="img generatedImage" viewbox="350 280 88 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12874_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12875" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12875.svg" id="u12875_img" class="img generatedImage" viewbox="438 280 88 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12875_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12876" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12876.svg" id="u12876_img" class="img generatedImage" viewbox="526 280 92 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12876_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12877" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12877.svg" id="u12877_img" class="img generatedImage" viewbox="618 280 88 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12877_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12878" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12878.svg" id="u12878_img" class="img generatedImage" viewbox="706 280 88 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12878_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12879" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12879.svg" id="u12879_img" class="img generatedImage" viewbox="794 280 88 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12879_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u12880" class="ax_default table_cell1 transition">
- <svg data="images/房屋住户/u12880.svg" id="u12880_img" class="img generatedImage" viewbox="882 280 126 38">
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u12880_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12881" class="ax_default paragraph transition">
- <div id="u12881_div" class=""></div>
- <div id="u12881_text" class="text ">
- <p><span>房屋住户</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12882" class="ax_default" data-left="861" data-top="239" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12883" class="ax_default box_1 transition">
- <div id="u12883_div" class=""></div>
- <div id="u12883_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u12884" class="ax_default droplist transition">
- <div id="u12884_div" class=""></div>
- <select id="u12884_input" class="u12884_input">
- <option class="u12884_input_option" value="性别">性别</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12885" class="ax_default" data-left="563" data-top="239" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12886" class="ax_default shape transition">
- <div id="u12886_div" class=""></div>
- <div id="u12886_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u12887" class="ax_default text_field transition" data-label="选项内容">
- <div id="u12887_div" class=""></div>
- <input id="u12887_input" type="text" value="" class="u12887_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12888" class="ax_default" data-left="713" data-top="239" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12889" class="ax_default shape transition">
- <div id="u12889_div" class=""></div>
- <div id="u12889_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u12890" class="ax_default text_field transition" data-label="选项内容">
- <div id="u12890_div" class=""></div>
- <input id="u12890_input" type="text" value="" class="u12890_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12891" class="ax_default" data-left="350" data-top="160" data-width="170" data-height="581" layer-opacity="1">
- <!-- Unnamed (Tree) -->
- <div id="u12892" class="ax_default tree_node treeroot">
- <div id="u12892_children" class="u12892_children">
- <!-- Unnamed (Tree node) -->
- <div id="u12893" class="ax_default tree_node treenode">
- <!-- Unnamed (Image) -->
- <div id="u12894" class="ax_default image1 transition">
- <img id="u12894_img" class="img " src="images/设备监测/u7422_selected.png"/>
- <div id="u12894_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12895" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12895_div" class=""></div>
- <div id="u12895_text" class="text ">
- <p><span>西安保利天汇</span></p>
- </div>
- </div>
- <div id="u12893_children" class="u12893_children">
- <!-- Unnamed (Tree node) -->
- <div id="u12896" class="ax_default tree_node treenode">
- <!-- Unnamed (Image) -->
- <div id="u12897" class="ax_default image1 transition">
- <img id="u12897_img" class="img " src="images/设备监测/u7422_selected.png"/>
- <div id="u12897_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12898" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12898_div" class=""></div>
- <div id="u12898_text" class="text ">
- <p><span>1号楼</span></p>
- </div>
- </div>
- <div id="u12896_children" class="u12896_children">
- <!-- Unnamed (Tree node) -->
- <div id="u12899" class="ax_default tree_node treenode">
- <!-- Unnamed (Image) -->
- <div id="u12900" class="ax_default image1 transition">
- <img id="u12900_img" class="img " src="images/设备监测/u7422_selected.png"/>
- <div id="u12900_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12901" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12901_div" class=""></div>
- <div id="u12901_text" class="text ">
- <p><span>01单元</span></p>
- </div>
- </div>
- <div id="u12899_children" class="u12899_children">
- <!-- Unnamed (Tree node) -->
- <div id="u12902" class="ax_default tree_node treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u12903" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12903_div" class=""></div>
- <div id="u12903_text" class="text ">
- <p><span>101室</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u12904" class="ax_default tree_node treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u12905" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12905_div" class=""></div>
- <div id="u12905_text" class="text ">
- <p><span>102室</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u12906" class="ax_default tree_node treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u12907" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12907_div" class=""></div>
- <div id="u12907_text" class="text ">
- <p><span>103室</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u12908" class="ax_default tree_node treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u12909" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12909_div" class=""></div>
- <div id="u12909_text" class="text ">
- <p><span>201室</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u12910" class="ax_default tree_node treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u12911" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12911_div" class=""></div>
- <div id="u12911_text" class="text ">
- <p><span>202室</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u12912" class="ax_default tree_node treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u12913" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12913_div" class=""></div>
- <div id="u12913_text" class="text ">
- <p><span>……</span></p>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u12914" class="ax_default tree_node treenode">
- <!-- Unnamed (Image) -->
- <div id="u12915" class="ax_default image1 transition">
- <img id="u12915_img" class="img " src="images/设备监测/u7422_selected.png"/>
- <div id="u12915_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12916" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12916_div" class=""></div>
- <div id="u12916_text" class="text ">
- <p><span>02单元</span></p>
- </div>
- </div>
- <div id="u12914_children" class="u12914_children">
- <!-- Unnamed (Tree node) -->
- <div id="u12917" class="ax_default tree_node treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u12918" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12918_div" class=""></div>
- <div id="u12918_text" class="text ">
- <p><span>101室</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u12919" class="ax_default tree_node treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u12920" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12920_div" class=""></div>
- <div id="u12920_text" class="text ">
- <p><span>102室</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u12921" class="ax_default tree_node treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u12922" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12922_div" class=""></div>
- <div id="u12922_text" class="text ">
- <p><span>103室</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u12923" class="ax_default tree_node treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u12924" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12924_div" class=""></div>
- <div id="u12924_text" class="text ">
- <p><span>201室</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u12925" class="ax_default tree_node treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u12926" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12926_div" class=""></div>
- <div id="u12926_text" class="text ">
- <p><span>202室</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u12927" class="ax_default tree_node treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u12928" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12928_div" class=""></div>
- <div id="u12928_text" class="text ">
- <p><span>……</span></p>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u12929" class="ax_default tree_node treenode">
- <!-- Unnamed (Image) -->
- <div id="u12930" class="ax_default image1 transition">
- <img id="u12930_img" class="img " src="images/设备监测/u7422_selected.png"/>
- <div id="u12930_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12931" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12931_div" class=""></div>
- <div id="u12931_text" class="text ">
- <p><span>2号楼</span></p>
- </div>
- </div>
- <div id="u12929_children" class="u12929_children">
- <!-- Unnamed (Tree node) -->
- <div id="u12932" class="ax_default tree_node treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u12933" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12933_div" class=""></div>
- <div id="u12933_text" class="text ">
- <p><span>101室</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u12934" class="ax_default tree_node treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u12935" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12935_div" class=""></div>
- <div id="u12935_text" class="text ">
- <p><span>102室</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u12936" class="ax_default tree_node treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u12937" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12937_div" class=""></div>
- <div id="u12937_text" class="text ">
- <p><span>201室</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u12938" class="ax_default tree_node treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u12939" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12939_div" class=""></div>
- <div id="u12939_text" class="text ">
- <p><span>202室</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u12940" class="ax_default tree_node treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u12941" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12941_div" class=""></div>
- <div id="u12941_text" class="text ">
- <p><span>……</span></p>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u12942" class="ax_default tree_node treenode">
- <!-- Unnamed (Image) -->
- <div id="u12943" class="ax_default image1 transition">
- <img id="u12943_img" class="img " src="images/设备监测/u7422_selected.png"/>
- <div id="u12943_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12944" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12944_div" class=""></div>
- <div id="u12944_text" class="text ">
- <p><span>3号楼</span></p>
- </div>
- </div>
- <div id="u12942_children" class="u12942_children">
- <!-- Unnamed (Tree node) -->
- <div id="u12945" class="ax_default tree_node treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u12946" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12946_div" class=""></div>
- <div id="u12946_text" class="text ">
- <p><span>enter text...</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u12947" class="ax_default tree_node treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u12948" class=" transition" selectiongroup="u12892_tree_group">
- <div id="u12948_div" class=""></div>
- <div id="u12948_text" class="text ">
- <p><span>enter text...</span></p>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12949" class="ax_default" data-left="350" data-top="199" data-width="170" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12950" class="ax_default shape transition">
- <div id="u12950_div" class=""></div>
- <div id="u12950_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u12951" class="ax_default text_field transition" data-label="选项内容">
- <div id="u12951_div" class=""></div>
- <input id="u12951_input" type="text" value="" class="u12951_input"/>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u12952" class="ax_default icon1 transition">
- <svg data="images/设备监测/u7489.svg" id="u12952_img" class="img generatedImage">
- <defs>
- <pattern id="u12952_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u12952_img_cl3150">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -528 -298 )">
- <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" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u12952_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12953" class="ax_default" data-left="350" data-top="160" data-width="133" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12954" class="ax_default paragraph transition">
- <div id="u12954_div" class=""></div>
- <div id="u12954_text" class="text ">
- <p><span>西安保利天汇</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u12955" class="ax_default icon1 transition">
- <svg data="images/房屋住户/u12955.svg" id="u12955_img" class="img generatedImage">
- <defs>
- <pattern id="u12955_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u12955_img_cl3516">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -471 -171 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u12955_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12956" class="ax_default paragraph transition">
- <div id="u12956_div" class=""></div>
- <div id="u12956_text" class="text ">
- <p><span>1号楼01单元102室</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12957" class="ax_default" data-left="1161" data-top="199" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12958" class="ax_default box_1 transition">
- <div id="u12958_div" class=""></div>
- <div id="u12958_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u12959" class="ax_default droplist transition">
- <div id="u12959_div" class=""></div>
- <select id="u12959_input" class="u12959_input">
- <option class="u12959_input_option" value="人员身份">人员身份</option>
- <option class="u12959_input_option" value="业主">业主</option>
- <option class="u12959_input_option" value="租客">租客</option>
- <option class="u12959_input_option" value="成员">成员</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12960" class="ax_default box_1 transition">
- <div id="u12960_div" class=""></div>
- <div id="u12960_text" class="text ">
- <p><span>设置</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12961" class="ax_default" data-left="1498" data-top="465" data-width="80" data-height="100" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12962" class="ax_default box_1 transition">
- <div id="u12962_div" class=""></div>
- <div id="u12962_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12963" class="ax_default box_1 transition">
- <div id="u12963_div" class=""></div>
- <div id="u12963_text" class="text ">
- <p><span>移除</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12964" class="ax_default box_1 transition">
- <div id="u12964_div" class=""></div>
- <div id="u12964_text" class="text ">
- <p><span>编辑</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (客户-人员中心) -->
- <div id="u12965" class="nopointer ax_default">
- <!-- Unnamed (Group) -->
- <div id="u12966" class="ax_default" data-left="120" data-top="50" data-width="201" data-height="1190" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12967" class="ax_default box_2 transition">
- <div id="u12967_div" class=""></div>
- <div id="u12967_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12968" class="ax_default label transition">
- <div id="u12968_div" class=""></div>
- <div id="u12968_text" class="text ">
- <p><span>客户中心</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12969" class="ax_default label transition">
- <div id="u12969_div" class=""></div>
- <div id="u12969_text" class="text ">
- <p><span>入驻企业</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12970" class="ax_default label transition">
- <div id="u12970_div" class=""></div>
- <div id="u12970_text" class="text ">
- <p><span>入驻机构</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12971" class="ax_default label transition">
- <div id="u12971_div" class=""></div>
- <div id="u12971_text" class="text ">
- <p><span>人员登记</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12972" class="ax_default label transition">
- <div id="u12972_div" class=""></div>
- <div id="u12972_text" class="text ">
- <p><span>房屋住户</span></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u12973" class="ax_default line1 transition">
- <svg data="images/项目列表/u4861.svg" id="u12973_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -1 -122 )">
- <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" />
- </g>
- </svg>
- <div id="u12973_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12974" class="ax_default label transition">
- <div id="u12974_div" class=""></div>
- <div id="u12974_text" class="text ">
- <p><span>企业员工</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12975" class="ax_default label transition">
- <div id="u12975_div" class=""></div>
- <div id="u12975_text" class="text ">
- <p><span>业主管理</span></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u12976" class="ax_default line1 transition">
- <svg data="images/项目列表/u4861.svg" id="u12976_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -1 -122 )">
- <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" />
- </g>
- </svg>
- <div id="u12976_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12977" class="ax_default label transition">
- <div id="u12977_div" class=""></div>
- <div id="u12977_text" class="text ">
- <p><span>房屋业主</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12978" class="ax_default label transition">
- <div id="u12978_div" class=""></div>
- <div id="u12978_text" class="text ">
- <p><span>车位业主</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12979" class="ax_default label transition">
- <div id="u12979_div" class=""></div>
- <div id="u12979_text" class="text ">
- <p><span>认证设置</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12980" class="ax_default label transition">
- <div id="u12980_div" class=""></div>
- <div id="u12980_text" class="text ">
- <p><span>房屋业主认证</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12981" class="ax_default label transition">
- <div id="u12981_div" class=""></div>
- <div id="u12981_text" class="text ">
- <p><span>身份认证</span></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u12982" class="ax_default line1 transition">
- <svg data="images/项目列表/u4861.svg" id="u12982_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -1 -122 )">
- <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" />
- </g>
- </svg>
- <div id="u12982_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12983" class="ax_default label transition">
- <div id="u12983_div" class=""></div>
- <div id="u12983_text" class="text ">
- <p><span>房源住户认证</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12984" class="ax_default label transition">
- <div id="u12984_div" class=""></div>
- <div id="u12984_text" class="text ">
- <p><span>入驻企业认证</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12985" class="ax_default label transition">
- <div id="u12985_div" class=""></div>
- <div id="u12985_text" class="text ">
- <p><span>人员档案</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12986" class="ax_default label transition">
- <div id="u12986_div" class=""></div>
- <div id="u12986_text" class="text ">
- <p><span>客户档案</span></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u12987" class="ax_default line1 transition">
- <svg data="images/项目列表/u4861.svg" id="u12987_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -1 -122 )">
- <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" />
- </g>
- </svg>
- <div id="u12987_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12988" class="ax_default label transition">
- <div id="u12988_div" class=""></div>
- <div id="u12988_text" class="text ">
- <p><span>机构档案</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12989" class="ax_default label transition">
- <div id="u12989_div" class=""></div>
- <div id="u12989_text" class="text ">
- <p><span>物业人员认证</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12990" class="ax_default label transition">
- <div id="u12990_div" class=""></div>
- <div id="u12990_text" class="text ">
- <p><span>业主委员会</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12991" class="ax_default label transition">
- <div id="u12991_div" class=""></div>
- <div id="u12991_text" class="text ">
- <p><span>车位业主认证</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12992" class="ax_default label transition">
- <div id="u12992_div" class=""></div>
- <div id="u12992_text" class="text ">
- <p><span>物业员工</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12993" class="ax_default label transition">
- <div id="u12993_div" class=""></div>
- <div id="u12993_text" class="text ">
- <p><span>骑手快递员</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12994" class="ax_default label transition">
- <div id="u12994_div" class=""></div>
- <div id="u12994_text" class="text ">
- <p><span>装修工人</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u12995" class="ax_default label transition">
- <div id="u12995_div" class=""></div>
- <div id="u12995_text" class="text ">
- <p><span>临时登记人员</span></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u12996" class="ax_default line1 transition">
- <svg data="images/项目列表/u4861.svg" id="u12996_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -1 -122 )">
- <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" />
- </g>
- </svg>
- <div id="u12996_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u12997" class="ax_default" data-left="1311" data-top="199" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u12998" class="ax_default shape transition">
- <div id="u12998_div" class=""></div>
- <div id="u12998_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u12999" class="ax_default text_field transition" data-label="选项内容">
- <div id="u12999_div" class=""></div>
- <input id="u12999_input" type="text" value="" class="u12999_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13000" class="ax_default paragraph transition">
- <div id="u13000_div" class=""></div>
- <div id="u13000_text" class="text ">
- <p><span>此处登记项目房屋的相关人员,包含房源业主、租客、住户等人员信息。人员身份类型、人员默认通行权限,请前往「设置」配置。</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13001" class="ax_default" data-left="1110" data-top="523" data-width="380" data-height="160" layer-opacity="1">
- <!-- Unnamed (Group) -->
- <div id="u13002" class="ax_default" data-left="1110" data-top="523" data-width="380" data-height="160" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13003" class="ax_default shape transition">
- <div id="u13003_div" class=""></div>
- <div id="u13003_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13004" class="ax_default paragraph transition">
- <div id="u13004_div" class=""></div>
- <div id="u13004_text" class="text ">
- <p><span>确定移除房屋住户?</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13005" class="ax_default shape transition">
- <div id="u13005_div" class=""></div>
- <div id="u13005_text" class="text ">
- <p><span>确定</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u13006" class="ax_default icon transition">
- <svg data="images/项目列表/u4791.svg" id="u13006_img" class="img generatedImage">
- <defs>
- <pattern id="u13006_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13006_img_cl2936">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -1661 -842 )">
- <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" />
- <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)" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u13006_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13007" class="ax_default paragraph transition">
- <div id="u13007_div" class=""></div>
- <div id="u13007_text" class="text ">
- <p><span>移除之后,人员将移除相关通行权限,且认证微信账号将同步失效。</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13008" class="ax_default shape transition">
- <div id="u13008_div" class=""></div>
- <div id="u13008_text" class="text ">
- <p><span>取 消</span></p>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13009" class="ax_default" data-left="1110" data-top="705" data-width="380" data-height="160" layer-opacity="1">
- <!-- Unnamed (Group) -->
- <div id="u13010" class="ax_default" data-left="1110" data-top="705" data-width="380" data-height="160" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13011" class="ax_default shape transition">
- <div id="u13011_div" class=""></div>
- <div id="u13011_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13012" class="ax_default paragraph transition">
- <div id="u13012_div" class=""></div>
- <div id="u13012_text" class="text ">
- <p><span>移除失败!</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13013" class="ax_default shape transition">
- <div id="u13013_div" class=""></div>
- <div id="u13013_text" class="text ">
- <p><span>确定</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13014" class="ax_default paragraph transition">
- <div id="u13014_div" class=""></div>
- <div id="u13014_text" class="text ">
- <p><span>当前住户存在该房屋未完结账单,请先完成缴费或账单出来。</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u13015" class="ax_default icon transition">
- <svg data="images/项目列表/u4777.svg" id="u13015_img" class="img generatedImage">
- <defs>
- <pattern id="u13015_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13015_img_cl2935">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -2062 -389 )">
- <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" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u13015_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13016" class="ax_default box_1 transition">
- <div id="u13016_div" class=""></div>
- <div id="u13016_text" class="text ">
- <p><span>添加</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13017" class="ax_default box_1 transition">
- <div id="u13017_div" class=""></div>
- <div id="u13017_text" class="text ">
- <p><span>导出</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13018" class="ax_default box_1 transition">
- <div id="u13018_div" class=""></div>
- <div id="u13018_text" class="text ">
- <p><span>导入</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13019" class="ax_default box_1 transition">
- <div id="u13019_div" class=""></div>
- <div id="u13019_text" class="text ">
- <p><span style="text-decoration:underline ;">已认证微信用户</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13020" class="ax_default" data-left="1161" data-top="240" data-width="130" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13021" class="ax_default box_1 transition">
- <div id="u13021_div" class=""></div>
- <div id="u13021_text" class="text ">
- <p><span>搜索</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13022" class="ax_default box_1 transition">
- <div id="u13022_div" class=""></div>
- <div id="u13022_text" class="text ">
- <p><span>重置</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13023" class="ax_default" data-left="711" data-top="199" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13024" class="ax_default box_1 transition">
- <div id="u13024_div" class=""></div>
- <div id="u13024_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u13025" class="ax_default droplist transition">
- <div id="u13025_div" class=""></div>
- <select id="u13025_input" class="u13025_input">
- <option class="u13025_input_option" value="楼栋">楼栋</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13026" class="ax_default" data-left="1011" data-top="239" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13027" class="ax_default shape transition">
- <div id="u13027_div" class=""></div>
- <div id="u13027_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u13028" class="ax_default text_field transition" data-label="选项内容">
- <div id="u13028_div" class=""></div>
- <input id="u13028_input" type="text" value="" class="u13028_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13029" class="ax_default" data-left="563" data-top="199" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13030" class="ax_default box_1 transition">
- <div id="u13030_div" class=""></div>
- <div id="u13030_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u13031" class="ax_default droplist transition">
- <div id="u13031_div" class=""></div>
- <select id="u13031_input" class="u13031_input">
- <option class="u13031_input_option" value="项目">项目</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13032" class="ax_default" data-left="861" data-top="199" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13033" class="ax_default box_1 transition">
- <div id="u13033_div" class=""></div>
- <div id="u13033_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u13034" class="ax_default droplist transition">
- <div id="u13034_div" class=""></div>
- <select id="u13034_input" class="u13034_input">
- <option class="u13034_input_option" value="单元">单元</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13035" class="ax_default" data-left="1011" data-top="199" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13036" class="ax_default box_1 transition">
- <div id="u13036_div" class=""></div>
- <div id="u13036_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u13037" class="ax_default droplist transition">
- <div id="u13037_div" class=""></div>
- <select id="u13037_input" class="u13037_input">
- <option class="u13037_input_option" value="房屋">房屋</option>
- </select>
- </div>
- </div>
- <!-- 需求更新记录 (Dynamic panel) -->
- <div id="u13038" class="ax_default" data-label="需求更新记录">
- <div id="u13038_state0" class="panel_state" data-label="V1.1" style="">
- <div id="u13038_state0_content" class="panel_state_content">
- <!-- Unnamed (Line) -->
- <div id="u13039" class="ax_default line1 transition">
- <svg data="images/房屋住户/u13039.svg" id="u13039_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 0 -43 )">
- <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" />
- </g>
- </svg>
- <div id="u13039_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13040" class="ax_default" data-left="28" data-top="7" data-width="38" data-height="43" layer-opacity="1">
- <!-- Unnamed (Ellipse) -->
- <div id="u13041" class="ax_default ellipse transition">
- <svg data="images/房屋住户/u13041.svg" id="u13041_img" class="img generatedImage">
- <defs>
- <pattern id="u13041_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13041_img_cl3517">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -40 -37 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u13041_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13042" class="ax_default heading_1 transition">
- <div id="u13042_div" class=""></div>
- <div id="u13042_text" class="text ">
- <p><span>V1.1</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree) -->
- <div id="u13043" class="ax_default tree_node1 treeroot">
- <div id="u13043_children" class="u13043_children">
- <!-- Unnamed (Tree node) -->
- <div id="u13044" class="ax_default tree_node1 treenode">
- <!-- Unnamed (Image) -->
- <div id="u13045" class="ax_default image1 transition">
- <img id="u13045_img" class="img " src="images/设备监测/u7422_selected.png"/>
- <div id="u13045_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13046" class=" transition" selectiongroup="u13043_tree_group">
- <div id="u13046_div" class=""></div>
- <div id="u13046_text" class="text ">
- <p><span>1、房屋导航显示格式</span></p>
- </div>
- </div>
- <div id="u13044_children" class="u13044_children">
- <!-- Unnamed (Tree node) -->
- <div id="u13047" class="ax_default tree_node1 treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u13048" class=" transition" selectiongroup="u13043_tree_group">
- <div id="u13048_div" class=""></div>
- <div id="u13048_text" class="text ">
- <p><span>1.1房屋树显示格式:1号楼01单元203室;根据空间>楼栋、单元、房屋基础信息设置统一规范;当前房屋树不显示:楼层</span></p>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u13049" class="ax_default tree_node1 treenode">
- <!-- Unnamed (Image) -->
- <div id="u13050" class="ax_default image1 transition">
- <img id="u13050_img" class="img " src="images/设备监测/u7422_selected.png"/>
- <div id="u13050_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13051" class=" transition" selectiongroup="u13043_tree_group">
- <div id="u13051_div" class=""></div>
- <div id="u13051_text" class="text ">
- <p><span>2、查询模块</span></p>
- </div>
- </div>
- <div id="u13049_children" class="u13049_children">
- <!-- Unnamed (Tree node) -->
- <div id="u13052" class="ax_default tree_node1 treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u13053" class=" transition" selectiongroup="u13043_tree_group">
- <div id="u13053_div" class=""></div>
- <div id="u13053_text" class="text ">
- <p><span>查询字段根据原型调整</span></p>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u13054" class="ax_default tree_node1 treenode">
- <!-- Unnamed (Image) -->
- <div id="u13055" class="ax_default image1 transition">
- <img id="u13055_img" class="img " src="images/设备监测/u7422_selected.png"/>
- <div id="u13055_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13056" class=" transition" selectiongroup="u13043_tree_group">
- <div id="u13056_div" class=""></div>
- <div id="u13056_text" class="text ">
- <p><span>3、列表模块</span></p>
- </div>
- </div>
- <div id="u13054_children" class="u13054_children">
- <!-- Unnamed (Tree node) -->
- <div id="u13057" class="ax_default tree_node1 treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u13058" class=" transition" selectiongroup="u13043_tree_group">
- <div id="u13058_div" class=""></div>
- <div id="u13058_text" class="text ">
- <p><span>3.1列表字段根据原型调整</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u13059" class="ax_default tree_node1 treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u13060" class=" transition" selectiongroup="u13043_tree_group">
- <div id="u13060_div" class=""></div>
- <div id="u13060_text" class="text ">
- <p><span>3.2业主身份的记录,操作不显示「更多」,在房屋住户列表,不支持移除业主和编辑业主信息;需到房源业主模块设置/编辑</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u13061" class="ax_default tree_node1 treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u13062" class=" transition" selectiongroup="u13043_tree_group">
- <div id="u13062_div" class=""></div>
- <div id="u13062_text" class="text ">
- <p><span>3.3添加房源住户时,去掉人员身份为“业主”的选择;业主若为房源住户,在房屋业主列表进行开启/关闭设置。</span></p>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u13063" class="ax_default tree_node1 treenode">
- <!-- Unnamed (Image) -->
- <div id="u13064" class="ax_default image1 transition">
- <img id="u13064_img" class="img " src="images/设备监测/u7422_selected.png"/>
- <div id="u13064_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13065" class=" transition" selectiongroup="u13043_tree_group">
- <div id="u13065_div" class=""></div>
- <div id="u13065_text" class="text ">
- <p><span>4、已认证微信用户</span></p>
- </div>
- </div>
- <div id="u13063_children" class="u13063_children">
- <!-- Unnamed (Tree node) -->
- <div id="u13066" class="ax_default tree_node1 treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u13067" class=" transition" selectiongroup="u13043_tree_group">
- <div id="u13067_div" class=""></div>
- <div id="u13067_text" class="text ">
- <p><span>4.1点击「已认证微信用户」,查看当前项目所有房屋住户人员,在微信小程序已完成房屋认证的用户信息。</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Tree node) -->
- <div id="u13068" class="ax_default tree_node1 treenode">
- <!-- Unnamed (Rectangle) -->
- <div id="u13069" class=" transition" selectiongroup="u13043_tree_group">
- <div id="u13069_div" class=""></div>
- <div id="u13069_text" class="text ">
- <p><span>4.2物业在管理后台,支持移除处理已认证微信用户;移除之后,认证关系失效。小程序端用户>我的房屋状态失效。</span></p>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script src="resources/scripts/axure/ios.js"></script>
- </body>
- </html>
|