物业员工.html 377 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>物业员工</title>
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
  6. <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
  7. <link href="resources/css/axure_rp_page.css" type="text/css" rel="stylesheet"/>
  8. <link href="data/styles.css" type="text/css" rel="stylesheet"/>
  9. <link href="files/物业员工/styles.css" type="text/css" rel="stylesheet"/>
  10. <link href="https://fonts.googleapis.com" rel="preconnect"/>
  11. <link href="https://fonts.gstatic.com" rel="preconnect"/>
  12. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet"/>
  13. <script src="resources/scripts/jquery-3.7.1.min.js"></script>
  14. <script src="resources/scripts/axure/axQuery.js"></script>
  15. <script src="resources/scripts/axure/globals.js"></script>
  16. <script src="resources/scripts/axutils.js"></script>
  17. <script src="resources/scripts/axure/annotation.js"></script>
  18. <script src="resources/scripts/axure/axQuery.std.js"></script>
  19. <script src="resources/scripts/axure/doc.js"></script>
  20. <script src="resources/scripts/messagecenter.js"></script>
  21. <script src="resources/scripts/axure/events.js"></script>
  22. <script src="resources/scripts/axure/recording.js"></script>
  23. <script src="resources/scripts/axure/action.js"></script>
  24. <script src="resources/scripts/axure/expr.js"></script>
  25. <script src="resources/scripts/axure/geometry.js"></script>
  26. <script src="resources/scripts/axure/flyout.js"></script>
  27. <script src="resources/scripts/axure/model.js"></script>
  28. <script src="resources/scripts/axure/repeater.js"></script>
  29. <script src="resources/scripts/axure/sto.js"></script>
  30. <script src="resources/scripts/axure/utils.temp.js"></script>
  31. <script src="resources/scripts/axure/variables.js"></script>
  32. <script src="resources/scripts/axure/drag.js"></script>
  33. <script src="resources/scripts/axure/move.js"></script>
  34. <script src="resources/scripts/axure/visibility.js"></script>
  35. <script src="resources/scripts/axure/style.js"></script>
  36. <script src="resources/scripts/axure/adaptive.js"></script>
  37. <script src="resources/scripts/axure/tree.js"></script>
  38. <script src="resources/scripts/axure/init.temp.js"></script>
  39. <script src="resources/scripts/axure/legacy.js"></script>
  40. <script src="resources/scripts/axure/viewer.js"></script>
  41. <script src="resources/scripts/axure/math.js"></script>
  42. <script src="resources/scripts/axure/jquery.nicescroll.min.js"></script>
  43. <script src="data/document.js"></script>
  44. <script src="files/物业员工/data.js"></script>
  45. <script type="text/javascript">
  46. $axure.utils.getTransparentGifPath = function() { return 'resources/images/transparent.gif'; };
  47. $axure.utils.getOtherPath = function() { return 'resources/Other.html'; };
  48. $axure.utils.getReloadPath = function() { return 'resources/reload.html'; };
  49. </script>
  50. </head>
  51. <body>
  52. <div id="base" class="">
  53. <!-- Unnamed (客户管理端-一级) -->
  54. <div id="u13457" class="nopointer ax_default">
  55. <!-- Unnamed (Rectangle) -->
  56. <div id="u13458" class="ax_default box_2 transition">
  57. <div id="u13458_div" class=""></div>
  58. <div id="u13458_text" class="text " style="display:none; visibility: hidden">
  59. <p></p>
  60. </div>
  61. </div>
  62. <!-- Unnamed (Rectangle) -->
  63. <div id="u13459" class="ax_default label transition">
  64. <div id="u13459_div" class=""></div>
  65. <div id="u13459_text" class="text ">
  66. <p><span>课后延时慧学平台</span></p>
  67. </div>
  68. </div>
  69. <!-- Unnamed (Rectangle) -->
  70. <div id="u13460" class="ax_default box_2 transition">
  71. <div id="u13460_div" class=""></div>
  72. <div id="u13460_text" class="text " style="display:none; visibility: hidden">
  73. <p></p>
  74. </div>
  75. </div>
  76. <!-- Unnamed (Group) -->
  77. <div id="u13461" class="ax_default" data-left="19" data-top="10" data-width="204" data-height="31" layer-opacity="1">
  78. <!-- Unnamed (Ellipse) -->
  79. <div id="u13462" class="ax_default ellipse transition">
  80. <svg data="images/pc网页端/u5.svg" id="u13462_img" class="img generatedImage">
  81. <defs>
  82. <pattern id="u13462_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  83. <mask fill="white" id="u13462_img_cl1">
  84. <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " fill-rule="evenodd" />
  85. </mask>
  86. </defs>
  87. <g transform="matrix(1 0 0 1 -19 -10 )">
  88. <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 19 10 )" class="fill" />
  89. <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 19 10 )" class="stroke" mask="url(#u13462_img_cl1)" />
  90. </g>
  91. </svg>
  92. <div id="u13462_text" class="text ">
  93. <p><span>logo</span></p>
  94. </div>
  95. </div>
  96. <!-- Unnamed (Rectangle) -->
  97. <div id="u13463" class="ax_default label transition">
  98. <div id="u13463_div" class=""></div>
  99. <div id="u13463_text" class="text ">
  100. <p><span>保利智慧社区管理平台</span></p>
  101. </div>
  102. </div>
  103. </div>
  104. <!-- Unnamed (Rectangle) -->
  105. <div id="u13464" class="ax_default box_2 transition">
  106. <div id="u13464_div" class=""></div>
  107. <div id="u13464_text" class="text " style="display:none; visibility: hidden">
  108. <p></p>
  109. </div>
  110. </div>
  111. <!-- Unnamed (Group) -->
  112. <div id="u13465" class="ax_default" data-left="20" data-top="171" data-width="52" data-height="22" layer-opacity="1">
  113. <!-- Unnamed (Rectangle) -->
  114. <div id="u13466" class="ax_default label transition">
  115. <div id="u13466_div" class=""></div>
  116. <div id="u13466_text" class="text ">
  117. <p><span>项目</span></p>
  118. </div>
  119. </div>
  120. <!-- Unnamed (Placeholder) -->
  121. <div id="u13467" class="ax_default placeholder transition">
  122. <svg data="images/物业员工/u13467.svg" id="u13467_img" class="img generatedImage">
  123. <defs>
  124. <pattern id="u13467_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  125. <mask fill="white" id="u13467_img_cl983">
  126. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  127. </mask>
  128. </defs>
  129. <g transform="matrix(1 0 0 1 -20 -175 )">
  130. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 175 )" class="fill" />
  131. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 175 )" class="stroke" mask="url(#u13467_img_cl983)" />
  132. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 175 )" class="stroke" />
  133. </g>
  134. </svg>
  135. <div id="u13467_text" class="text " style="display:none; visibility: hidden">
  136. <p></p>
  137. </div>
  138. </div>
  139. </div>
  140. <!-- Unnamed (Group) -->
  141. <div id="u13468" class="ax_default" data-left="20" data-top="381" data-width="52" data-height="22" layer-opacity="1">
  142. <!-- Unnamed (Rectangle) -->
  143. <div id="u13469" class="ax_default label transition">
  144. <div id="u13469_div" class=""></div>
  145. <div id="u13469_text" class="text ">
  146. <p><span>企业</span></p>
  147. </div>
  148. </div>
  149. <!-- Unnamed (Placeholder) -->
  150. <div id="u13470" class="ax_default placeholder transition">
  151. <svg data="images/物业员工/u13470.svg" id="u13470_img" class="img generatedImage">
  152. <defs>
  153. <pattern id="u13470_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  154. <mask fill="white" id="u13470_img_cl984">
  155. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  156. </mask>
  157. </defs>
  158. <g transform="matrix(1 0 0 1 -20 -385 )">
  159. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 385 )" class="fill" />
  160. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 385 )" class="stroke" mask="url(#u13470_img_cl984)" />
  161. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 385 )" class="stroke" />
  162. </g>
  163. </svg>
  164. <div id="u13470_text" class="text " style="display:none; visibility: hidden">
  165. <p></p>
  166. </div>
  167. </div>
  168. </div>
  169. <!-- Unnamed (Group) -->
  170. <div id="u13471" class="ax_default" data-left="20" data-top="133" data-width="68" data-height="22" layer-opacity="1">
  171. <!-- Unnamed (Rectangle) -->
  172. <div id="u13472" class="ax_default label transition">
  173. <div id="u13472_div" class=""></div>
  174. <div id="u13472_text" class="text ">
  175. <p><span>可视化</span></p>
  176. </div>
  177. </div>
  178. <!-- Unnamed (Placeholder) -->
  179. <div id="u13473" class="ax_default placeholder transition">
  180. <svg data="images/物业员工/u13473.svg" id="u13473_img" class="img generatedImage">
  181. <defs>
  182. <pattern id="u13473_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  183. <mask fill="white" id="u13473_img_cl985">
  184. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  185. </mask>
  186. </defs>
  187. <g transform="matrix(1 0 0 1 -20 -137 )">
  188. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 137 )" class="fill" />
  189. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 137 )" class="stroke" mask="url(#u13473_img_cl985)" />
  190. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 137 )" class="stroke" />
  191. </g>
  192. </svg>
  193. <div id="u13473_text" class="text " style="display:none; visibility: hidden">
  194. <p></p>
  195. </div>
  196. </div>
  197. </div>
  198. <!-- Unnamed (Group) -->
  199. <div id="u13474" class="ax_default" data-left="20" data-top="423" data-width="52" data-height="22" layer-opacity="1">
  200. <!-- Unnamed (Rectangle) -->
  201. <div id="u13475" class="ax_default label transition">
  202. <div id="u13475_div" class=""></div>
  203. <div id="u13475_text" class="text ">
  204. <p><span>标签</span></p>
  205. </div>
  206. </div>
  207. <!-- Unnamed (Placeholder) -->
  208. <div id="u13476" class="ax_default placeholder transition">
  209. <svg data="images/物业员工/u13476.svg" id="u13476_img" class="img generatedImage">
  210. <defs>
  211. <pattern id="u13476_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  212. <mask fill="white" id="u13476_img_cl986">
  213. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  214. </mask>
  215. </defs>
  216. <g transform="matrix(1 0 0 1 -20 -427 )">
  217. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 427 )" class="fill" />
  218. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 427 )" class="stroke" mask="url(#u13476_img_cl986)" />
  219. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 427 )" class="stroke" />
  220. </g>
  221. </svg>
  222. <div id="u13476_text" class="text " style="display:none; visibility: hidden">
  223. <p></p>
  224. </div>
  225. </div>
  226. </div>
  227. <!-- Unnamed (Group) -->
  228. <div id="u13477" class="ax_default" data-left="20" data-top="297" data-width="52" data-height="22" layer-opacity="1">
  229. <!-- Unnamed (Rectangle) -->
  230. <div id="u13478" class="ax_default label transition">
  231. <div id="u13478_div" class=""></div>
  232. <div id="u13478_text" class="text ">
  233. <p><span>财务</span></p>
  234. </div>
  235. </div>
  236. <!-- Unnamed (Placeholder) -->
  237. <div id="u13479" class="ax_default placeholder transition">
  238. <svg data="images/物业员工/u13479.svg" id="u13479_img" class="img generatedImage">
  239. <defs>
  240. <pattern id="u13479_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  241. <mask fill="white" id="u13479_img_cl987">
  242. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  243. </mask>
  244. </defs>
  245. <g transform="matrix(1 0 0 1 -20 -301 )">
  246. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 301 )" class="fill" />
  247. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 301 )" class="stroke" mask="url(#u13479_img_cl987)" />
  248. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 301 )" class="stroke" />
  249. </g>
  250. </svg>
  251. <div id="u13479_text" class="text " style="display:none; visibility: hidden">
  252. <p></p>
  253. </div>
  254. </div>
  255. </div>
  256. <!-- Unnamed (Group) -->
  257. <div id="u13480" class="ax_default" data-left="20" data-top="213" data-width="52" data-height="22" layer-opacity="1">
  258. <!-- Unnamed (Rectangle) -->
  259. <div id="u13481" class="ax_default label transition">
  260. <div id="u13481_div" class=""></div>
  261. <div id="u13481_text" class="text ">
  262. <p><span>空间</span></p>
  263. </div>
  264. </div>
  265. <!-- Unnamed (Placeholder) -->
  266. <div id="u13482" class="ax_default placeholder transition">
  267. <svg data="images/物业员工/u13482.svg" id="u13482_img" class="img generatedImage">
  268. <defs>
  269. <pattern id="u13482_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  270. <mask fill="white" id="u13482_img_cl988">
  271. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  272. </mask>
  273. </defs>
  274. <g transform="matrix(1 0 0 1 -20 -217 )">
  275. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 217 )" class="fill" />
  276. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 217 )" class="stroke" mask="url(#u13482_img_cl988)" />
  277. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 217 )" class="stroke" />
  278. </g>
  279. </svg>
  280. <div id="u13482_text" class="text " style="display:none; visibility: hidden">
  281. <p></p>
  282. </div>
  283. </div>
  284. </div>
  285. <!-- Unnamed (Group) -->
  286. <div id="u13483" class="ax_default" data-left="20" data-top="339" data-width="52" data-height="22" layer-opacity="1">
  287. <!-- Unnamed (Rectangle) -->
  288. <div id="u13484" class="ax_default label transition">
  289. <div id="u13484_div" class=""></div>
  290. <div id="u13484_text" class="text ">
  291. <p><span>办公</span></p>
  292. </div>
  293. </div>
  294. <!-- Unnamed (Placeholder) -->
  295. <div id="u13485" class="ax_default placeholder transition">
  296. <svg data="images/物业员工/u13485.svg" id="u13485_img" class="img generatedImage">
  297. <defs>
  298. <pattern id="u13485_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  299. <mask fill="white" id="u13485_img_cl989">
  300. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  301. </mask>
  302. </defs>
  303. <g transform="matrix(1 0 0 1 -20 -343 )">
  304. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 343 )" class="fill" />
  305. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 343 )" class="stroke" mask="url(#u13485_img_cl989)" />
  306. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 343 )" class="stroke" />
  307. </g>
  308. </svg>
  309. <div id="u13485_text" class="text " style="display:none; visibility: hidden">
  310. <p></p>
  311. </div>
  312. </div>
  313. </div>
  314. <!-- Unnamed (Group) -->
  315. <div id="u13486" class="ax_default" data-left="20" data-top="465" data-width="52" data-height="22" layer-opacity="1">
  316. <!-- Unnamed (Rectangle) -->
  317. <div id="u13487" class="ax_default label transition">
  318. <div id="u13487_div" class=""></div>
  319. <div id="u13487_text" class="text ">
  320. <p><span>系统</span></p>
  321. </div>
  322. </div>
  323. <!-- Unnamed (Placeholder) -->
  324. <div id="u13488" class="ax_default placeholder transition">
  325. <svg data="images/物业员工/u13488.svg" id="u13488_img" class="img generatedImage">
  326. <defs>
  327. <pattern id="u13488_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  328. <mask fill="white" id="u13488_img_cl990">
  329. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  330. </mask>
  331. </defs>
  332. <g transform="matrix(1 0 0 1 -20 -469 )">
  333. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 469 )" class="fill" />
  334. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 469 )" class="stroke" mask="url(#u13488_img_cl990)" />
  335. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 469 )" class="stroke" />
  336. </g>
  337. </svg>
  338. <div id="u13488_text" class="text " style="display:none; visibility: hidden">
  339. <p></p>
  340. </div>
  341. </div>
  342. </div>
  343. <!-- Unnamed (Group) -->
  344. <div id="u13489" class="ax_default" data-left="20" data-top="1144" data-width="61" data-height="22" layer-opacity="1">
  345. <!-- Unnamed (Rectangle) -->
  346. <div id="u13490" class="ax_default label transition">
  347. <div id="u13490_div" class=""></div>
  348. <div id="u13490_text" class="text ">
  349. <p><span>消息</span></p>
  350. </div>
  351. </div>
  352. <!-- Unnamed (Placeholder) -->
  353. <div id="u13491" class="ax_default placeholder transition">
  354. <svg data="images/物业员工/u13491.svg" id="u13491_img" class="img generatedImage">
  355. <defs>
  356. <pattern id="u13491_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  357. <mask fill="white" id="u13491_img_cl991">
  358. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  359. </mask>
  360. </defs>
  361. <g transform="matrix(1 0 0 1 -20 -1144 )">
  362. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1144 )" class="fill" />
  363. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1144 )" class="stroke" mask="url(#u13491_img_cl991)" />
  364. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1144 )" class="stroke" />
  365. </g>
  366. </svg>
  367. <div id="u13491_text" class="text " style="display:none; visibility: hidden">
  368. <p></p>
  369. </div>
  370. </div>
  371. </div>
  372. <!-- Unnamed (Group) -->
  373. <div id="u13492" class="ax_default" data-left="20" data-top="1186" data-width="61" data-height="22" layer-opacity="1">
  374. <!-- Unnamed (Rectangle) -->
  375. <div id="u13493" class="ax_default label transition">
  376. <div id="u13493_div" class=""></div>
  377. <div id="u13493_text" class="text ">
  378. <p><span>设置</span></p>
  379. </div>
  380. </div>
  381. <!-- Unnamed (Placeholder) -->
  382. <div id="u13494" class="ax_default placeholder transition">
  383. <svg data="images/物业员工/u13494.svg" id="u13494_img" class="img generatedImage">
  384. <defs>
  385. <pattern id="u13494_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  386. <mask fill="white" id="u13494_img_cl992">
  387. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  388. </mask>
  389. </defs>
  390. <g transform="matrix(1 0 0 1 -20 -1186 )">
  391. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1186 )" class="fill" />
  392. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1186 )" class="stroke" mask="url(#u13494_img_cl992)" />
  393. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1186 )" class="stroke" />
  394. </g>
  395. </svg>
  396. <div id="u13494_text" class="text " style="display:none; visibility: hidden">
  397. <p></p>
  398. </div>
  399. </div>
  400. </div>
  401. <!-- Unnamed (Group) -->
  402. <div id="u13495" class="ax_default" data-left="20" data-top="255" data-width="52" data-height="22" layer-opacity="1">
  403. <!-- Unnamed (Rectangle) -->
  404. <div id="u13496" class="ax_default label transition">
  405. <div id="u13496_div" class=""></div>
  406. <div id="u13496_text" class="text ">
  407. <p><span>收费</span></p>
  408. </div>
  409. </div>
  410. <!-- Unnamed (Placeholder) -->
  411. <div id="u13497" class="ax_default placeholder transition">
  412. <svg data="images/物业员工/u13497.svg" id="u13497_img" class="img generatedImage">
  413. <defs>
  414. <pattern id="u13497_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  415. <mask fill="white" id="u13497_img_cl993">
  416. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
  417. </mask>
  418. </defs>
  419. <g transform="matrix(1 0 0 1 -20 -259 )">
  420. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 259 )" class="fill" />
  421. <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 259 )" class="stroke" mask="url(#u13497_img_cl993)" />
  422. <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 259 )" class="stroke" />
  423. </g>
  424. </svg>
  425. <div id="u13497_text" class="text " style="display:none; visibility: hidden">
  426. <p></p>
  427. </div>
  428. </div>
  429. </div>
  430. <!-- Unnamed (Group) -->
  431. <div id="u13498" class="ax_default" data-left="1194" data-top="11" data-width="386" data-height="27" layer-opacity="1">
  432. <!-- Unnamed (Droplist) -->
  433. <div id="u13499" class="ax_default droplist transition">
  434. <div id="u13499_div" class=""></div>
  435. <select id="u13499_input" class="u13499_input">
  436. <option class="u13499_input_option" value="西安中尚硕房地产开发有限公司">西安中尚硕房地产开发有限公司</option>
  437. </select>
  438. </div>
  439. <!-- Unnamed (Placeholder) -->
  440. <div id="u13500" class="ax_default placeholder transition">
  441. <svg data="images/物业员工/u13500.svg" id="u13500_img" class="img generatedImage">
  442. <defs>
  443. <pattern id="u13500_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  444. <mask fill="white" id="u13500_img_cl994">
  445. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  446. </mask>
  447. </defs>
  448. <g transform="matrix(1 0 0 1 -1194 -14 )">
  449. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 1194 14 )" class="fill" />
  450. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1194 14 )" class="stroke" mask="url(#u13500_img_cl994)" />
  451. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1194 14 )" class="stroke" />
  452. </g>
  453. </svg>
  454. <div id="u13500_text" class="text " style="display:none; visibility: hidden">
  455. <p></p>
  456. </div>
  457. </div>
  458. <!-- Unnamed (Rectangle) -->
  459. <div id="u13501" class="ax_default label transition">
  460. <div id="u13501_div" class=""></div>
  461. <div id="u13501_text" class="text ">
  462. <p><span>进入运营后台</span></p>
  463. </div>
  464. </div>
  465. <!-- Unnamed (Vertical line) -->
  466. <div id="u13502" class="ax_default line1 transition">
  467. <svg data="images/pc网页端/u45.svg" id="u13502_img" class="img generatedImage">
  468. <g transform="matrix(1 0 0 1 -1452 -19 )">
  469. <path d="M 0.5 0 L 0.5 11 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 1)" fill="none" transform="matrix(1 0 0 1 1452 19 )" class="stroke" />
  470. </g>
  471. </svg>
  472. <div id="u13502_text" class="text " style="display:none; visibility: hidden">
  473. <p></p>
  474. </div>
  475. </div>
  476. </div>
  477. <!-- Unnamed (Group) -->
  478. <div id="u13503" class="ax_default" data-left="20" data-top="1081" data-width="61" data-height="22" layer-opacity="1">
  479. <!-- Unnamed (Rectangle) -->
  480. <div id="u13504" class="ax_default label transition">
  481. <div id="u13504_div" class=""></div>
  482. <div id="u13504_text" class="text ">
  483. <p><span>应用</span></p>
  484. </div>
  485. </div>
  486. <!-- Unnamed (Placeholder) -->
  487. <div id="u13505" class="ax_default placeholder transition">
  488. <svg data="images/物业员工/u13505.svg" id="u13505_img" class="img generatedImage">
  489. <defs>
  490. <pattern id="u13505_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  491. <mask fill="white" id="u13505_img_cl995">
  492. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
  493. </mask>
  494. </defs>
  495. <g transform="matrix(1 0 0 1 -20 -1081 )">
  496. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1081 )" class="fill" />
  497. <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1081 )" class="stroke" mask="url(#u13505_img_cl995)" />
  498. <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1081 )" class="stroke" />
  499. </g>
  500. </svg>
  501. <div id="u13505_text" class="text " style="display:none; visibility: hidden">
  502. <p></p>
  503. </div>
  504. </div>
  505. </div>
  506. <!-- Unnamed (Line) -->
  507. <div id="u13506" class="ax_default line1 transition">
  508. <svg data="images/pc网页端/u49.svg" id="u13506_img" class="img generatedImage">
  509. <g transform="matrix(1 0 0 1 -20 -1123 )">
  510. <path d="M 0 0.5 L 68 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 1123 )" class="stroke" />
  511. </g>
  512. </svg>
  513. <div id="u13506_text" class="text " style="display:none; visibility: hidden">
  514. <p></p>
  515. </div>
  516. </div>
  517. <!-- Unnamed (Line) -->
  518. <div id="u13507" class="ax_default line1 transition">
  519. <svg data="images/pc网页端/u49.svg" id="u13507_img" class="img generatedImage">
  520. <g transform="matrix(1 0 0 1 -20 -1123 )">
  521. <path d="M 0 0.5 L 68 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 1123 )" class="stroke" />
  522. </g>
  523. </svg>
  524. <div id="u13507_text" class="text " style="display:none; visibility: hidden">
  525. <p></p>
  526. </div>
  527. </div>
  528. <!-- Unnamed (Line) -->
  529. <div id="u13508" class="ax_default line1 transition">
  530. <svg data="images/pc网页端/u51.svg" id="u13508_img" class="img generatedImage">
  531. <g transform="matrix(1 0 0 1 -20 -112 )">
  532. <path d="M 0 0.5 L 56 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 112 )" class="stroke" />
  533. </g>
  534. </svg>
  535. <div id="u13508_text" class="text " style="display:none; visibility: hidden">
  536. <p></p>
  537. </div>
  538. </div>
  539. <!-- Unnamed (Group) -->
  540. <div id="u13509" class="ax_default" data-left="20" data-top="71" data-width="56" data-height="22" layer-opacity="1">
  541. <!-- Unnamed (Rectangle) -->
  542. <div id="u13510" class="ax_default label transition">
  543. <div id="u13510_div" class=""></div>
  544. <div id="u13510_text" class="text ">
  545. <p><span>主页</span></p>
  546. </div>
  547. </div>
  548. <!-- Unnamed (Shape) -->
  549. <div id="u13511" class="ax_default icon transition">
  550. <svg data="images/pc网页端/u54.svg" id="u13511_img" class="img generatedImage">
  551. <defs>
  552. <pattern id="u13511_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  553. <mask fill="white" id="u13511_img_cl15">
  554. <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " fill-rule="evenodd" />
  555. </mask>
  556. </defs>
  557. <g transform="matrix(1 0 0 1 -20 -75 )">
  558. <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 20 75 )" class="fill" />
  559. <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 20 75 )" class="stroke" mask="url(#u13511_img_cl15)" />
  560. <path d="M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 20 75 )" class="stroke" mask="url(#u13511_img_cl15)" />
  561. </g>
  562. </svg>
  563. <div id="u13511_text" class="text " style="display:none; visibility: hidden">
  564. <p></p>
  565. </div>
  566. </div>
  567. </div>
  568. </div>
  569. <!-- Unnamed (Rectangle) -->
  570. <div id="u13512" class="ax_default box_2 transition">
  571. <div id="u13512_div" class=""></div>
  572. <div id="u13512_text" class="text " style="display:none; visibility: hidden">
  573. <p></p>
  574. </div>
  575. </div>
  576. <!-- Unnamed (Table) -->
  577. <div id="u13513" class="ax_default">
  578. <!-- Unnamed (Table cell) -->
  579. <div id="u13514" class="ax_default table_cell1 transition">
  580. <svg data="images/物业员工/u13514.svg" id="u13514_img" class="img generatedImage" viewbox="0 0 114 35">
  581. <path d="M 1 1 L 114 1 L 114 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" class="fill" />
  582. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" class="stroke" />
  583. <path d="M 0 0.5 L 114 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" class="stroke" />
  584. </svg>
  585. <div id="u13514_text" class="text ">
  586. <p><span>人员角色</span></p>
  587. </div>
  588. </div>
  589. <!-- Unnamed (Table cell) -->
  590. <div id="u13515" class="ax_default table_cell1 transition">
  591. <svg data="images/物业员工/u13515.svg" id="u13515_img" class="img generatedImage" viewbox="114 0 112 35">
  592. <path d="M 1 1 L 112 1 L 112 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 114 0 )" class="fill" />
  593. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 114 0 )" class="stroke" />
  594. <path d="M 0 0.5 L 112 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 114 0 )" class="stroke" />
  595. </svg>
  596. <div id="u13515_text" class="text ">
  597. <p><span>人员编号</span></p>
  598. </div>
  599. </div>
  600. <!-- Unnamed (Table cell) -->
  601. <div id="u13516" class="ax_default table_cell1 transition">
  602. <svg data="images/物业员工/u13516.svg" id="u13516_img" class="img generatedImage" viewbox="226 0 117 35">
  603. <path d="M 1 1 L 117 1 L 117 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 226 0 )" class="fill" />
  604. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 226 0 )" class="stroke" />
  605. <path d="M 0 0.5 L 117 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 226 0 )" class="stroke" />
  606. </svg>
  607. <div id="u13516_text" class="text ">
  608. <p><span>姓名</span></p>
  609. </div>
  610. </div>
  611. <!-- Unnamed (Table cell) -->
  612. <div id="u13517" class="ax_default table_cell1 transition">
  613. <svg data="images/物业员工/u13517.svg" id="u13517_img" class="img generatedImage" viewbox="343 0 81 35">
  614. <path d="M 1 1 L 81 1 L 81 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 343 0 )" class="fill" />
  615. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 343 0 )" class="stroke" />
  616. <path d="M 0 0.5 L 81 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 343 0 )" class="stroke" />
  617. </svg>
  618. <div id="u13517_text" class="text ">
  619. <p><span>性别</span></p>
  620. </div>
  621. </div>
  622. <!-- Unnamed (Table cell) -->
  623. <div id="u13518" class="ax_default table_cell1 transition">
  624. <svg data="images/物业员工/u13518.svg" id="u13518_img" class="img generatedImage" viewbox="425 0 113 35">
  625. <path d="M 1 1 L 113 1 L 113 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 425 0 )" class="fill" />
  626. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 425 0 )" class="stroke" />
  627. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 425 0 )" class="stroke" />
  628. </svg>
  629. <div id="u13518_text" class="text ">
  630. <p><span>手机号码</span></p>
  631. </div>
  632. </div>
  633. <!-- Unnamed (Table cell) -->
  634. <div id="u13519" class="ax_default table_cell1 transition">
  635. <svg data="images/物业员工/u13519.svg" id="u13519_img" class="img generatedImage" viewbox="537 0 112 35">
  636. <path d="M 1 1 L 112 1 L 112 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 537 0 )" class="fill" />
  637. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 537 0 )" class="stroke" />
  638. <path d="M 0 0.5 L 112 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 537 0 )" class="stroke" />
  639. </svg>
  640. <div id="u13519_text" class="text ">
  641. <p><span>证件类型</span></p>
  642. </div>
  643. </div>
  644. <!-- Unnamed (Table cell) -->
  645. <div id="u13520" class="ax_default table_cell1 transition">
  646. <svg data="images/物业员工/u13520.svg" id="u13520_img" class="img generatedImage" viewbox="650 0 111 35">
  647. <path d="M 1 1 L 111 1 L 111 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 650 0 )" class="fill" />
  648. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 650 0 )" class="stroke" />
  649. <path d="M 0 0.5 L 111 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 650 0 )" class="stroke" />
  650. </svg>
  651. <div id="u13520_text" class="text ">
  652. <p><span>证件号码</span></p>
  653. </div>
  654. </div>
  655. <!-- Unnamed (Table cell) -->
  656. <div id="u13521" class="ax_default table_cell1 transition">
  657. <svg data="images/物业员工/u13521.svg" id="u13521_img" class="img generatedImage" viewbox="761 0 112 35">
  658. <path d="M 1 1 L 112 1 L 112 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 761 0 )" class="fill" />
  659. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 761 0 )" class="stroke" />
  660. <path d="M 0 0.5 L 112 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 761 0 )" class="stroke" />
  661. </svg>
  662. <div id="u13521_text" class="text ">
  663. <p><span>人员标签</span></p>
  664. </div>
  665. </div>
  666. <!-- Unnamed (Table cell) -->
  667. <div id="u13522" class="ax_default table_cell1 transition">
  668. <svg data="images/物业员工/u13522.svg" id="u13522_img" class="img generatedImage" viewbox="873 0 134 35">
  669. <path d="M 1 1 L 133 1 L 133 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 873 0 )" class="fill" />
  670. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 873 0 )" class="stroke" />
  671. <path d="M 0 0.5 L 134 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 873 0 )" class="stroke" />
  672. <path d="M 133.5 1 L 133.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 873 0 )" class="stroke" />
  673. </svg>
  674. <div id="u13522_text" class="text ">
  675. <p><span>操作</span></p>
  676. </div>
  677. </div>
  678. <!-- Unnamed (Table cell) -->
  679. <div id="u13523" class="ax_default table_cell1 transition">
  680. <svg data="images/物业员工/u13523.svg" id="u13523_img" class="img generatedImage" viewbox="0 35 114 44">
  681. <path d="M 1 1 L 114 1 L 114 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 35 )" class="fill" />
  682. <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 35 )" class="stroke" />
  683. <path d="M 0 0.5 L 114 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 35 )" class="stroke" />
  684. </svg>
  685. <div id="u13523_text" class="text " style="display:none; visibility: hidden">
  686. <p></p>
  687. </div>
  688. </div>
  689. <!-- Unnamed (Table cell) -->
  690. <div id="u13524" class="ax_default table_cell1 transition">
  691. <svg data="images/物业员工/u13524.svg" id="u13524_img" class="img generatedImage" viewbox="114 35 112 44">
  692. <path d="M 1 1 L 112 1 L 112 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 114 35 )" class="fill" />
  693. <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 114 35 )" class="stroke" />
  694. <path d="M 0 0.5 L 112 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 114 35 )" class="stroke" />
  695. </svg>
  696. <div id="u13524_text" class="text " style="display:none; visibility: hidden">
  697. <p></p>
  698. </div>
  699. </div>
  700. <!-- Unnamed (Table cell) -->
  701. <div id="u13525" class="ax_default table_cell1 transition">
  702. <svg data="images/物业员工/u13525.svg" id="u13525_img" class="img generatedImage" viewbox="226 35 117 44">
  703. <path d="M 1 1 L 117 1 L 117 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 226 35 )" class="fill" />
  704. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 226 35 )" class="stroke" />
  705. <path d="M 0 0.5 L 117 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 226 35 )" class="stroke" />
  706. </svg>
  707. <div id="u13525_text" class="text " style="display:none; visibility: hidden">
  708. <p></p>
  709. </div>
  710. </div>
  711. <!-- Unnamed (Table cell) -->
  712. <div id="u13526" class="ax_default table_cell1 transition">
  713. <svg data="images/物业员工/u13526.svg" id="u13526_img" class="img generatedImage" viewbox="343 35 81 44">
  714. <path d="M 1 1 L 81 1 L 81 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 343 35 )" class="fill" />
  715. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 343 35 )" class="stroke" />
  716. <path d="M 0 0.5 L 81 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 343 35 )" class="stroke" />
  717. </svg>
  718. <div id="u13526_text" class="text " style="display:none; visibility: hidden">
  719. <p></p>
  720. </div>
  721. </div>
  722. <!-- Unnamed (Table cell) -->
  723. <div id="u13527" class="ax_default table_cell1 transition">
  724. <svg data="images/物业员工/u13527.svg" id="u13527_img" class="img generatedImage" viewbox="425 35 113 44">
  725. <path d="M 1 1 L 113 1 L 113 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 425 35 )" class="fill" />
  726. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 425 35 )" class="stroke" />
  727. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 425 35 )" class="stroke" />
  728. </svg>
  729. <div id="u13527_text" class="text " style="display:none; visibility: hidden">
  730. <p></p>
  731. </div>
  732. </div>
  733. <!-- Unnamed (Table cell) -->
  734. <div id="u13528" class="ax_default table_cell1 transition">
  735. <svg data="images/物业员工/u13528.svg" id="u13528_img" class="img generatedImage" viewbox="537 35 112 44">
  736. <path d="M 1 1 L 112 1 L 112 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 537 35 )" class="fill" />
  737. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 537 35 )" class="stroke" />
  738. <path d="M 0 0.5 L 112 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 537 35 )" class="stroke" />
  739. </svg>
  740. <div id="u13528_text" class="text " style="display:none; visibility: hidden">
  741. <p></p>
  742. </div>
  743. </div>
  744. <!-- Unnamed (Table cell) -->
  745. <div id="u13529" class="ax_default table_cell1 transition">
  746. <svg data="images/物业员工/u13529.svg" id="u13529_img" class="img generatedImage" viewbox="650 35 111 44">
  747. <path d="M 1 1 L 111 1 L 111 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 650 35 )" class="fill" />
  748. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 650 35 )" class="stroke" />
  749. <path d="M 0 0.5 L 111 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 650 35 )" class="stroke" />
  750. </svg>
  751. <div id="u13529_text" class="text " style="display:none; visibility: hidden">
  752. <p></p>
  753. </div>
  754. </div>
  755. <!-- Unnamed (Table cell) -->
  756. <div id="u13530" class="ax_default table_cell1 transition">
  757. <svg data="images/物业员工/u13530.svg" id="u13530_img" class="img generatedImage" viewbox="761 35 112 44">
  758. <path d="M 1 1 L 112 1 L 112 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 761 35 )" class="fill" />
  759. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 761 35 )" class="stroke" />
  760. <path d="M 0 0.5 L 112 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 761 35 )" class="stroke" />
  761. </svg>
  762. <div id="u13530_text" class="text " style="display:none; visibility: hidden">
  763. <p></p>
  764. </div>
  765. </div>
  766. <!-- Unnamed (Table cell) -->
  767. <div id="u13531" class="ax_default table_cell1 transition">
  768. <svg data="images/物业员工/u13531.svg" id="u13531_img" class="img generatedImage" viewbox="873 35 134 44">
  769. <path d="M 1 1 L 133 1 L 133 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 873 35 )" class="fill" />
  770. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 873 35 )" class="stroke" />
  771. <path d="M 0 0.5 L 134 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 873 35 )" class="stroke" />
  772. <path d="M 133.5 1 L 133.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 873 35 )" class="stroke" />
  773. </svg>
  774. <div id="u13531_text" class="text ">
  775. <p><span>授权&nbsp; 设置</span></p>
  776. </div>
  777. </div>
  778. <!-- Unnamed (Table cell) -->
  779. <div id="u13532" class="ax_default table_cell1 transition">
  780. <svg data="images/物业员工/u13532.svg" id="u13532_img" class="img generatedImage" viewbox="0 79 114 44">
  781. <path d="M 1 1 L 114 1 L 114 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 79 )" class="fill" />
  782. <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 79 )" class="stroke" />
  783. <path d="M 0 0.5 L 114 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 79 )" class="stroke" />
  784. </svg>
  785. <div id="u13532_text" class="text " style="display:none; visibility: hidden">
  786. <p></p>
  787. </div>
  788. </div>
  789. <!-- Unnamed (Table cell) -->
  790. <div id="u13533" class="ax_default table_cell1 transition">
  791. <svg data="images/物业员工/u13533.svg" id="u13533_img" class="img generatedImage" viewbox="114 79 112 44">
  792. <path d="M 1 1 L 112 1 L 112 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 114 79 )" class="fill" />
  793. <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 114 79 )" class="stroke" />
  794. <path d="M 0 0.5 L 112 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 114 79 )" class="stroke" />
  795. </svg>
  796. <div id="u13533_text" class="text " style="display:none; visibility: hidden">
  797. <p></p>
  798. </div>
  799. </div>
  800. <!-- Unnamed (Table cell) -->
  801. <div id="u13534" class="ax_default table_cell1 transition">
  802. <svg data="images/物业员工/u13534.svg" id="u13534_img" class="img generatedImage" viewbox="226 79 117 44">
  803. <path d="M 1 1 L 117 1 L 117 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 226 79 )" class="fill" />
  804. <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 226 79 )" class="stroke" />
  805. <path d="M 0 0.5 L 117 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 226 79 )" class="stroke" />
  806. </svg>
  807. <div id="u13534_text" class="text " style="display:none; visibility: hidden">
  808. <p></p>
  809. </div>
  810. </div>
  811. <!-- Unnamed (Table cell) -->
  812. <div id="u13535" class="ax_default table_cell1 transition">
  813. <svg data="images/物业员工/u13535.svg" id="u13535_img" class="img generatedImage" viewbox="343 79 81 44">
  814. <path d="M 1 1 L 81 1 L 81 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 343 79 )" class="fill" />
  815. <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 343 79 )" class="stroke" />
  816. <path d="M 0 0.5 L 81 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 343 79 )" class="stroke" />
  817. </svg>
  818. <div id="u13535_text" class="text " style="display:none; visibility: hidden">
  819. <p></p>
  820. </div>
  821. </div>
  822. <!-- Unnamed (Table cell) -->
  823. <div id="u13536" class="ax_default table_cell1 transition">
  824. <svg data="images/物业员工/u13536.svg" id="u13536_img" class="img generatedImage" viewbox="425 79 113 44">
  825. <path d="M 1 1 L 113 1 L 113 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 425 79 )" class="fill" />
  826. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 425 79 )" class="stroke" />
  827. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 425 79 )" class="stroke" />
  828. </svg>
  829. <div id="u13536_text" class="text " style="display:none; visibility: hidden">
  830. <p></p>
  831. </div>
  832. </div>
  833. <!-- Unnamed (Table cell) -->
  834. <div id="u13537" class="ax_default table_cell1 transition">
  835. <svg data="images/物业员工/u13537.svg" id="u13537_img" class="img generatedImage" viewbox="537 79 112 44">
  836. <path d="M 1 1 L 112 1 L 112 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 537 79 )" class="fill" />
  837. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 537 79 )" class="stroke" />
  838. <path d="M 0 0.5 L 112 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 537 79 )" class="stroke" />
  839. </svg>
  840. <div id="u13537_text" class="text " style="display:none; visibility: hidden">
  841. <p></p>
  842. </div>
  843. </div>
  844. <!-- Unnamed (Table cell) -->
  845. <div id="u13538" class="ax_default table_cell1 transition">
  846. <svg data="images/物业员工/u13538.svg" id="u13538_img" class="img generatedImage" viewbox="650 79 111 44">
  847. <path d="M 1 1 L 111 1 L 111 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 650 79 )" class="fill" />
  848. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 650 79 )" class="stroke" />
  849. <path d="M 0 0.5 L 111 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 650 79 )" class="stroke" />
  850. </svg>
  851. <div id="u13538_text" class="text " style="display:none; visibility: hidden">
  852. <p></p>
  853. </div>
  854. </div>
  855. <!-- Unnamed (Table cell) -->
  856. <div id="u13539" class="ax_default table_cell1 transition">
  857. <svg data="images/物业员工/u13539.svg" id="u13539_img" class="img generatedImage" viewbox="761 79 112 44">
  858. <path d="M 1 1 L 112 1 L 112 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 761 79 )" class="fill" />
  859. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 761 79 )" class="stroke" />
  860. <path d="M 0 0.5 L 112 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 761 79 )" class="stroke" />
  861. </svg>
  862. <div id="u13539_text" class="text " style="display:none; visibility: hidden">
  863. <p></p>
  864. </div>
  865. </div>
  866. <!-- Unnamed (Table cell) -->
  867. <div id="u13540" class="ax_default table_cell1 transition">
  868. <svg data="images/物业员工/u13540.svg" id="u13540_img" class="img generatedImage" viewbox="873 79 134 44">
  869. <path d="M 1 1 L 133 1 L 133 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 873 79 )" class="fill" />
  870. <path d="M 0.5 1 L 0.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 873 79 )" class="stroke" />
  871. <path d="M 0 0.5 L 134 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 873 79 )" class="stroke" />
  872. <path d="M 133.5 1 L 133.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 873 79 )" class="stroke" />
  873. </svg>
  874. <div id="u13540_text" class="text " style="display:none; visibility: hidden">
  875. <p></p>
  876. </div>
  877. </div>
  878. <!-- Unnamed (Table cell) -->
  879. <div id="u13541" class="ax_default table_cell1 transition">
  880. <svg data="images/物业员工/u13541.svg" id="u13541_img" class="img generatedImage" viewbox="0 123 114 38">
  881. <path d="M 1 1 L 114 1 L 114 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 123 )" class="fill" />
  882. <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 123 )" class="stroke" />
  883. <path d="M 0 0.5 L 114 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 123 )" class="stroke" />
  884. </svg>
  885. <div id="u13541_text" class="text " style="display:none; visibility: hidden">
  886. <p></p>
  887. </div>
  888. </div>
  889. <!-- Unnamed (Table cell) -->
  890. <div id="u13542" class="ax_default table_cell1 transition">
  891. <svg data="images/物业员工/u13542.svg" id="u13542_img" class="img generatedImage" viewbox="114 123 112 38">
  892. <path d="M 1 1 L 112 1 L 112 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 114 123 )" class="fill" />
  893. <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 114 123 )" class="stroke" />
  894. <path d="M 0 0.5 L 112 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 114 123 )" class="stroke" />
  895. </svg>
  896. <div id="u13542_text" class="text " style="display:none; visibility: hidden">
  897. <p></p>
  898. </div>
  899. </div>
  900. <!-- Unnamed (Table cell) -->
  901. <div id="u13543" class="ax_default table_cell1 transition">
  902. <svg data="images/物业员工/u13543.svg" id="u13543_img" class="img generatedImage" viewbox="226 123 117 38">
  903. <path d="M 1 1 L 117 1 L 117 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 226 123 )" class="fill" />
  904. <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 226 123 )" class="stroke" />
  905. <path d="M 0 0.5 L 117 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 226 123 )" class="stroke" />
  906. </svg>
  907. <div id="u13543_text" class="text " style="display:none; visibility: hidden">
  908. <p></p>
  909. </div>
  910. </div>
  911. <!-- Unnamed (Table cell) -->
  912. <div id="u13544" class="ax_default table_cell1 transition">
  913. <svg data="images/物业员工/u13544.svg" id="u13544_img" class="img generatedImage" viewbox="343 123 81 38">
  914. <path d="M 1 1 L 81 1 L 81 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 343 123 )" class="fill" />
  915. <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 343 123 )" class="stroke" />
  916. <path d="M 0 0.5 L 81 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 343 123 )" class="stroke" />
  917. </svg>
  918. <div id="u13544_text" class="text " style="display:none; visibility: hidden">
  919. <p></p>
  920. </div>
  921. </div>
  922. <!-- Unnamed (Table cell) -->
  923. <div id="u13545" class="ax_default table_cell1 transition">
  924. <svg data="images/物业员工/u13545.svg" id="u13545_img" class="img generatedImage" viewbox="425 123 113 38">
  925. <path d="M 1 1 L 113 1 L 113 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 425 123 )" class="fill" />
  926. <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 425 123 )" class="stroke" />
  927. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 425 123 )" class="stroke" />
  928. </svg>
  929. <div id="u13545_text" class="text " style="display:none; visibility: hidden">
  930. <p></p>
  931. </div>
  932. </div>
  933. <!-- Unnamed (Table cell) -->
  934. <div id="u13546" class="ax_default table_cell1 transition">
  935. <svg data="images/物业员工/u13546.svg" id="u13546_img" class="img generatedImage" viewbox="537 123 112 38">
  936. <path d="M 1 1 L 112 1 L 112 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 537 123 )" class="fill" />
  937. <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 537 123 )" class="stroke" />
  938. <path d="M 0 0.5 L 112 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 537 123 )" class="stroke" />
  939. </svg>
  940. <div id="u13546_text" class="text " style="display:none; visibility: hidden">
  941. <p></p>
  942. </div>
  943. </div>
  944. <!-- Unnamed (Table cell) -->
  945. <div id="u13547" class="ax_default table_cell1 transition">
  946. <svg data="images/物业员工/u13547.svg" id="u13547_img" class="img generatedImage" viewbox="650 123 111 38">
  947. <path d="M 1 1 L 111 1 L 111 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 650 123 )" class="fill" />
  948. <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 650 123 )" class="stroke" />
  949. <path d="M 0 0.5 L 111 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 650 123 )" class="stroke" />
  950. </svg>
  951. <div id="u13547_text" class="text " style="display:none; visibility: hidden">
  952. <p></p>
  953. </div>
  954. </div>
  955. <!-- Unnamed (Table cell) -->
  956. <div id="u13548" class="ax_default table_cell1 transition">
  957. <svg data="images/物业员工/u13548.svg" id="u13548_img" class="img generatedImage" viewbox="761 123 112 38">
  958. <path d="M 1 1 L 112 1 L 112 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 761 123 )" class="fill" />
  959. <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 761 123 )" class="stroke" />
  960. <path d="M 0 0.5 L 112 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 761 123 )" class="stroke" />
  961. </svg>
  962. <div id="u13548_text" class="text " style="display:none; visibility: hidden">
  963. <p></p>
  964. </div>
  965. </div>
  966. <!-- Unnamed (Table cell) -->
  967. <div id="u13549" class="ax_default table_cell1 transition">
  968. <svg data="images/物业员工/u13549.svg" id="u13549_img" class="img generatedImage" viewbox="873 123 134 38">
  969. <path d="M 1 1 L 133 1 L 133 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 873 123 )" class="fill" />
  970. <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 873 123 )" class="stroke" />
  971. <path d="M 0 0.5 L 134 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 873 123 )" class="stroke" />
  972. <path d="M 133.5 1 L 133.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 873 123 )" class="stroke" />
  973. </svg>
  974. <div id="u13549_text" class="text " style="display:none; visibility: hidden">
  975. <p></p>
  976. </div>
  977. </div>
  978. <!-- Unnamed (Table cell) -->
  979. <div id="u13550" class="ax_default table_cell1 transition">
  980. <svg data="images/物业员工/u13550.svg" id="u13550_img" class="img generatedImage" viewbox="0 161 114 38">
  981. <path d="M 1 1 L 114 1 L 114 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 161 )" class="fill" />
  982. <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 161 )" class="stroke" />
  983. <path d="M 0 0.5 L 114 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 161 )" class="stroke" />
  984. </svg>
  985. <div id="u13550_text" class="text " style="display:none; visibility: hidden">
  986. <p></p>
  987. </div>
  988. </div>
  989. <!-- Unnamed (Table cell) -->
  990. <div id="u13551" class="ax_default table_cell1 transition">
  991. <svg data="images/物业员工/u13551.svg" id="u13551_img" class="img generatedImage" viewbox="114 161 112 38">
  992. <path d="M 1 1 L 112 1 L 112 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 114 161 )" class="fill" />
  993. <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 114 161 )" class="stroke" />
  994. <path d="M 0 0.5 L 112 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 114 161 )" class="stroke" />
  995. </svg>
  996. <div id="u13551_text" class="text " style="display:none; visibility: hidden">
  997. <p></p>
  998. </div>
  999. </div>
  1000. <!-- Unnamed (Table cell) -->
  1001. <div id="u13552" class="ax_default table_cell1 transition">
  1002. <svg data="images/物业员工/u13552.svg" id="u13552_img" class="img generatedImage" viewbox="226 161 117 38">
  1003. <path d="M 1 1 L 117 1 L 117 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 226 161 )" class="fill" />
  1004. <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 226 161 )" class="stroke" />
  1005. <path d="M 0 0.5 L 117 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 226 161 )" class="stroke" />
  1006. </svg>
  1007. <div id="u13552_text" class="text " style="display:none; visibility: hidden">
  1008. <p></p>
  1009. </div>
  1010. </div>
  1011. <!-- Unnamed (Table cell) -->
  1012. <div id="u13553" class="ax_default table_cell1 transition">
  1013. <svg data="images/物业员工/u13553.svg" id="u13553_img" class="img generatedImage" viewbox="343 161 81 38">
  1014. <path d="M 1 1 L 81 1 L 81 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 343 161 )" class="fill" />
  1015. <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 343 161 )" class="stroke" />
  1016. <path d="M 0 0.5 L 81 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 343 161 )" class="stroke" />
  1017. </svg>
  1018. <div id="u13553_text" class="text " style="display:none; visibility: hidden">
  1019. <p></p>
  1020. </div>
  1021. </div>
  1022. <!-- Unnamed (Table cell) -->
  1023. <div id="u13554" class="ax_default table_cell1 transition">
  1024. <svg data="images/物业员工/u13554.svg" id="u13554_img" class="img generatedImage" viewbox="425 161 113 38">
  1025. <path d="M 1 1 L 113 1 L 113 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 425 161 )" class="fill" />
  1026. <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 425 161 )" class="stroke" />
  1027. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 425 161 )" class="stroke" />
  1028. </svg>
  1029. <div id="u13554_text" class="text " style="display:none; visibility: hidden">
  1030. <p></p>
  1031. </div>
  1032. </div>
  1033. <!-- Unnamed (Table cell) -->
  1034. <div id="u13555" class="ax_default table_cell1 transition">
  1035. <svg data="images/物业员工/u13555.svg" id="u13555_img" class="img generatedImage" viewbox="537 161 112 38">
  1036. <path d="M 1 1 L 112 1 L 112 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 537 161 )" class="fill" />
  1037. <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 537 161 )" class="stroke" />
  1038. <path d="M 0 0.5 L 112 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 537 161 )" class="stroke" />
  1039. </svg>
  1040. <div id="u13555_text" class="text " style="display:none; visibility: hidden">
  1041. <p></p>
  1042. </div>
  1043. </div>
  1044. <!-- Unnamed (Table cell) -->
  1045. <div id="u13556" class="ax_default table_cell1 transition">
  1046. <svg data="images/物业员工/u13556.svg" id="u13556_img" class="img generatedImage" viewbox="650 161 111 38">
  1047. <path d="M 1 1 L 111 1 L 111 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 650 161 )" class="fill" />
  1048. <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 650 161 )" class="stroke" />
  1049. <path d="M 0 0.5 L 111 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 650 161 )" class="stroke" />
  1050. </svg>
  1051. <div id="u13556_text" class="text " style="display:none; visibility: hidden">
  1052. <p></p>
  1053. </div>
  1054. </div>
  1055. <!-- Unnamed (Table cell) -->
  1056. <div id="u13557" class="ax_default table_cell1 transition">
  1057. <svg data="images/物业员工/u13557.svg" id="u13557_img" class="img generatedImage" viewbox="761 161 112 38">
  1058. <path d="M 1 1 L 112 1 L 112 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 761 161 )" class="fill" />
  1059. <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 761 161 )" class="stroke" />
  1060. <path d="M 0 0.5 L 112 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 761 161 )" class="stroke" />
  1061. </svg>
  1062. <div id="u13557_text" class="text " style="display:none; visibility: hidden">
  1063. <p></p>
  1064. </div>
  1065. </div>
  1066. <!-- Unnamed (Table cell) -->
  1067. <div id="u13558" class="ax_default table_cell1 transition">
  1068. <svg data="images/物业员工/u13558.svg" id="u13558_img" class="img generatedImage" viewbox="873 161 134 38">
  1069. <path d="M 1 1 L 133 1 L 133 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 873 161 )" class="fill" />
  1070. <path d="M 0.5 1 L 0.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 873 161 )" class="stroke" />
  1071. <path d="M 0 0.5 L 134 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 873 161 )" class="stroke" />
  1072. <path d="M 133.5 1 L 133.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 873 161 )" class="stroke" />
  1073. </svg>
  1074. <div id="u13558_text" class="text " style="display:none; visibility: hidden">
  1075. <p></p>
  1076. </div>
  1077. </div>
  1078. <!-- Unnamed (Table cell) -->
  1079. <div id="u13559" class="ax_default table_cell1 transition">
  1080. <svg data="images/物业员工/u13559.svg" id="u13559_img" class="img generatedImage" viewbox="0 199 114 38">
  1081. <path d="M 1 1 L 114 1 L 114 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 199 )" class="fill" />
  1082. <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 199 )" class="stroke" />
  1083. <path d="M 0 0.5 L 114 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 199 )" class="stroke" />
  1084. </svg>
  1085. <div id="u13559_text" class="text " style="display:none; visibility: hidden">
  1086. <p></p>
  1087. </div>
  1088. </div>
  1089. <!-- Unnamed (Table cell) -->
  1090. <div id="u13560" class="ax_default table_cell1 transition">
  1091. <svg data="images/物业员工/u13560.svg" id="u13560_img" class="img generatedImage" viewbox="114 199 112 38">
  1092. <path d="M 1 1 L 112 1 L 112 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 114 199 )" class="fill" />
  1093. <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 114 199 )" class="stroke" />
  1094. <path d="M 0 0.5 L 112 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 114 199 )" class="stroke" />
  1095. </svg>
  1096. <div id="u13560_text" class="text " style="display:none; visibility: hidden">
  1097. <p></p>
  1098. </div>
  1099. </div>
  1100. <!-- Unnamed (Table cell) -->
  1101. <div id="u13561" class="ax_default table_cell1 transition">
  1102. <svg data="images/物业员工/u13561.svg" id="u13561_img" class="img generatedImage" viewbox="226 199 117 38">
  1103. <path d="M 1 1 L 117 1 L 117 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 226 199 )" class="fill" />
  1104. <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 226 199 )" class="stroke" />
  1105. <path d="M 0 0.5 L 117 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 226 199 )" class="stroke" />
  1106. </svg>
  1107. <div id="u13561_text" class="text " style="display:none; visibility: hidden">
  1108. <p></p>
  1109. </div>
  1110. </div>
  1111. <!-- Unnamed (Table cell) -->
  1112. <div id="u13562" class="ax_default table_cell1 transition">
  1113. <svg data="images/物业员工/u13562.svg" id="u13562_img" class="img generatedImage" viewbox="343 199 81 38">
  1114. <path d="M 1 1 L 81 1 L 81 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 343 199 )" class="fill" />
  1115. <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 343 199 )" class="stroke" />
  1116. <path d="M 0 0.5 L 81 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 343 199 )" class="stroke" />
  1117. </svg>
  1118. <div id="u13562_text" class="text " style="display:none; visibility: hidden">
  1119. <p></p>
  1120. </div>
  1121. </div>
  1122. <!-- Unnamed (Table cell) -->
  1123. <div id="u13563" class="ax_default table_cell1 transition">
  1124. <svg data="images/物业员工/u13563.svg" id="u13563_img" class="img generatedImage" viewbox="425 199 113 38">
  1125. <path d="M 1 1 L 113 1 L 113 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 425 199 )" class="fill" />
  1126. <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 425 199 )" class="stroke" />
  1127. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 425 199 )" class="stroke" />
  1128. </svg>
  1129. <div id="u13563_text" class="text " style="display:none; visibility: hidden">
  1130. <p></p>
  1131. </div>
  1132. </div>
  1133. <!-- Unnamed (Table cell) -->
  1134. <div id="u13564" class="ax_default table_cell1 transition">
  1135. <svg data="images/物业员工/u13564.svg" id="u13564_img" class="img generatedImage" viewbox="537 199 112 38">
  1136. <path d="M 1 1 L 112 1 L 112 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 537 199 )" class="fill" />
  1137. <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 537 199 )" class="stroke" />
  1138. <path d="M 0 0.5 L 112 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 537 199 )" class="stroke" />
  1139. </svg>
  1140. <div id="u13564_text" class="text " style="display:none; visibility: hidden">
  1141. <p></p>
  1142. </div>
  1143. </div>
  1144. <!-- Unnamed (Table cell) -->
  1145. <div id="u13565" class="ax_default table_cell1 transition">
  1146. <svg data="images/物业员工/u13565.svg" id="u13565_img" class="img generatedImage" viewbox="650 199 111 38">
  1147. <path d="M 1 1 L 111 1 L 111 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 650 199 )" class="fill" />
  1148. <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 650 199 )" class="stroke" />
  1149. <path d="M 0 0.5 L 111 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 650 199 )" class="stroke" />
  1150. </svg>
  1151. <div id="u13565_text" class="text " style="display:none; visibility: hidden">
  1152. <p></p>
  1153. </div>
  1154. </div>
  1155. <!-- Unnamed (Table cell) -->
  1156. <div id="u13566" class="ax_default table_cell1 transition">
  1157. <svg data="images/物业员工/u13566.svg" id="u13566_img" class="img generatedImage" viewbox="761 199 112 38">
  1158. <path d="M 1 1 L 112 1 L 112 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 761 199 )" class="fill" />
  1159. <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 761 199 )" class="stroke" />
  1160. <path d="M 0 0.5 L 112 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 761 199 )" class="stroke" />
  1161. </svg>
  1162. <div id="u13566_text" class="text " style="display:none; visibility: hidden">
  1163. <p></p>
  1164. </div>
  1165. </div>
  1166. <!-- Unnamed (Table cell) -->
  1167. <div id="u13567" class="ax_default table_cell1 transition">
  1168. <svg data="images/物业员工/u13567.svg" id="u13567_img" class="img generatedImage" viewbox="873 199 134 38">
  1169. <path d="M 1 1 L 133 1 L 133 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 873 199 )" class="fill" />
  1170. <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 873 199 )" class="stroke" />
  1171. <path d="M 0 0.5 L 134 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 873 199 )" class="stroke" />
  1172. <path d="M 133.5 1 L 133.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 873 199 )" class="stroke" />
  1173. </svg>
  1174. <div id="u13567_text" class="text " style="display:none; visibility: hidden">
  1175. <p></p>
  1176. </div>
  1177. </div>
  1178. <!-- Unnamed (Table cell) -->
  1179. <div id="u13568" class="ax_default table_cell1 transition">
  1180. <svg data="images/物业员工/u13568.svg" id="u13568_img" class="img generatedImage" viewbox="0 237 114 38">
  1181. <path d="M 1 1 L 114 1 L 114 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 237 )" class="fill" />
  1182. <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 237 )" class="stroke" />
  1183. <path d="M 0 0.5 L 114 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 237 )" class="stroke" />
  1184. <path d="M 0 37.5 L 114 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 237 )" class="stroke" />
  1185. </svg>
  1186. <div id="u13568_text" class="text " style="display:none; visibility: hidden">
  1187. <p></p>
  1188. </div>
  1189. </div>
  1190. <!-- Unnamed (Table cell) -->
  1191. <div id="u13569" class="ax_default table_cell1 transition">
  1192. <svg data="images/物业员工/u13569.svg" id="u13569_img" class="img generatedImage" viewbox="114 237 112 38">
  1193. <path d="M 1 1 L 112 1 L 112 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 114 237 )" class="fill" />
  1194. <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 114 237 )" class="stroke" />
  1195. <path d="M 0 0.5 L 112 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 114 237 )" class="stroke" />
  1196. <path d="M 0 37.5 L 112 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 114 237 )" class="stroke" />
  1197. </svg>
  1198. <div id="u13569_text" class="text " style="display:none; visibility: hidden">
  1199. <p></p>
  1200. </div>
  1201. </div>
  1202. <!-- Unnamed (Table cell) -->
  1203. <div id="u13570" class="ax_default table_cell1 transition">
  1204. <svg data="images/物业员工/u13570.svg" id="u13570_img" class="img generatedImage" viewbox="226 237 117 38">
  1205. <path d="M 1 1 L 117 1 L 117 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 226 237 )" class="fill" />
  1206. <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 226 237 )" class="stroke" />
  1207. <path d="M 0 0.5 L 117 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 226 237 )" class="stroke" />
  1208. <path d="M 0 37.5 L 117 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 226 237 )" class="stroke" />
  1209. </svg>
  1210. <div id="u13570_text" class="text " style="display:none; visibility: hidden">
  1211. <p></p>
  1212. </div>
  1213. </div>
  1214. <!-- Unnamed (Table cell) -->
  1215. <div id="u13571" class="ax_default table_cell1 transition">
  1216. <svg data="images/物业员工/u13571.svg" id="u13571_img" class="img generatedImage" viewbox="343 237 81 38">
  1217. <path d="M 1 1 L 81 1 L 81 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 343 237 )" class="fill" />
  1218. <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 343 237 )" class="stroke" />
  1219. <path d="M 0 0.5 L 81 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 343 237 )" class="stroke" />
  1220. <path d="M 0 37.5 L 81 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 343 237 )" class="stroke" />
  1221. </svg>
  1222. <div id="u13571_text" class="text " style="display:none; visibility: hidden">
  1223. <p></p>
  1224. </div>
  1225. </div>
  1226. <!-- Unnamed (Table cell) -->
  1227. <div id="u13572" class="ax_default table_cell1 transition">
  1228. <svg data="images/物业员工/u13572.svg" id="u13572_img" class="img generatedImage" viewbox="425 237 113 38">
  1229. <path d="M 1 1 L 113 1 L 113 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 425 237 )" class="fill" />
  1230. <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 425 237 )" class="stroke" />
  1231. <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 425 237 )" class="stroke" />
  1232. <path d="M 0 37.5 L 113 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 425 237 )" class="stroke" />
  1233. </svg>
  1234. <div id="u13572_text" class="text " style="display:none; visibility: hidden">
  1235. <p></p>
  1236. </div>
  1237. </div>
  1238. <!-- Unnamed (Table cell) -->
  1239. <div id="u13573" class="ax_default table_cell1 transition">
  1240. <svg data="images/物业员工/u13573.svg" id="u13573_img" class="img generatedImage" viewbox="537 237 112 38">
  1241. <path d="M 1 1 L 112 1 L 112 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 537 237 )" class="fill" />
  1242. <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 537 237 )" class="stroke" />
  1243. <path d="M 0 0.5 L 112 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 537 237 )" class="stroke" />
  1244. <path d="M 0 37.5 L 112 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 537 237 )" class="stroke" />
  1245. </svg>
  1246. <div id="u13573_text" class="text " style="display:none; visibility: hidden">
  1247. <p></p>
  1248. </div>
  1249. </div>
  1250. <!-- Unnamed (Table cell) -->
  1251. <div id="u13574" class="ax_default table_cell1 transition">
  1252. <svg data="images/物业员工/u13574.svg" id="u13574_img" class="img generatedImage" viewbox="650 237 111 38">
  1253. <path d="M 1 1 L 111 1 L 111 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 650 237 )" class="fill" />
  1254. <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 650 237 )" class="stroke" />
  1255. <path d="M 0 0.5 L 111 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 650 237 )" class="stroke" />
  1256. <path d="M 0 37.5 L 111 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 650 237 )" class="stroke" />
  1257. </svg>
  1258. <div id="u13574_text" class="text " style="display:none; visibility: hidden">
  1259. <p></p>
  1260. </div>
  1261. </div>
  1262. <!-- Unnamed (Table cell) -->
  1263. <div id="u13575" class="ax_default table_cell1 transition">
  1264. <svg data="images/物业员工/u13575.svg" id="u13575_img" class="img generatedImage" viewbox="761 237 112 38">
  1265. <path d="M 1 1 L 112 1 L 112 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 761 237 )" class="fill" />
  1266. <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 761 237 )" class="stroke" />
  1267. <path d="M 0 0.5 L 112 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 761 237 )" class="stroke" />
  1268. <path d="M 0 37.5 L 112 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 761 237 )" class="stroke" />
  1269. </svg>
  1270. <div id="u13575_text" class="text " style="display:none; visibility: hidden">
  1271. <p></p>
  1272. </div>
  1273. </div>
  1274. <!-- Unnamed (Table cell) -->
  1275. <div id="u13576" class="ax_default table_cell1 transition">
  1276. <svg data="images/物业员工/u13576.svg" id="u13576_img" class="img generatedImage" viewbox="873 237 134 38">
  1277. <path d="M 1 1 L 133 1 L 133 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 873 237 )" class="fill" />
  1278. <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 873 237 )" class="stroke" />
  1279. <path d="M 0 0.5 L 134 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 873 237 )" class="stroke" />
  1280. <path d="M 133.5 1 L 133.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 873 237 )" class="stroke" />
  1281. <path d="M 0 37.5 L 134 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 873 237 )" class="stroke" />
  1282. </svg>
  1283. <div id="u13576_text" class="text " style="display:none; visibility: hidden">
  1284. <p></p>
  1285. </div>
  1286. </div>
  1287. </div>
  1288. <!-- Unnamed (Rectangle) -->
  1289. <div id="u13577" class="ax_default paragraph transition">
  1290. <div id="u13577_div" class=""></div>
  1291. <div id="u13577_text" class="text ">
  1292. <p><span>物业员工</span></p>
  1293. </div>
  1294. </div>
  1295. <!-- Unnamed (Group) -->
  1296. <div id="u13578" class="ax_default" data-left="563" data-top="239" data-width="140" data-height="30" layer-opacity="1">
  1297. <!-- Unnamed (Rectangle) -->
  1298. <div id="u13579" class="ax_default box_1 transition">
  1299. <div id="u13579_div" class=""></div>
  1300. <div id="u13579_text" class="text " style="display:none; visibility: hidden">
  1301. <p></p>
  1302. </div>
  1303. </div>
  1304. <!-- Unnamed (Droplist) -->
  1305. <div id="u13580" class="ax_default droplist transition">
  1306. <div id="u13580_div" class=""></div>
  1307. <select id="u13580_input" class="u13580_input">
  1308. <option class="u13580_input_option" value="证件类型">证件类型</option>
  1309. <option class="u13580_input_option" value="身份证">身份证</option>
  1310. <option class="u13580_input_option" value="营业执照">营业执照</option>
  1311. </select>
  1312. </div>
  1313. </div>
  1314. <!-- Unnamed (Group) -->
  1315. <div id="u13581" class="ax_default" data-left="350" data-top="150" data-width="133" data-height="30" layer-opacity="1">
  1316. <!-- Unnamed (Rectangle) -->
  1317. <div id="u13582" class="ax_default paragraph transition">
  1318. <div id="u13582_div" class=""></div>
  1319. <div id="u13582_text" class="text ">
  1320. <p><span>西安保利天汇</span></p>
  1321. </div>
  1322. </div>
  1323. <!-- Unnamed (Shape) -->
  1324. <div id="u13583" class="ax_default icon1 transition">
  1325. <svg data="images/房屋住户/u13072.svg" id="u13583_img" class="img generatedImage">
  1326. <defs>
  1327. <pattern id="u13583_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  1328. <mask fill="white" id="u13583_img_cl978">
  1329. <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" />
  1330. </mask>
  1331. </defs>
  1332. <g transform="matrix(1 0 0 1 -471 -171 )">
  1333. <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" />
  1334. <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(#u13583_img_cl978)" />
  1335. </g>
  1336. </svg>
  1337. <div id="u13583_text" class="text " style="display:none; visibility: hidden">
  1338. <p></p>
  1339. </div>
  1340. </div>
  1341. </div>
  1342. <!-- Unnamed (Rectangle) -->
  1343. <div id="u13584" class="ax_default paragraph transition">
  1344. <div id="u13584_div" class=""></div>
  1345. <div id="u13584_text" class="text ">
  1346. <p><span>工作人员</span></p>
  1347. </div>
  1348. </div>
  1349. <!-- Unnamed (Rectangle) -->
  1350. <div id="u13585" class="ax_default box_1 transition">
  1351. <div id="u13585_div" class=""></div>
  1352. <div id="u13585_text" class="text ">
  1353. <p><span>新增</span></p>
  1354. </div>
  1355. </div>
  1356. <!-- Unnamed (Rectangle) -->
  1357. <div id="u13586" class="ax_default paragraph transition">
  1358. <div id="u13586_div" class=""></div>
  1359. <div id="u13586_text" class="text ">
  1360. <p><span>工作人员</span></p>
  1361. </div>
  1362. </div>
  1363. <!-- Unnamed (Rectangle) -->
  1364. <div id="u13587" class="ax_default paragraph transition">
  1365. <div id="u13587_div" class=""></div>
  1366. <div id="u13587_text" class="text ">
  1367. <p><span>楼栋管家</span></p>
  1368. </div>
  1369. </div>
  1370. <!-- Unnamed (Rectangle) -->
  1371. <div id="u13588" class="ax_default box_1 transition">
  1372. <div id="u13588_div" class=""></div>
  1373. <div id="u13588_text" class="text ">
  1374. <p><span>设置</span></p>
  1375. </div>
  1376. </div>
  1377. <!-- Unnamed (Rectangle) -->
  1378. <div id="u13589" class="ax_default paragraph transition">
  1379. <div id="u13589_div" class=""></div>
  1380. <div id="u13589_text" class="text ">
  1381. <p><span>楼栋工程师</span></p>
  1382. </div>
  1383. </div>
  1384. <!-- Unnamed (Rectangle) -->
  1385. <div id="u13590" class="ax_default box_2 transition">
  1386. <div id="u13590_div" class=""></div>
  1387. <div id="u13590_text" class="text " style="display:none; visibility: hidden">
  1388. <p></p>
  1389. </div>
  1390. </div>
  1391. <!-- Unnamed (Table) -->
  1392. <div id="u13591" class="ax_default">
  1393. <!-- Unnamed (Table cell) -->
  1394. <div id="u13592" class="ax_default table_cell1 transition">
  1395. <svg data="images/物业员工/u13592.svg" id="u13592_img" class="img generatedImage" viewbox="0 0 138 32">
  1396. <path d="M 1 1 L 138 1 L 138 32 L 1 32 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" class="fill" />
  1397. <path d="M 0.5 1 L 0.5 32 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" class="stroke" />
  1398. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" class="stroke" />
  1399. </svg>
  1400. <div id="u13592_text" class="text ">
  1401. <p><span>楼栋</span></p>
  1402. </div>
  1403. </div>
  1404. <!-- Unnamed (Table cell) -->
  1405. <div id="u13593" class="ax_default table_cell1 transition">
  1406. <svg data="images/物业员工/u13593.svg" id="u13593_img" class="img generatedImage" viewbox="138 0 143 32">
  1407. <path d="M 1 1 L 143 1 L 143 32 L 1 32 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 138 0 )" class="fill" />
  1408. <path d="M 0.5 1 L 0.5 32 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 138 0 )" class="stroke" />
  1409. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 138 0 )" class="stroke" />
  1410. </svg>
  1411. <div id="u13593_text" class="text ">
  1412. <p><span>人员</span></p>
  1413. </div>
  1414. </div>
  1415. <!-- Unnamed (Table cell) -->
  1416. <div id="u13594" class="ax_default table_cell1 transition">
  1417. <svg data="images/物业员工/u13594.svg" id="u13594_img" class="img generatedImage" viewbox="281 0 151 32">
  1418. <path d="M 1 1 L 151 1 L 151 32 L 1 32 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 281 0 )" class="fill" />
  1419. <path d="M 0.5 1 L 0.5 32 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 281 0 )" class="stroke" />
  1420. <path d="M 0 0.5 L 151 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 281 0 )" class="stroke" />
  1421. </svg>
  1422. <div id="u13594_text" class="text ">
  1423. <p><span>联系电话</span></p>
  1424. </div>
  1425. </div>
  1426. <!-- Unnamed (Table cell) -->
  1427. <div id="u13595" class="ax_default table_cell1 transition">
  1428. <svg data="images/物业员工/u13595.svg" id="u13595_img" class="img generatedImage" viewbox="432 0 144 32">
  1429. <path d="M 1 1 L 144 1 L 144 32 L 1 32 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 432 0 )" class="fill" />
  1430. <path d="M 0.5 1 L 0.5 32 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 432 0 )" class="stroke" />
  1431. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 432 0 )" class="stroke" />
  1432. </svg>
  1433. <div id="u13595_text" class="text ">
  1434. <p><span>楼栋</span></p>
  1435. </div>
  1436. </div>
  1437. <!-- Unnamed (Table cell) -->
  1438. <div id="u13596" class="ax_default table_cell1 transition">
  1439. <svg data="images/物业员工/u13596.svg" id="u13596_img" class="img generatedImage" viewbox="576 0 144 32">
  1440. <path d="M 1 1 L 144 1 L 144 32 L 1 32 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 576 0 )" class="fill" />
  1441. <path d="M 0.5 1 L 0.5 32 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 576 0 )" class="stroke" />
  1442. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 576 0 )" class="stroke" />
  1443. </svg>
  1444. <div id="u13596_text" class="text ">
  1445. <p><span>微信号</span></p>
  1446. </div>
  1447. </div>
  1448. <!-- Unnamed (Table cell) -->
  1449. <div id="u13597" class="ax_default table_cell1 transition">
  1450. <svg data="images/物业员工/u13597.svg" id="u13597_img" class="img generatedImage" viewbox="720 0 144 32">
  1451. <path d="M 1 1 L 144 1 L 144 32 L 1 32 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 720 0 )" class="fill" />
  1452. <path d="M 0.5 1 L 0.5 32 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 720 0 )" class="stroke" />
  1453. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 720 0 )" class="stroke" />
  1454. </svg>
  1455. <div id="u13597_text" class="text ">
  1456. <p><span>微信二维码</span></p>
  1457. </div>
  1458. </div>
  1459. <!-- Unnamed (Table cell) -->
  1460. <div id="u13598" class="ax_default table_cell1 transition">
  1461. <svg data="images/物业员工/u13598.svg" id="u13598_img" class="img generatedImage" viewbox="864 0 141 32">
  1462. <path d="M 1 1 L 140 1 L 140 32 L 1 32 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 864 0 )" class="fill" />
  1463. <path d="M 0.5 1 L 0.5 32 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 864 0 )" class="stroke" />
  1464. <path d="M 0 0.5 L 141 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 864 0 )" class="stroke" />
  1465. <path d="M 140.5 1 L 140.5 32 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 864 0 )" class="stroke" />
  1466. </svg>
  1467. <div id="u13598_text" class="text ">
  1468. <p><span>操作</span></p>
  1469. </div>
  1470. </div>
  1471. <!-- Unnamed (Table cell) -->
  1472. <div id="u13599" class="ax_default table_cell1 transition">
  1473. <svg data="images/物业员工/u13599.svg" id="u13599_img" class="img generatedImage" viewbox="0 32 138 44">
  1474. <path d="M 1 1 L 138 1 L 138 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 32 )" class="fill" />
  1475. <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 32 )" class="stroke" />
  1476. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 32 )" class="stroke" />
  1477. </svg>
  1478. <div id="u13599_text" class="text " style="display:none; visibility: hidden">
  1479. <p></p>
  1480. </div>
  1481. </div>
  1482. <!-- Unnamed (Table cell) -->
  1483. <div id="u13600" class="ax_default table_cell1 transition">
  1484. <svg data="images/物业员工/u13600.svg" id="u13600_img" class="img generatedImage" viewbox="138 32 143 44">
  1485. <path d="M 1 1 L 143 1 L 143 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 138 32 )" class="fill" />
  1486. <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 138 32 )" class="stroke" />
  1487. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 138 32 )" class="stroke" />
  1488. </svg>
  1489. <div id="u13600_text" class="text " style="display:none; visibility: hidden">
  1490. <p></p>
  1491. </div>
  1492. </div>
  1493. <!-- Unnamed (Table cell) -->
  1494. <div id="u13601" class="ax_default table_cell1 transition">
  1495. <svg data="images/物业员工/u13601.svg" id="u13601_img" class="img generatedImage" viewbox="281 32 151 44">
  1496. <path d="M 1 1 L 151 1 L 151 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 281 32 )" class="fill" />
  1497. <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 281 32 )" class="stroke" />
  1498. <path d="M 0 0.5 L 151 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 281 32 )" class="stroke" />
  1499. </svg>
  1500. <div id="u13601_text" class="text " style="display:none; visibility: hidden">
  1501. <p></p>
  1502. </div>
  1503. </div>
  1504. <!-- Unnamed (Table cell) -->
  1505. <div id="u13602" class="ax_default table_cell1 transition">
  1506. <svg data="images/物业员工/u13602.svg" id="u13602_img" class="img generatedImage" viewbox="432 32 144 44">
  1507. <path d="M 1 1 L 144 1 L 144 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 432 32 )" class="fill" />
  1508. <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 432 32 )" class="stroke" />
  1509. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 432 32 )" class="stroke" />
  1510. </svg>
  1511. <div id="u13602_text" class="text " style="display:none; visibility: hidden">
  1512. <p></p>
  1513. </div>
  1514. </div>
  1515. <!-- Unnamed (Table cell) -->
  1516. <div id="u13603" class="ax_default table_cell1 transition">
  1517. <svg data="images/物业员工/u13603.svg" id="u13603_img" class="img generatedImage" viewbox="576 32 144 44">
  1518. <path d="M 1 1 L 144 1 L 144 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 576 32 )" class="fill" />
  1519. <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 576 32 )" class="stroke" />
  1520. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 576 32 )" class="stroke" />
  1521. </svg>
  1522. <div id="u13603_text" class="text " style="display:none; visibility: hidden">
  1523. <p></p>
  1524. </div>
  1525. </div>
  1526. <!-- Unnamed (Table cell) -->
  1527. <div id="u13604" class="ax_default table_cell1 transition">
  1528. <svg data="images/物业员工/u13604.svg" id="u13604_img" class="img generatedImage" viewbox="720 32 144 44">
  1529. <path d="M 1 1 L 144 1 L 144 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 720 32 )" class="fill" />
  1530. <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 720 32 )" class="stroke" />
  1531. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 720 32 )" class="stroke" />
  1532. </svg>
  1533. <div id="u13604_text" class="text " style="display:none; visibility: hidden">
  1534. <p></p>
  1535. </div>
  1536. </div>
  1537. <!-- Unnamed (Table cell) -->
  1538. <div id="u13605" class="ax_default table_cell1 transition">
  1539. <svg data="images/物业员工/u13605.svg" id="u13605_img" class="img generatedImage" viewbox="864 32 141 44">
  1540. <path d="M 1 1 L 140 1 L 140 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 864 32 )" class="fill" />
  1541. <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 864 32 )" class="stroke" />
  1542. <path d="M 0 0.5 L 141 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 864 32 )" class="stroke" />
  1543. <path d="M 140.5 1 L 140.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 864 32 )" class="stroke" />
  1544. </svg>
  1545. <div id="u13605_text" class="text ">
  1546. <p><span>移除</span></p>
  1547. </div>
  1548. </div>
  1549. <!-- Unnamed (Table cell) -->
  1550. <div id="u13606" class="ax_default table_cell1 transition">
  1551. <svg data="images/物业员工/u13606.svg" id="u13606_img" class="img generatedImage" viewbox="0 76 138 44">
  1552. <path d="M 1 1 L 138 1 L 138 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 76 )" class="fill" />
  1553. <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 76 )" class="stroke" />
  1554. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 76 )" class="stroke" />
  1555. </svg>
  1556. <div id="u13606_text" class="text " style="display:none; visibility: hidden">
  1557. <p></p>
  1558. </div>
  1559. </div>
  1560. <!-- Unnamed (Table cell) -->
  1561. <div id="u13607" class="ax_default table_cell1 transition">
  1562. <svg data="images/物业员工/u13607.svg" id="u13607_img" class="img generatedImage" viewbox="138 76 143 44">
  1563. <path d="M 1 1 L 143 1 L 143 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 138 76 )" class="fill" />
  1564. <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 138 76 )" class="stroke" />
  1565. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 138 76 )" class="stroke" />
  1566. </svg>
  1567. <div id="u13607_text" class="text " style="display:none; visibility: hidden">
  1568. <p></p>
  1569. </div>
  1570. </div>
  1571. <!-- Unnamed (Table cell) -->
  1572. <div id="u13608" class="ax_default table_cell1 transition">
  1573. <svg data="images/物业员工/u13608.svg" id="u13608_img" class="img generatedImage" viewbox="281 76 151 44">
  1574. <path d="M 1 1 L 151 1 L 151 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 281 76 )" class="fill" />
  1575. <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 281 76 )" class="stroke" />
  1576. <path d="M 0 0.5 L 151 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 281 76 )" class="stroke" />
  1577. </svg>
  1578. <div id="u13608_text" class="text " style="display:none; visibility: hidden">
  1579. <p></p>
  1580. </div>
  1581. </div>
  1582. <!-- Unnamed (Table cell) -->
  1583. <div id="u13609" class="ax_default table_cell1 transition">
  1584. <svg data="images/物业员工/u13609.svg" id="u13609_img" class="img generatedImage" viewbox="432 76 144 44">
  1585. <path d="M 1 1 L 144 1 L 144 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 432 76 )" class="fill" />
  1586. <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 432 76 )" class="stroke" />
  1587. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 432 76 )" class="stroke" />
  1588. </svg>
  1589. <div id="u13609_text" class="text " style="display:none; visibility: hidden">
  1590. <p></p>
  1591. </div>
  1592. </div>
  1593. <!-- Unnamed (Table cell) -->
  1594. <div id="u13610" class="ax_default table_cell1 transition">
  1595. <svg data="images/物业员工/u13610.svg" id="u13610_img" class="img generatedImage" viewbox="576 76 144 44">
  1596. <path d="M 1 1 L 144 1 L 144 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 576 76 )" class="fill" />
  1597. <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 576 76 )" class="stroke" />
  1598. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 576 76 )" class="stroke" />
  1599. </svg>
  1600. <div id="u13610_text" class="text " style="display:none; visibility: hidden">
  1601. <p></p>
  1602. </div>
  1603. </div>
  1604. <!-- Unnamed (Table cell) -->
  1605. <div id="u13611" class="ax_default table_cell1 transition">
  1606. <svg data="images/物业员工/u13611.svg" id="u13611_img" class="img generatedImage" viewbox="720 76 144 44">
  1607. <path d="M 1 1 L 144 1 L 144 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 720 76 )" class="fill" />
  1608. <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 720 76 )" class="stroke" />
  1609. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 720 76 )" class="stroke" />
  1610. </svg>
  1611. <div id="u13611_text" class="text " style="display:none; visibility: hidden">
  1612. <p></p>
  1613. </div>
  1614. </div>
  1615. <!-- Unnamed (Table cell) -->
  1616. <div id="u13612" class="ax_default table_cell1 transition">
  1617. <svg data="images/物业员工/u13612.svg" id="u13612_img" class="img generatedImage" viewbox="864 76 141 44">
  1618. <path d="M 1 1 L 140 1 L 140 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 864 76 )" class="fill" />
  1619. <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 864 76 )" class="stroke" />
  1620. <path d="M 0 0.5 L 141 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 864 76 )" class="stroke" />
  1621. <path d="M 140.5 1 L 140.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 864 76 )" class="stroke" />
  1622. </svg>
  1623. <div id="u13612_text" class="text " style="display:none; visibility: hidden">
  1624. <p></p>
  1625. </div>
  1626. </div>
  1627. <!-- Unnamed (Table cell) -->
  1628. <div id="u13613" class="ax_default table_cell1 transition">
  1629. <svg data="images/物业员工/u13613.svg" id="u13613_img" class="img generatedImage" viewbox="0 120 138 44">
  1630. <path d="M 1 1 L 138 1 L 138 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 120 )" class="fill" />
  1631. <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 120 )" class="stroke" />
  1632. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 120 )" class="stroke" />
  1633. </svg>
  1634. <div id="u13613_text" class="text " style="display:none; visibility: hidden">
  1635. <p></p>
  1636. </div>
  1637. </div>
  1638. <!-- Unnamed (Table cell) -->
  1639. <div id="u13614" class="ax_default table_cell1 transition">
  1640. <svg data="images/物业员工/u13614.svg" id="u13614_img" class="img generatedImage" viewbox="138 120 143 44">
  1641. <path d="M 1 1 L 143 1 L 143 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 138 120 )" class="fill" />
  1642. <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 138 120 )" class="stroke" />
  1643. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 138 120 )" class="stroke" />
  1644. </svg>
  1645. <div id="u13614_text" class="text " style="display:none; visibility: hidden">
  1646. <p></p>
  1647. </div>
  1648. </div>
  1649. <!-- Unnamed (Table cell) -->
  1650. <div id="u13615" class="ax_default table_cell1 transition">
  1651. <svg data="images/物业员工/u13615.svg" id="u13615_img" class="img generatedImage" viewbox="281 120 151 44">
  1652. <path d="M 1 1 L 151 1 L 151 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 281 120 )" class="fill" />
  1653. <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 281 120 )" class="stroke" />
  1654. <path d="M 0 0.5 L 151 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 281 120 )" class="stroke" />
  1655. </svg>
  1656. <div id="u13615_text" class="text " style="display:none; visibility: hidden">
  1657. <p></p>
  1658. </div>
  1659. </div>
  1660. <!-- Unnamed (Table cell) -->
  1661. <div id="u13616" class="ax_default table_cell1 transition">
  1662. <svg data="images/物业员工/u13616.svg" id="u13616_img" class="img generatedImage" viewbox="432 120 144 44">
  1663. <path d="M 1 1 L 144 1 L 144 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 432 120 )" class="fill" />
  1664. <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 432 120 )" class="stroke" />
  1665. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 432 120 )" class="stroke" />
  1666. </svg>
  1667. <div id="u13616_text" class="text " style="display:none; visibility: hidden">
  1668. <p></p>
  1669. </div>
  1670. </div>
  1671. <!-- Unnamed (Table cell) -->
  1672. <div id="u13617" class="ax_default table_cell1 transition">
  1673. <svg data="images/物业员工/u13617.svg" id="u13617_img" class="img generatedImage" viewbox="576 120 144 44">
  1674. <path d="M 1 1 L 144 1 L 144 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 576 120 )" class="fill" />
  1675. <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 576 120 )" class="stroke" />
  1676. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 576 120 )" class="stroke" />
  1677. </svg>
  1678. <div id="u13617_text" class="text " style="display:none; visibility: hidden">
  1679. <p></p>
  1680. </div>
  1681. </div>
  1682. <!-- Unnamed (Table cell) -->
  1683. <div id="u13618" class="ax_default table_cell1 transition">
  1684. <svg data="images/物业员工/u13618.svg" id="u13618_img" class="img generatedImage" viewbox="720 120 144 44">
  1685. <path d="M 1 1 L 144 1 L 144 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 720 120 )" class="fill" />
  1686. <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 720 120 )" class="stroke" />
  1687. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 720 120 )" class="stroke" />
  1688. </svg>
  1689. <div id="u13618_text" class="text " style="display:none; visibility: hidden">
  1690. <p></p>
  1691. </div>
  1692. </div>
  1693. <!-- Unnamed (Table cell) -->
  1694. <div id="u13619" class="ax_default table_cell1 transition">
  1695. <svg data="images/物业员工/u13619.svg" id="u13619_img" class="img generatedImage" viewbox="864 120 141 44">
  1696. <path d="M 1 1 L 140 1 L 140 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 864 120 )" class="fill" />
  1697. <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 864 120 )" class="stroke" />
  1698. <path d="M 0 0.5 L 141 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 864 120 )" class="stroke" />
  1699. <path d="M 140.5 1 L 140.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 864 120 )" class="stroke" />
  1700. </svg>
  1701. <div id="u13619_text" class="text " style="display:none; visibility: hidden">
  1702. <p></p>
  1703. </div>
  1704. </div>
  1705. <!-- Unnamed (Table cell) -->
  1706. <div id="u13620" class="ax_default table_cell1 transition">
  1707. <svg data="images/物业员工/u13620.svg" id="u13620_img" class="img generatedImage" viewbox="0 164 138 38">
  1708. <path d="M 1 1 L 138 1 L 138 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 164 )" class="fill" />
  1709. <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 164 )" class="stroke" />
  1710. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 164 )" class="stroke" />
  1711. </svg>
  1712. <div id="u13620_text" class="text " style="display:none; visibility: hidden">
  1713. <p></p>
  1714. </div>
  1715. </div>
  1716. <!-- Unnamed (Table cell) -->
  1717. <div id="u13621" class="ax_default table_cell1 transition">
  1718. <svg data="images/物业员工/u13621.svg" id="u13621_img" class="img generatedImage" viewbox="138 164 143 38">
  1719. <path d="M 1 1 L 143 1 L 143 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 138 164 )" class="fill" />
  1720. <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 138 164 )" class="stroke" />
  1721. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 138 164 )" class="stroke" />
  1722. </svg>
  1723. <div id="u13621_text" class="text " style="display:none; visibility: hidden">
  1724. <p></p>
  1725. </div>
  1726. </div>
  1727. <!-- Unnamed (Table cell) -->
  1728. <div id="u13622" class="ax_default table_cell1 transition">
  1729. <svg data="images/物业员工/u13622.svg" id="u13622_img" class="img generatedImage" viewbox="281 164 151 38">
  1730. <path d="M 1 1 L 151 1 L 151 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 281 164 )" class="fill" />
  1731. <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 281 164 )" class="stroke" />
  1732. <path d="M 0 0.5 L 151 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 281 164 )" class="stroke" />
  1733. </svg>
  1734. <div id="u13622_text" class="text " style="display:none; visibility: hidden">
  1735. <p></p>
  1736. </div>
  1737. </div>
  1738. <!-- Unnamed (Table cell) -->
  1739. <div id="u13623" class="ax_default table_cell1 transition">
  1740. <svg data="images/物业员工/u13623.svg" id="u13623_img" class="img generatedImage" viewbox="432 164 144 38">
  1741. <path d="M 1 1 L 144 1 L 144 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 432 164 )" class="fill" />
  1742. <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 432 164 )" class="stroke" />
  1743. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 432 164 )" class="stroke" />
  1744. </svg>
  1745. <div id="u13623_text" class="text " style="display:none; visibility: hidden">
  1746. <p></p>
  1747. </div>
  1748. </div>
  1749. <!-- Unnamed (Table cell) -->
  1750. <div id="u13624" class="ax_default table_cell1 transition">
  1751. <svg data="images/物业员工/u13624.svg" id="u13624_img" class="img generatedImage" viewbox="576 164 144 38">
  1752. <path d="M 1 1 L 144 1 L 144 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 576 164 )" class="fill" />
  1753. <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 576 164 )" class="stroke" />
  1754. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 576 164 )" class="stroke" />
  1755. </svg>
  1756. <div id="u13624_text" class="text " style="display:none; visibility: hidden">
  1757. <p></p>
  1758. </div>
  1759. </div>
  1760. <!-- Unnamed (Table cell) -->
  1761. <div id="u13625" class="ax_default table_cell1 transition">
  1762. <svg data="images/物业员工/u13625.svg" id="u13625_img" class="img generatedImage" viewbox="720 164 144 38">
  1763. <path d="M 1 1 L 144 1 L 144 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 720 164 )" class="fill" />
  1764. <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 720 164 )" class="stroke" />
  1765. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 720 164 )" class="stroke" />
  1766. </svg>
  1767. <div id="u13625_text" class="text " style="display:none; visibility: hidden">
  1768. <p></p>
  1769. </div>
  1770. </div>
  1771. <!-- Unnamed (Table cell) -->
  1772. <div id="u13626" class="ax_default table_cell1 transition">
  1773. <svg data="images/物业员工/u13626.svg" id="u13626_img" class="img generatedImage" viewbox="864 164 141 38">
  1774. <path d="M 1 1 L 140 1 L 140 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 864 164 )" class="fill" />
  1775. <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 864 164 )" class="stroke" />
  1776. <path d="M 0 0.5 L 141 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 864 164 )" class="stroke" />
  1777. <path d="M 140.5 1 L 140.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 864 164 )" class="stroke" />
  1778. </svg>
  1779. <div id="u13626_text" class="text " style="display:none; visibility: hidden">
  1780. <p></p>
  1781. </div>
  1782. </div>
  1783. <!-- Unnamed (Table cell) -->
  1784. <div id="u13627" class="ax_default table_cell1 transition">
  1785. <svg data="images/物业员工/u13627.svg" id="u13627_img" class="img generatedImage" viewbox="0 202 138 38">
  1786. <path d="M 1 1 L 138 1 L 138 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 202 )" class="fill" />
  1787. <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 202 )" class="stroke" />
  1788. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 202 )" class="stroke" />
  1789. </svg>
  1790. <div id="u13627_text" class="text " style="display:none; visibility: hidden">
  1791. <p></p>
  1792. </div>
  1793. </div>
  1794. <!-- Unnamed (Table cell) -->
  1795. <div id="u13628" class="ax_default table_cell1 transition">
  1796. <svg data="images/物业员工/u13628.svg" id="u13628_img" class="img generatedImage" viewbox="138 202 143 38">
  1797. <path d="M 1 1 L 143 1 L 143 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 138 202 )" class="fill" />
  1798. <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 138 202 )" class="stroke" />
  1799. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 138 202 )" class="stroke" />
  1800. </svg>
  1801. <div id="u13628_text" class="text " style="display:none; visibility: hidden">
  1802. <p></p>
  1803. </div>
  1804. </div>
  1805. <!-- Unnamed (Table cell) -->
  1806. <div id="u13629" class="ax_default table_cell1 transition">
  1807. <svg data="images/物业员工/u13629.svg" id="u13629_img" class="img generatedImage" viewbox="281 202 151 38">
  1808. <path d="M 1 1 L 151 1 L 151 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 281 202 )" class="fill" />
  1809. <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 281 202 )" class="stroke" />
  1810. <path d="M 0 0.5 L 151 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 281 202 )" class="stroke" />
  1811. </svg>
  1812. <div id="u13629_text" class="text " style="display:none; visibility: hidden">
  1813. <p></p>
  1814. </div>
  1815. </div>
  1816. <!-- Unnamed (Table cell) -->
  1817. <div id="u13630" class="ax_default table_cell1 transition">
  1818. <svg data="images/物业员工/u13630.svg" id="u13630_img" class="img generatedImage" viewbox="432 202 144 38">
  1819. <path d="M 1 1 L 144 1 L 144 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 432 202 )" class="fill" />
  1820. <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 432 202 )" class="stroke" />
  1821. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 432 202 )" class="stroke" />
  1822. </svg>
  1823. <div id="u13630_text" class="text " style="display:none; visibility: hidden">
  1824. <p></p>
  1825. </div>
  1826. </div>
  1827. <!-- Unnamed (Table cell) -->
  1828. <div id="u13631" class="ax_default table_cell1 transition">
  1829. <svg data="images/物业员工/u13631.svg" id="u13631_img" class="img generatedImage" viewbox="576 202 144 38">
  1830. <path d="M 1 1 L 144 1 L 144 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 576 202 )" class="fill" />
  1831. <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 576 202 )" class="stroke" />
  1832. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 576 202 )" class="stroke" />
  1833. </svg>
  1834. <div id="u13631_text" class="text " style="display:none; visibility: hidden">
  1835. <p></p>
  1836. </div>
  1837. </div>
  1838. <!-- Unnamed (Table cell) -->
  1839. <div id="u13632" class="ax_default table_cell1 transition">
  1840. <svg data="images/物业员工/u13632.svg" id="u13632_img" class="img generatedImage" viewbox="720 202 144 38">
  1841. <path d="M 1 1 L 144 1 L 144 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 720 202 )" class="fill" />
  1842. <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 720 202 )" class="stroke" />
  1843. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 720 202 )" class="stroke" />
  1844. </svg>
  1845. <div id="u13632_text" class="text " style="display:none; visibility: hidden">
  1846. <p></p>
  1847. </div>
  1848. </div>
  1849. <!-- Unnamed (Table cell) -->
  1850. <div id="u13633" class="ax_default table_cell1 transition">
  1851. <svg data="images/物业员工/u13633.svg" id="u13633_img" class="img generatedImage" viewbox="864 202 141 38">
  1852. <path d="M 1 1 L 140 1 L 140 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 864 202 )" class="fill" />
  1853. <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 864 202 )" class="stroke" />
  1854. <path d="M 0 0.5 L 141 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 864 202 )" class="stroke" />
  1855. <path d="M 140.5 1 L 140.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 864 202 )" class="stroke" />
  1856. </svg>
  1857. <div id="u13633_text" class="text " style="display:none; visibility: hidden">
  1858. <p></p>
  1859. </div>
  1860. </div>
  1861. <!-- Unnamed (Table cell) -->
  1862. <div id="u13634" class="ax_default table_cell1 transition">
  1863. <svg data="images/物业员工/u13634.svg" id="u13634_img" class="img generatedImage" viewbox="0 240 138 38">
  1864. <path d="M 1 1 L 138 1 L 138 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 240 )" class="fill" />
  1865. <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 240 )" class="stroke" />
  1866. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 240 )" class="stroke" />
  1867. </svg>
  1868. <div id="u13634_text" class="text " style="display:none; visibility: hidden">
  1869. <p></p>
  1870. </div>
  1871. </div>
  1872. <!-- Unnamed (Table cell) -->
  1873. <div id="u13635" class="ax_default table_cell1 transition">
  1874. <svg data="images/物业员工/u13635.svg" id="u13635_img" class="img generatedImage" viewbox="138 240 143 38">
  1875. <path d="M 1 1 L 143 1 L 143 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 138 240 )" class="fill" />
  1876. <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 138 240 )" class="stroke" />
  1877. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 138 240 )" class="stroke" />
  1878. </svg>
  1879. <div id="u13635_text" class="text " style="display:none; visibility: hidden">
  1880. <p></p>
  1881. </div>
  1882. </div>
  1883. <!-- Unnamed (Table cell) -->
  1884. <div id="u13636" class="ax_default table_cell1 transition">
  1885. <svg data="images/物业员工/u13636.svg" id="u13636_img" class="img generatedImage" viewbox="281 240 151 38">
  1886. <path d="M 1 1 L 151 1 L 151 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 281 240 )" class="fill" />
  1887. <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 281 240 )" class="stroke" />
  1888. <path d="M 0 0.5 L 151 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 281 240 )" class="stroke" />
  1889. </svg>
  1890. <div id="u13636_text" class="text " style="display:none; visibility: hidden">
  1891. <p></p>
  1892. </div>
  1893. </div>
  1894. <!-- Unnamed (Table cell) -->
  1895. <div id="u13637" class="ax_default table_cell1 transition">
  1896. <svg data="images/物业员工/u13637.svg" id="u13637_img" class="img generatedImage" viewbox="432 240 144 38">
  1897. <path d="M 1 1 L 144 1 L 144 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 432 240 )" class="fill" />
  1898. <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 432 240 )" class="stroke" />
  1899. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 432 240 )" class="stroke" />
  1900. </svg>
  1901. <div id="u13637_text" class="text " style="display:none; visibility: hidden">
  1902. <p></p>
  1903. </div>
  1904. </div>
  1905. <!-- Unnamed (Table cell) -->
  1906. <div id="u13638" class="ax_default table_cell1 transition">
  1907. <svg data="images/物业员工/u13638.svg" id="u13638_img" class="img generatedImage" viewbox="576 240 144 38">
  1908. <path d="M 1 1 L 144 1 L 144 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 576 240 )" class="fill" />
  1909. <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 576 240 )" class="stroke" />
  1910. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 576 240 )" class="stroke" />
  1911. </svg>
  1912. <div id="u13638_text" class="text " style="display:none; visibility: hidden">
  1913. <p></p>
  1914. </div>
  1915. </div>
  1916. <!-- Unnamed (Table cell) -->
  1917. <div id="u13639" class="ax_default table_cell1 transition">
  1918. <svg data="images/物业员工/u13639.svg" id="u13639_img" class="img generatedImage" viewbox="720 240 144 38">
  1919. <path d="M 1 1 L 144 1 L 144 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 720 240 )" class="fill" />
  1920. <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 720 240 )" class="stroke" />
  1921. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 720 240 )" class="stroke" />
  1922. </svg>
  1923. <div id="u13639_text" class="text " style="display:none; visibility: hidden">
  1924. <p></p>
  1925. </div>
  1926. </div>
  1927. <!-- Unnamed (Table cell) -->
  1928. <div id="u13640" class="ax_default table_cell1 transition">
  1929. <svg data="images/物业员工/u13640.svg" id="u13640_img" class="img generatedImage" viewbox="864 240 141 38">
  1930. <path d="M 1 1 L 140 1 L 140 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 864 240 )" class="fill" />
  1931. <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 864 240 )" class="stroke" />
  1932. <path d="M 0 0.5 L 141 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 864 240 )" class="stroke" />
  1933. <path d="M 140.5 1 L 140.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 864 240 )" class="stroke" />
  1934. </svg>
  1935. <div id="u13640_text" class="text " style="display:none; visibility: hidden">
  1936. <p></p>
  1937. </div>
  1938. </div>
  1939. <!-- Unnamed (Table cell) -->
  1940. <div id="u13641" class="ax_default table_cell1 transition">
  1941. <svg data="images/物业员工/u13641.svg" id="u13641_img" class="img generatedImage" viewbox="0 278 138 38">
  1942. <path d="M 1 1 L 138 1 L 138 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 278 )" class="fill" />
  1943. <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 278 )" class="stroke" />
  1944. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 278 )" class="stroke" />
  1945. <path d="M 0 37.5 L 138 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 278 )" class="stroke" />
  1946. </svg>
  1947. <div id="u13641_text" class="text " style="display:none; visibility: hidden">
  1948. <p></p>
  1949. </div>
  1950. </div>
  1951. <!-- Unnamed (Table cell) -->
  1952. <div id="u13642" class="ax_default table_cell1 transition">
  1953. <svg data="images/物业员工/u13642.svg" id="u13642_img" class="img generatedImage" viewbox="138 278 143 38">
  1954. <path d="M 1 1 L 143 1 L 143 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 138 278 )" class="fill" />
  1955. <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 138 278 )" class="stroke" />
  1956. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 138 278 )" class="stroke" />
  1957. <path d="M 0 37.5 L 143 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 138 278 )" class="stroke" />
  1958. </svg>
  1959. <div id="u13642_text" class="text " style="display:none; visibility: hidden">
  1960. <p></p>
  1961. </div>
  1962. </div>
  1963. <!-- Unnamed (Table cell) -->
  1964. <div id="u13643" class="ax_default table_cell1 transition">
  1965. <svg data="images/物业员工/u13643.svg" id="u13643_img" class="img generatedImage" viewbox="281 278 151 38">
  1966. <path d="M 1 1 L 151 1 L 151 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 281 278 )" class="fill" />
  1967. <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 281 278 )" class="stroke" />
  1968. <path d="M 0 0.5 L 151 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 281 278 )" class="stroke" />
  1969. <path d="M 0 37.5 L 151 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 281 278 )" class="stroke" />
  1970. </svg>
  1971. <div id="u13643_text" class="text " style="display:none; visibility: hidden">
  1972. <p></p>
  1973. </div>
  1974. </div>
  1975. <!-- Unnamed (Table cell) -->
  1976. <div id="u13644" class="ax_default table_cell1 transition">
  1977. <svg data="images/物业员工/u13644.svg" id="u13644_img" class="img generatedImage" viewbox="432 278 144 38">
  1978. <path d="M 1 1 L 144 1 L 144 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 432 278 )" class="fill" />
  1979. <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 432 278 )" class="stroke" />
  1980. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 432 278 )" class="stroke" />
  1981. <path d="M 0 37.5 L 144 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 432 278 )" class="stroke" />
  1982. </svg>
  1983. <div id="u13644_text" class="text " style="display:none; visibility: hidden">
  1984. <p></p>
  1985. </div>
  1986. </div>
  1987. <!-- Unnamed (Table cell) -->
  1988. <div id="u13645" class="ax_default table_cell1 transition">
  1989. <svg data="images/物业员工/u13645.svg" id="u13645_img" class="img generatedImage" viewbox="576 278 144 38">
  1990. <path d="M 1 1 L 144 1 L 144 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 576 278 )" class="fill" />
  1991. <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 576 278 )" class="stroke" />
  1992. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 576 278 )" class="stroke" />
  1993. <path d="M 0 37.5 L 144 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 576 278 )" class="stroke" />
  1994. </svg>
  1995. <div id="u13645_text" class="text " style="display:none; visibility: hidden">
  1996. <p></p>
  1997. </div>
  1998. </div>
  1999. <!-- Unnamed (Table cell) -->
  2000. <div id="u13646" class="ax_default table_cell1 transition">
  2001. <svg data="images/物业员工/u13646.svg" id="u13646_img" class="img generatedImage" viewbox="720 278 144 38">
  2002. <path d="M 1 1 L 144 1 L 144 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 720 278 )" class="fill" />
  2003. <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 720 278 )" class="stroke" />
  2004. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 720 278 )" class="stroke" />
  2005. <path d="M 0 37.5 L 144 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 720 278 )" class="stroke" />
  2006. </svg>
  2007. <div id="u13646_text" class="text " style="display:none; visibility: hidden">
  2008. <p></p>
  2009. </div>
  2010. </div>
  2011. <!-- Unnamed (Table cell) -->
  2012. <div id="u13647" class="ax_default table_cell1 transition">
  2013. <svg data="images/物业员工/u13647.svg" id="u13647_img" class="img generatedImage" viewbox="864 278 141 38">
  2014. <path d="M 1 1 L 140 1 L 140 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 864 278 )" class="fill" />
  2015. <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 864 278 )" class="stroke" />
  2016. <path d="M 0 0.5 L 141 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 864 278 )" class="stroke" />
  2017. <path d="M 140.5 1 L 140.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 864 278 )" class="stroke" />
  2018. <path d="M 0 37.5 L 141 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 864 278 )" class="stroke" />
  2019. </svg>
  2020. <div id="u13647_text" class="text " style="display:none; visibility: hidden">
  2021. <p></p>
  2022. </div>
  2023. </div>
  2024. </div>
  2025. <!-- Unnamed (Rectangle) -->
  2026. <div id="u13648" class="ax_default paragraph transition">
  2027. <div id="u13648_div" class=""></div>
  2028. <div id="u13648_text" class="text ">
  2029. <p><span>房源人员</span></p>
  2030. </div>
  2031. </div>
  2032. <!-- Unnamed (Rectangle) -->
  2033. <div id="u13649" class="ax_default box_1 transition">
  2034. <div id="u13649_div" class=""></div>
  2035. <div id="u13649_text" class="text ">
  2036. <p><span>搜索</span></p>
  2037. </div>
  2038. </div>
  2039. <!-- Unnamed (Rectangle) -->
  2040. <div id="u13650" class="ax_default box_1 transition">
  2041. <div id="u13650_div" class=""></div>
  2042. <div id="u13650_text" class="text ">
  2043. <p><span>重置</span></p>
  2044. </div>
  2045. </div>
  2046. <!-- Unnamed (Group) -->
  2047. <div id="u13651" class="ax_default" data-left="3558" data-top="191" data-width="140" data-height="30" layer-opacity="1">
  2048. <!-- Unnamed (Rectangle) -->
  2049. <div id="u13652" class="ax_default box_1 transition">
  2050. <div id="u13652_div" class=""></div>
  2051. <div id="u13652_text" class="text " style="display:none; visibility: hidden">
  2052. <p></p>
  2053. </div>
  2054. </div>
  2055. <!-- Unnamed (Droplist) -->
  2056. <div id="u13653" class="ax_default droplist transition">
  2057. <div id="u13653_div" class=""></div>
  2058. <select id="u13653_input" class="u13653_input">
  2059. <option class="u13653_input_option" value="性别">性别</option>
  2060. </select>
  2061. </div>
  2062. </div>
  2063. <!-- Unnamed (Group) -->
  2064. <div id="u13654" class="ax_default" data-left="3408" data-top="191" data-width="140" data-height="30" layer-opacity="1">
  2065. <!-- Unnamed (Rectangle) -->
  2066. <div id="u13655" class="ax_default shape transition">
  2067. <div id="u13655_div" class=""></div>
  2068. <div id="u13655_text" class="text " style="display:none; visibility: hidden">
  2069. <p></p>
  2070. </div>
  2071. </div>
  2072. <!-- 选项内容 (Text field) -->
  2073. <div id="u13656" class="ax_default text_field transition" data-label="选项内容">
  2074. <div id="u13656_div" class=""></div>
  2075. <input id="u13656_input" type="text" value="" class="u13656_input"/>
  2076. </div>
  2077. </div>
  2078. <!-- Unnamed (Group) -->
  2079. <div id="u13657" class="ax_default" data-left="3708" data-top="191" data-width="140" data-height="30" layer-opacity="1">
  2080. <!-- Unnamed (Rectangle) -->
  2081. <div id="u13658" class="ax_default shape transition">
  2082. <div id="u13658_div" class=""></div>
  2083. <div id="u13658_text" class="text " style="display:none; visibility: hidden">
  2084. <p></p>
  2085. </div>
  2086. </div>
  2087. <!-- 选项内容 (Text field) -->
  2088. <div id="u13659" class="ax_default text_field transition" data-label="选项内容">
  2089. <div id="u13659_div" class=""></div>
  2090. <input id="u13659_input" type="text" value="" class="u13659_input"/>
  2091. </div>
  2092. </div>
  2093. <!-- Unnamed (Group) -->
  2094. <div id="u13660" class="ax_default" data-left="3258" data-top="191" data-width="140" data-height="30" layer-opacity="1">
  2095. <!-- Unnamed (Rectangle) -->
  2096. <div id="u13661" class="ax_default box_1 transition">
  2097. <div id="u13661_div" class=""></div>
  2098. <div id="u13661_text" class="text " style="display:none; visibility: hidden">
  2099. <p></p>
  2100. </div>
  2101. </div>
  2102. <!-- Unnamed (Droplist) -->
  2103. <div id="u13662" class="ax_default droplist transition">
  2104. <div id="u13662_div" class=""></div>
  2105. <select id="u13662_input" class="u13662_input">
  2106. <option class="u13662_input_option" value="楼栋">楼栋</option>
  2107. </select>
  2108. </div>
  2109. </div>
  2110. <!-- Unnamed (Rectangle) -->
  2111. <div id="u13663" class="ax_default paragraph transition">
  2112. <div id="u13663_div" class=""></div>
  2113. <div id="u13663_text" class="text ">
  2114. <p><span>物业人员</span></p>
  2115. </div>
  2116. </div>
  2117. <!-- Unnamed (Rectangle) -->
  2118. <div id="u13664" class="ax_default paragraph transition">
  2119. <div id="u13664_div" class=""></div>
  2120. <div id="u13664_text" class="text ">
  2121. <p><span>临时登记</span></p>
  2122. </div>
  2123. </div>
  2124. <!-- Unnamed (Rectangle) -->
  2125. <div id="u13665" class="ax_default paragraph ax_default_hidden transition" style="display:none; visibility: hidden">
  2126. <div id="u13665_div" class=""></div>
  2127. <div id="u13665_text" class="text ">
  2128. <p><span>特殊人员</span></p>
  2129. </div>
  2130. </div>
  2131. <!-- Unnamed (Group) -->
  2132. <div id="u13666" class="ax_default" data-left="3045" data-top="150" data-width="133" data-height="30" layer-opacity="1">
  2133. <!-- Unnamed (Rectangle) -->
  2134. <div id="u13667" class="ax_default paragraph transition">
  2135. <div id="u13667_div" class=""></div>
  2136. <div id="u13667_text" class="text ">
  2137. <p><span>西安保利天汇</span></p>
  2138. </div>
  2139. </div>
  2140. <!-- Unnamed (Shape) -->
  2141. <div id="u13668" class="ax_default icon1 transition">
  2142. <svg data="images/房屋住户/u13072.svg" id="u13668_img" class="img generatedImage">
  2143. <defs>
  2144. <pattern id="u13668_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2145. <mask fill="white" id="u13668_img_cl978">
  2146. <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" />
  2147. </mask>
  2148. </defs>
  2149. <g transform="matrix(1 0 0 1 -471 -171 )">
  2150. <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" />
  2151. <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(#u13668_img_cl978)" />
  2152. </g>
  2153. </svg>
  2154. <div id="u13668_text" class="text " style="display:none; visibility: hidden">
  2155. <p></p>
  2156. </div>
  2157. </div>
  2158. </div>
  2159. <!-- Unnamed (Rectangle) -->
  2160. <div id="u13669" class="ax_default paragraph transition">
  2161. <div id="u13669_div" class=""></div>
  2162. <div id="u13669_text" class="text ">
  2163. <p><span>楼栋管家</span></p>
  2164. </div>
  2165. </div>
  2166. <!-- Unnamed (Rectangle) -->
  2167. <div id="u13670" class="ax_default paragraph transition">
  2168. <div id="u13670_div" class=""></div>
  2169. <div id="u13670_text" class="text ">
  2170. <p><span>工作人员</span></p>
  2171. </div>
  2172. </div>
  2173. <!-- Unnamed (Rectangle) -->
  2174. <div id="u13671" class="ax_default paragraph transition">
  2175. <div id="u13671_div" class=""></div>
  2176. <div id="u13671_text" class="text ">
  2177. <p><span>楼栋管家</span></p>
  2178. </div>
  2179. </div>
  2180. <!-- Unnamed (Rectangle) -->
  2181. <div id="u13672" class="ax_default box_1 transition">
  2182. <div id="u13672_div" class=""></div>
  2183. <div id="u13672_text" class="text ">
  2184. <p><span>设置</span></p>
  2185. </div>
  2186. </div>
  2187. <!-- Unnamed (Rectangle) -->
  2188. <div id="u13673" class="ax_default paragraph transition">
  2189. <div id="u13673_div" class=""></div>
  2190. <div id="u13673_text" class="text ">
  2191. <p><span>楼栋工程师</span></p>
  2192. </div>
  2193. </div>
  2194. <!-- Unnamed (Rectangle) -->
  2195. <div id="u13674" class="ax_default box_2 transition">
  2196. <div id="u13674_div" class=""></div>
  2197. <div id="u13674_text" class="text " style="display:none; visibility: hidden">
  2198. <p></p>
  2199. </div>
  2200. </div>
  2201. <!-- Unnamed (Table) -->
  2202. <div id="u13675" class="ax_default">
  2203. <!-- Unnamed (Table cell) -->
  2204. <div id="u13676" class="ax_default table_cell1 transition">
  2205. <svg data="images/物业员工/u13676.svg" id="u13676_img" class="img generatedImage" viewbox="0 0 138 35">
  2206. <path d="M 1 1 L 138 1 L 138 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" class="fill" />
  2207. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" class="stroke" />
  2208. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" class="stroke" />
  2209. </svg>
  2210. <div id="u13676_text" class="text ">
  2211. <p><span>楼栋</span></p>
  2212. </div>
  2213. </div>
  2214. <!-- Unnamed (Table cell) -->
  2215. <div id="u13677" class="ax_default table_cell1 transition">
  2216. <svg data="images/物业员工/u13677.svg" id="u13677_img" class="img generatedImage" viewbox="138 0 142 35">
  2217. <path d="M 1 1 L 142 1 L 142 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 138 0 )" class="fill" />
  2218. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 138 0 )" class="stroke" />
  2219. <path d="M 0 0.5 L 142 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 138 0 )" class="stroke" />
  2220. </svg>
  2221. <div id="u13677_text" class="text ">
  2222. <p><span>人员</span></p>
  2223. </div>
  2224. </div>
  2225. <!-- Unnamed (Table cell) -->
  2226. <div id="u13678" class="ax_default table_cell1 transition">
  2227. <svg data="images/物业员工/u13678.svg" id="u13678_img" class="img generatedImage" viewbox="280 0 150 35">
  2228. <path d="M 1 1 L 150 1 L 150 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 280 0 )" class="fill" />
  2229. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 280 0 )" class="stroke" />
  2230. <path d="M 0 0.5 L 150 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 280 0 )" class="stroke" />
  2231. </svg>
  2232. <div id="u13678_text" class="text ">
  2233. <p><span>联系电话</span></p>
  2234. </div>
  2235. </div>
  2236. <!-- Unnamed (Table cell) -->
  2237. <div id="u13679" class="ax_default table_cell1 transition">
  2238. <svg data="images/物业员工/u13679.svg" id="u13679_img" class="img generatedImage" viewbox="430 0 144 35">
  2239. <path d="M 1 1 L 144 1 L 144 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 430 0 )" class="fill" />
  2240. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 430 0 )" class="stroke" />
  2241. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 430 0 )" class="stroke" />
  2242. </svg>
  2243. <div id="u13679_text" class="text ">
  2244. <p><span>楼栋</span></p>
  2245. </div>
  2246. </div>
  2247. <!-- Unnamed (Table cell) -->
  2248. <div id="u13680" class="ax_default table_cell1 transition">
  2249. <svg data="images/物业员工/u13680.svg" id="u13680_img" class="img generatedImage" viewbox="574 0 144 35">
  2250. <path d="M 1 1 L 144 1 L 144 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 574 0 )" class="fill" />
  2251. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 574 0 )" class="stroke" />
  2252. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 574 0 )" class="stroke" />
  2253. </svg>
  2254. <div id="u13680_text" class="text ">
  2255. <p><span>微信号</span></p>
  2256. </div>
  2257. </div>
  2258. <!-- Unnamed (Table cell) -->
  2259. <div id="u13681" class="ax_default table_cell1 transition">
  2260. <svg data="images/物业员工/u13681.svg" id="u13681_img" class="img generatedImage" viewbox="718 0 144 35">
  2261. <path d="M 1 1 L 144 1 L 144 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 718 0 )" class="fill" />
  2262. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 718 0 )" class="stroke" />
  2263. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 718 0 )" class="stroke" />
  2264. </svg>
  2265. <div id="u13681_text" class="text ">
  2266. <p><span>微信二维码</span></p>
  2267. </div>
  2268. </div>
  2269. <!-- Unnamed (Table cell) -->
  2270. <div id="u13682" class="ax_default table_cell1 transition">
  2271. <svg data="images/物业员工/u13682.svg" id="u13682_img" class="img generatedImage" viewbox="862 0 143 35">
  2272. <path d="M 1 1 L 142 1 L 142 35 L 1 35 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 862 0 )" class="fill" />
  2273. <path d="M 0.5 1 L 0.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 862 0 )" class="stroke" />
  2274. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 862 0 )" class="stroke" />
  2275. <path d="M 142.5 1 L 142.5 35 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 862 0 )" class="stroke" />
  2276. </svg>
  2277. <div id="u13682_text" class="text ">
  2278. <p><span>操作</span></p>
  2279. </div>
  2280. </div>
  2281. <!-- Unnamed (Table cell) -->
  2282. <div id="u13683" class="ax_default table_cell1 transition">
  2283. <svg data="images/物业员工/u13683.svg" id="u13683_img" class="img generatedImage" viewbox="0 35 138 44">
  2284. <path d="M 1 1 L 138 1 L 138 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 35 )" class="fill" />
  2285. <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 35 )" class="stroke" />
  2286. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 35 )" class="stroke" />
  2287. </svg>
  2288. <div id="u13683_text" class="text " style="display:none; visibility: hidden">
  2289. <p></p>
  2290. </div>
  2291. </div>
  2292. <!-- Unnamed (Table cell) -->
  2293. <div id="u13684" class="ax_default table_cell1 transition">
  2294. <svg data="images/物业员工/u13684.svg" id="u13684_img" class="img generatedImage" viewbox="138 35 142 44">
  2295. <path d="M 1 1 L 142 1 L 142 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 138 35 )" class="fill" />
  2296. <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 138 35 )" class="stroke" />
  2297. <path d="M 0 0.5 L 142 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 138 35 )" class="stroke" />
  2298. </svg>
  2299. <div id="u13684_text" class="text " style="display:none; visibility: hidden">
  2300. <p></p>
  2301. </div>
  2302. </div>
  2303. <!-- Unnamed (Table cell) -->
  2304. <div id="u13685" class="ax_default table_cell1 transition">
  2305. <svg data="images/物业员工/u13685.svg" id="u13685_img" class="img generatedImage" viewbox="280 35 150 44">
  2306. <path d="M 1 1 L 150 1 L 150 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 280 35 )" class="fill" />
  2307. <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 280 35 )" class="stroke" />
  2308. <path d="M 0 0.5 L 150 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 280 35 )" class="stroke" />
  2309. </svg>
  2310. <div id="u13685_text" class="text " style="display:none; visibility: hidden">
  2311. <p></p>
  2312. </div>
  2313. </div>
  2314. <!-- Unnamed (Table cell) -->
  2315. <div id="u13686" class="ax_default table_cell1 transition">
  2316. <svg data="images/物业员工/u13686.svg" id="u13686_img" class="img generatedImage" viewbox="430 35 144 44">
  2317. <path d="M 1 1 L 144 1 L 144 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 430 35 )" class="fill" />
  2318. <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 430 35 )" class="stroke" />
  2319. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 430 35 )" class="stroke" />
  2320. </svg>
  2321. <div id="u13686_text" class="text " style="display:none; visibility: hidden">
  2322. <p></p>
  2323. </div>
  2324. </div>
  2325. <!-- Unnamed (Table cell) -->
  2326. <div id="u13687" class="ax_default table_cell1 transition">
  2327. <svg data="images/物业员工/u13687.svg" id="u13687_img" class="img generatedImage" viewbox="574 35 144 44">
  2328. <path d="M 1 1 L 144 1 L 144 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 574 35 )" class="fill" />
  2329. <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 574 35 )" class="stroke" />
  2330. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 574 35 )" class="stroke" />
  2331. </svg>
  2332. <div id="u13687_text" class="text " style="display:none; visibility: hidden">
  2333. <p></p>
  2334. </div>
  2335. </div>
  2336. <!-- Unnamed (Table cell) -->
  2337. <div id="u13688" class="ax_default table_cell1 transition">
  2338. <svg data="images/物业员工/u13688.svg" id="u13688_img" class="img generatedImage" viewbox="718 35 144 44">
  2339. <path d="M 1 1 L 144 1 L 144 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 718 35 )" class="fill" />
  2340. <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 718 35 )" class="stroke" />
  2341. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 718 35 )" class="stroke" />
  2342. </svg>
  2343. <div id="u13688_text" class="text " style="display:none; visibility: hidden">
  2344. <p></p>
  2345. </div>
  2346. </div>
  2347. <!-- Unnamed (Table cell) -->
  2348. <div id="u13689" class="ax_default table_cell1 transition">
  2349. <svg data="images/物业员工/u13689.svg" id="u13689_img" class="img generatedImage" viewbox="862 35 143 44">
  2350. <path d="M 1 1 L 142 1 L 142 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 862 35 )" class="fill" />
  2351. <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 862 35 )" class="stroke" />
  2352. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 862 35 )" class="stroke" />
  2353. <path d="M 142.5 1 L 142.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 862 35 )" class="stroke" />
  2354. </svg>
  2355. <div id="u13689_text" class="text ">
  2356. <p><span>移动</span></p>
  2357. </div>
  2358. </div>
  2359. <!-- Unnamed (Table cell) -->
  2360. <div id="u13690" class="ax_default table_cell1 transition">
  2361. <svg data="images/物业员工/u13690.svg" id="u13690_img" class="img generatedImage" viewbox="0 79 138 44">
  2362. <path d="M 1 1 L 138 1 L 138 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 79 )" class="fill" />
  2363. <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 79 )" class="stroke" />
  2364. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 79 )" class="stroke" />
  2365. </svg>
  2366. <div id="u13690_text" class="text " style="display:none; visibility: hidden">
  2367. <p></p>
  2368. </div>
  2369. </div>
  2370. <!-- Unnamed (Table cell) -->
  2371. <div id="u13691" class="ax_default table_cell1 transition">
  2372. <svg data="images/物业员工/u13691.svg" id="u13691_img" class="img generatedImage" viewbox="138 79 142 44">
  2373. <path d="M 1 1 L 142 1 L 142 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 138 79 )" class="fill" />
  2374. <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 138 79 )" class="stroke" />
  2375. <path d="M 0 0.5 L 142 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 138 79 )" class="stroke" />
  2376. </svg>
  2377. <div id="u13691_text" class="text " style="display:none; visibility: hidden">
  2378. <p></p>
  2379. </div>
  2380. </div>
  2381. <!-- Unnamed (Table cell) -->
  2382. <div id="u13692" class="ax_default table_cell1 transition">
  2383. <svg data="images/物业员工/u13692.svg" id="u13692_img" class="img generatedImage" viewbox="280 79 150 44">
  2384. <path d="M 1 1 L 150 1 L 150 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 280 79 )" class="fill" />
  2385. <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 280 79 )" class="stroke" />
  2386. <path d="M 0 0.5 L 150 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 280 79 )" class="stroke" />
  2387. </svg>
  2388. <div id="u13692_text" class="text " style="display:none; visibility: hidden">
  2389. <p></p>
  2390. </div>
  2391. </div>
  2392. <!-- Unnamed (Table cell) -->
  2393. <div id="u13693" class="ax_default table_cell1 transition">
  2394. <svg data="images/物业员工/u13693.svg" id="u13693_img" class="img generatedImage" viewbox="430 79 144 44">
  2395. <path d="M 1 1 L 144 1 L 144 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 430 79 )" class="fill" />
  2396. <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 430 79 )" class="stroke" />
  2397. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 430 79 )" class="stroke" />
  2398. </svg>
  2399. <div id="u13693_text" class="text " style="display:none; visibility: hidden">
  2400. <p></p>
  2401. </div>
  2402. </div>
  2403. <!-- Unnamed (Table cell) -->
  2404. <div id="u13694" class="ax_default table_cell1 transition">
  2405. <svg data="images/物业员工/u13694.svg" id="u13694_img" class="img generatedImage" viewbox="574 79 144 44">
  2406. <path d="M 1 1 L 144 1 L 144 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 574 79 )" class="fill" />
  2407. <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 574 79 )" class="stroke" />
  2408. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 574 79 )" class="stroke" />
  2409. </svg>
  2410. <div id="u13694_text" class="text " style="display:none; visibility: hidden">
  2411. <p></p>
  2412. </div>
  2413. </div>
  2414. <!-- Unnamed (Table cell) -->
  2415. <div id="u13695" class="ax_default table_cell1 transition">
  2416. <svg data="images/物业员工/u13695.svg" id="u13695_img" class="img generatedImage" viewbox="718 79 144 44">
  2417. <path d="M 1 1 L 144 1 L 144 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 718 79 )" class="fill" />
  2418. <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 718 79 )" class="stroke" />
  2419. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 718 79 )" class="stroke" />
  2420. </svg>
  2421. <div id="u13695_text" class="text " style="display:none; visibility: hidden">
  2422. <p></p>
  2423. </div>
  2424. </div>
  2425. <!-- Unnamed (Table cell) -->
  2426. <div id="u13696" class="ax_default table_cell1 transition">
  2427. <svg data="images/物业员工/u13696.svg" id="u13696_img" class="img generatedImage" viewbox="862 79 143 44">
  2428. <path d="M 1 1 L 142 1 L 142 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 862 79 )" class="fill" />
  2429. <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 862 79 )" class="stroke" />
  2430. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 862 79 )" class="stroke" />
  2431. <path d="M 142.5 1 L 142.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 862 79 )" class="stroke" />
  2432. </svg>
  2433. <div id="u13696_text" class="text " style="display:none; visibility: hidden">
  2434. <p></p>
  2435. </div>
  2436. </div>
  2437. <!-- Unnamed (Table cell) -->
  2438. <div id="u13697" class="ax_default table_cell1 transition">
  2439. <svg data="images/物业员工/u13697.svg" id="u13697_img" class="img generatedImage" viewbox="0 123 138 44">
  2440. <path d="M 1 1 L 138 1 L 138 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 123 )" class="fill" />
  2441. <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 123 )" class="stroke" />
  2442. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 123 )" class="stroke" />
  2443. </svg>
  2444. <div id="u13697_text" class="text " style="display:none; visibility: hidden">
  2445. <p></p>
  2446. </div>
  2447. </div>
  2448. <!-- Unnamed (Table cell) -->
  2449. <div id="u13698" class="ax_default table_cell1 transition">
  2450. <svg data="images/物业员工/u13698.svg" id="u13698_img" class="img generatedImage" viewbox="138 123 142 44">
  2451. <path d="M 1 1 L 142 1 L 142 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 138 123 )" class="fill" />
  2452. <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 138 123 )" class="stroke" />
  2453. <path d="M 0 0.5 L 142 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 138 123 )" class="stroke" />
  2454. </svg>
  2455. <div id="u13698_text" class="text " style="display:none; visibility: hidden">
  2456. <p></p>
  2457. </div>
  2458. </div>
  2459. <!-- Unnamed (Table cell) -->
  2460. <div id="u13699" class="ax_default table_cell1 transition">
  2461. <svg data="images/物业员工/u13699.svg" id="u13699_img" class="img generatedImage" viewbox="280 123 150 44">
  2462. <path d="M 1 1 L 150 1 L 150 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 280 123 )" class="fill" />
  2463. <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 280 123 )" class="stroke" />
  2464. <path d="M 0 0.5 L 150 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 280 123 )" class="stroke" />
  2465. </svg>
  2466. <div id="u13699_text" class="text " style="display:none; visibility: hidden">
  2467. <p></p>
  2468. </div>
  2469. </div>
  2470. <!-- Unnamed (Table cell) -->
  2471. <div id="u13700" class="ax_default table_cell1 transition">
  2472. <svg data="images/物业员工/u13700.svg" id="u13700_img" class="img generatedImage" viewbox="430 123 144 44">
  2473. <path d="M 1 1 L 144 1 L 144 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 430 123 )" class="fill" />
  2474. <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 430 123 )" class="stroke" />
  2475. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 430 123 )" class="stroke" />
  2476. </svg>
  2477. <div id="u13700_text" class="text " style="display:none; visibility: hidden">
  2478. <p></p>
  2479. </div>
  2480. </div>
  2481. <!-- Unnamed (Table cell) -->
  2482. <div id="u13701" class="ax_default table_cell1 transition">
  2483. <svg data="images/物业员工/u13701.svg" id="u13701_img" class="img generatedImage" viewbox="574 123 144 44">
  2484. <path d="M 1 1 L 144 1 L 144 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 574 123 )" class="fill" />
  2485. <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 574 123 )" class="stroke" />
  2486. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 574 123 )" class="stroke" />
  2487. </svg>
  2488. <div id="u13701_text" class="text " style="display:none; visibility: hidden">
  2489. <p></p>
  2490. </div>
  2491. </div>
  2492. <!-- Unnamed (Table cell) -->
  2493. <div id="u13702" class="ax_default table_cell1 transition">
  2494. <svg data="images/物业员工/u13702.svg" id="u13702_img" class="img generatedImage" viewbox="718 123 144 44">
  2495. <path d="M 1 1 L 144 1 L 144 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 718 123 )" class="fill" />
  2496. <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 718 123 )" class="stroke" />
  2497. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 718 123 )" class="stroke" />
  2498. </svg>
  2499. <div id="u13702_text" class="text " style="display:none; visibility: hidden">
  2500. <p></p>
  2501. </div>
  2502. </div>
  2503. <!-- Unnamed (Table cell) -->
  2504. <div id="u13703" class="ax_default table_cell1 transition">
  2505. <svg data="images/物业员工/u13703.svg" id="u13703_img" class="img generatedImage" viewbox="862 123 143 44">
  2506. <path d="M 1 1 L 142 1 L 142 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 862 123 )" class="fill" />
  2507. <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 862 123 )" class="stroke" />
  2508. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 862 123 )" class="stroke" />
  2509. <path d="M 142.5 1 L 142.5 44 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 862 123 )" class="stroke" />
  2510. </svg>
  2511. <div id="u13703_text" class="text " style="display:none; visibility: hidden">
  2512. <p></p>
  2513. </div>
  2514. </div>
  2515. <!-- Unnamed (Table cell) -->
  2516. <div id="u13704" class="ax_default table_cell1 transition">
  2517. <svg data="images/物业员工/u13704.svg" id="u13704_img" class="img generatedImage" viewbox="0 167 138 38">
  2518. <path d="M 1 1 L 138 1 L 138 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 167 )" class="fill" />
  2519. <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 167 )" class="stroke" />
  2520. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 167 )" class="stroke" />
  2521. </svg>
  2522. <div id="u13704_text" class="text " style="display:none; visibility: hidden">
  2523. <p></p>
  2524. </div>
  2525. </div>
  2526. <!-- Unnamed (Table cell) -->
  2527. <div id="u13705" class="ax_default table_cell1 transition">
  2528. <svg data="images/物业员工/u13705.svg" id="u13705_img" class="img generatedImage" viewbox="138 167 142 38">
  2529. <path d="M 1 1 L 142 1 L 142 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 138 167 )" class="fill" />
  2530. <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 138 167 )" class="stroke" />
  2531. <path d="M 0 0.5 L 142 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 138 167 )" class="stroke" />
  2532. </svg>
  2533. <div id="u13705_text" class="text " style="display:none; visibility: hidden">
  2534. <p></p>
  2535. </div>
  2536. </div>
  2537. <!-- Unnamed (Table cell) -->
  2538. <div id="u13706" class="ax_default table_cell1 transition">
  2539. <svg data="images/物业员工/u13706.svg" id="u13706_img" class="img generatedImage" viewbox="280 167 150 38">
  2540. <path d="M 1 1 L 150 1 L 150 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 280 167 )" class="fill" />
  2541. <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 280 167 )" class="stroke" />
  2542. <path d="M 0 0.5 L 150 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 280 167 )" class="stroke" />
  2543. </svg>
  2544. <div id="u13706_text" class="text " style="display:none; visibility: hidden">
  2545. <p></p>
  2546. </div>
  2547. </div>
  2548. <!-- Unnamed (Table cell) -->
  2549. <div id="u13707" class="ax_default table_cell1 transition">
  2550. <svg data="images/物业员工/u13707.svg" id="u13707_img" class="img generatedImage" viewbox="430 167 144 38">
  2551. <path d="M 1 1 L 144 1 L 144 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 430 167 )" class="fill" />
  2552. <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 430 167 )" class="stroke" />
  2553. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 430 167 )" class="stroke" />
  2554. </svg>
  2555. <div id="u13707_text" class="text " style="display:none; visibility: hidden">
  2556. <p></p>
  2557. </div>
  2558. </div>
  2559. <!-- Unnamed (Table cell) -->
  2560. <div id="u13708" class="ax_default table_cell1 transition">
  2561. <svg data="images/物业员工/u13708.svg" id="u13708_img" class="img generatedImage" viewbox="574 167 144 38">
  2562. <path d="M 1 1 L 144 1 L 144 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 574 167 )" class="fill" />
  2563. <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 574 167 )" class="stroke" />
  2564. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 574 167 )" class="stroke" />
  2565. </svg>
  2566. <div id="u13708_text" class="text " style="display:none; visibility: hidden">
  2567. <p></p>
  2568. </div>
  2569. </div>
  2570. <!-- Unnamed (Table cell) -->
  2571. <div id="u13709" class="ax_default table_cell1 transition">
  2572. <svg data="images/物业员工/u13709.svg" id="u13709_img" class="img generatedImage" viewbox="718 167 144 38">
  2573. <path d="M 1 1 L 144 1 L 144 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 718 167 )" class="fill" />
  2574. <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 718 167 )" class="stroke" />
  2575. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 718 167 )" class="stroke" />
  2576. </svg>
  2577. <div id="u13709_text" class="text " style="display:none; visibility: hidden">
  2578. <p></p>
  2579. </div>
  2580. </div>
  2581. <!-- Unnamed (Table cell) -->
  2582. <div id="u13710" class="ax_default table_cell1 transition">
  2583. <svg data="images/物业员工/u13710.svg" id="u13710_img" class="img generatedImage" viewbox="862 167 143 38">
  2584. <path d="M 1 1 L 142 1 L 142 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 862 167 )" class="fill" />
  2585. <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 862 167 )" class="stroke" />
  2586. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 862 167 )" class="stroke" />
  2587. <path d="M 142.5 1 L 142.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 862 167 )" class="stroke" />
  2588. </svg>
  2589. <div id="u13710_text" class="text " style="display:none; visibility: hidden">
  2590. <p></p>
  2591. </div>
  2592. </div>
  2593. <!-- Unnamed (Table cell) -->
  2594. <div id="u13711" class="ax_default table_cell1 transition">
  2595. <svg data="images/物业员工/u13711.svg" id="u13711_img" class="img generatedImage" viewbox="0 205 138 38">
  2596. <path d="M 1 1 L 138 1 L 138 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 205 )" class="fill" />
  2597. <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 205 )" class="stroke" />
  2598. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 205 )" class="stroke" />
  2599. </svg>
  2600. <div id="u13711_text" class="text " style="display:none; visibility: hidden">
  2601. <p></p>
  2602. </div>
  2603. </div>
  2604. <!-- Unnamed (Table cell) -->
  2605. <div id="u13712" class="ax_default table_cell1 transition">
  2606. <svg data="images/物业员工/u13712.svg" id="u13712_img" class="img generatedImage" viewbox="138 205 142 38">
  2607. <path d="M 1 1 L 142 1 L 142 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 138 205 )" class="fill" />
  2608. <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 138 205 )" class="stroke" />
  2609. <path d="M 0 0.5 L 142 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 138 205 )" class="stroke" />
  2610. </svg>
  2611. <div id="u13712_text" class="text " style="display:none; visibility: hidden">
  2612. <p></p>
  2613. </div>
  2614. </div>
  2615. <!-- Unnamed (Table cell) -->
  2616. <div id="u13713" class="ax_default table_cell1 transition">
  2617. <svg data="images/物业员工/u13713.svg" id="u13713_img" class="img generatedImage" viewbox="280 205 150 38">
  2618. <path d="M 1 1 L 150 1 L 150 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 280 205 )" class="fill" />
  2619. <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 280 205 )" class="stroke" />
  2620. <path d="M 0 0.5 L 150 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 280 205 )" class="stroke" />
  2621. </svg>
  2622. <div id="u13713_text" class="text " style="display:none; visibility: hidden">
  2623. <p></p>
  2624. </div>
  2625. </div>
  2626. <!-- Unnamed (Table cell) -->
  2627. <div id="u13714" class="ax_default table_cell1 transition">
  2628. <svg data="images/物业员工/u13714.svg" id="u13714_img" class="img generatedImage" viewbox="430 205 144 38">
  2629. <path d="M 1 1 L 144 1 L 144 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 430 205 )" class="fill" />
  2630. <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 430 205 )" class="stroke" />
  2631. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 430 205 )" class="stroke" />
  2632. </svg>
  2633. <div id="u13714_text" class="text " style="display:none; visibility: hidden">
  2634. <p></p>
  2635. </div>
  2636. </div>
  2637. <!-- Unnamed (Table cell) -->
  2638. <div id="u13715" class="ax_default table_cell1 transition">
  2639. <svg data="images/物业员工/u13715.svg" id="u13715_img" class="img generatedImage" viewbox="574 205 144 38">
  2640. <path d="M 1 1 L 144 1 L 144 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 574 205 )" class="fill" />
  2641. <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 574 205 )" class="stroke" />
  2642. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 574 205 )" class="stroke" />
  2643. </svg>
  2644. <div id="u13715_text" class="text " style="display:none; visibility: hidden">
  2645. <p></p>
  2646. </div>
  2647. </div>
  2648. <!-- Unnamed (Table cell) -->
  2649. <div id="u13716" class="ax_default table_cell1 transition">
  2650. <svg data="images/物业员工/u13716.svg" id="u13716_img" class="img generatedImage" viewbox="718 205 144 38">
  2651. <path d="M 1 1 L 144 1 L 144 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 718 205 )" class="fill" />
  2652. <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 718 205 )" class="stroke" />
  2653. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 718 205 )" class="stroke" />
  2654. </svg>
  2655. <div id="u13716_text" class="text " style="display:none; visibility: hidden">
  2656. <p></p>
  2657. </div>
  2658. </div>
  2659. <!-- Unnamed (Table cell) -->
  2660. <div id="u13717" class="ax_default table_cell1 transition">
  2661. <svg data="images/物业员工/u13717.svg" id="u13717_img" class="img generatedImage" viewbox="862 205 143 38">
  2662. <path d="M 1 1 L 142 1 L 142 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 862 205 )" class="fill" />
  2663. <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 862 205 )" class="stroke" />
  2664. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 862 205 )" class="stroke" />
  2665. <path d="M 142.5 1 L 142.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 862 205 )" class="stroke" />
  2666. </svg>
  2667. <div id="u13717_text" class="text " style="display:none; visibility: hidden">
  2668. <p></p>
  2669. </div>
  2670. </div>
  2671. <!-- Unnamed (Table cell) -->
  2672. <div id="u13718" class="ax_default table_cell1 transition">
  2673. <svg data="images/物业员工/u13718.svg" id="u13718_img" class="img generatedImage" viewbox="0 243 138 38">
  2674. <path d="M 1 1 L 138 1 L 138 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 243 )" class="fill" />
  2675. <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 243 )" class="stroke" />
  2676. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 243 )" class="stroke" />
  2677. </svg>
  2678. <div id="u13718_text" class="text " style="display:none; visibility: hidden">
  2679. <p></p>
  2680. </div>
  2681. </div>
  2682. <!-- Unnamed (Table cell) -->
  2683. <div id="u13719" class="ax_default table_cell1 transition">
  2684. <svg data="images/物业员工/u13719.svg" id="u13719_img" class="img generatedImage" viewbox="138 243 142 38">
  2685. <path d="M 1 1 L 142 1 L 142 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 138 243 )" class="fill" />
  2686. <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 138 243 )" class="stroke" />
  2687. <path d="M 0 0.5 L 142 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 138 243 )" class="stroke" />
  2688. </svg>
  2689. <div id="u13719_text" class="text " style="display:none; visibility: hidden">
  2690. <p></p>
  2691. </div>
  2692. </div>
  2693. <!-- Unnamed (Table cell) -->
  2694. <div id="u13720" class="ax_default table_cell1 transition">
  2695. <svg data="images/物业员工/u13720.svg" id="u13720_img" class="img generatedImage" viewbox="280 243 150 38">
  2696. <path d="M 1 1 L 150 1 L 150 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 280 243 )" class="fill" />
  2697. <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 280 243 )" class="stroke" />
  2698. <path d="M 0 0.5 L 150 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 280 243 )" class="stroke" />
  2699. </svg>
  2700. <div id="u13720_text" class="text " style="display:none; visibility: hidden">
  2701. <p></p>
  2702. </div>
  2703. </div>
  2704. <!-- Unnamed (Table cell) -->
  2705. <div id="u13721" class="ax_default table_cell1 transition">
  2706. <svg data="images/物业员工/u13721.svg" id="u13721_img" class="img generatedImage" viewbox="430 243 144 38">
  2707. <path d="M 1 1 L 144 1 L 144 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 430 243 )" class="fill" />
  2708. <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 430 243 )" class="stroke" />
  2709. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 430 243 )" class="stroke" />
  2710. </svg>
  2711. <div id="u13721_text" class="text " style="display:none; visibility: hidden">
  2712. <p></p>
  2713. </div>
  2714. </div>
  2715. <!-- Unnamed (Table cell) -->
  2716. <div id="u13722" class="ax_default table_cell1 transition">
  2717. <svg data="images/物业员工/u13722.svg" id="u13722_img" class="img generatedImage" viewbox="574 243 144 38">
  2718. <path d="M 1 1 L 144 1 L 144 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 574 243 )" class="fill" />
  2719. <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 574 243 )" class="stroke" />
  2720. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 574 243 )" class="stroke" />
  2721. </svg>
  2722. <div id="u13722_text" class="text " style="display:none; visibility: hidden">
  2723. <p></p>
  2724. </div>
  2725. </div>
  2726. <!-- Unnamed (Table cell) -->
  2727. <div id="u13723" class="ax_default table_cell1 transition">
  2728. <svg data="images/物业员工/u13723.svg" id="u13723_img" class="img generatedImage" viewbox="718 243 144 38">
  2729. <path d="M 1 1 L 144 1 L 144 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 718 243 )" class="fill" />
  2730. <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 718 243 )" class="stroke" />
  2731. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 718 243 )" class="stroke" />
  2732. </svg>
  2733. <div id="u13723_text" class="text " style="display:none; visibility: hidden">
  2734. <p></p>
  2735. </div>
  2736. </div>
  2737. <!-- Unnamed (Table cell) -->
  2738. <div id="u13724" class="ax_default table_cell1 transition">
  2739. <svg data="images/物业员工/u13724.svg" id="u13724_img" class="img generatedImage" viewbox="862 243 143 38">
  2740. <path d="M 1 1 L 142 1 L 142 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 862 243 )" class="fill" />
  2741. <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 862 243 )" class="stroke" />
  2742. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 862 243 )" class="stroke" />
  2743. <path d="M 142.5 1 L 142.5 38 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 862 243 )" class="stroke" />
  2744. </svg>
  2745. <div id="u13724_text" class="text " style="display:none; visibility: hidden">
  2746. <p></p>
  2747. </div>
  2748. </div>
  2749. <!-- Unnamed (Table cell) -->
  2750. <div id="u13725" class="ax_default table_cell1 transition">
  2751. <svg data="images/物业员工/u13725.svg" id="u13725_img" class="img generatedImage" viewbox="0 281 138 38">
  2752. <path d="M 1 1 L 138 1 L 138 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 281 )" class="fill" />
  2753. <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 281 )" class="stroke" />
  2754. <path d="M 0 0.5 L 138 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 281 )" class="stroke" />
  2755. <path d="M 0 37.5 L 138 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 0 281 )" class="stroke" />
  2756. </svg>
  2757. <div id="u13725_text" class="text " style="display:none; visibility: hidden">
  2758. <p></p>
  2759. </div>
  2760. </div>
  2761. <!-- Unnamed (Table cell) -->
  2762. <div id="u13726" class="ax_default table_cell1 transition">
  2763. <svg data="images/物业员工/u13726.svg" id="u13726_img" class="img generatedImage" viewbox="138 281 142 38">
  2764. <path d="M 1 1 L 142 1 L 142 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 138 281 )" class="fill" />
  2765. <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 138 281 )" class="stroke" />
  2766. <path d="M 0 0.5 L 142 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 138 281 )" class="stroke" />
  2767. <path d="M 0 37.5 L 142 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 138 281 )" class="stroke" />
  2768. </svg>
  2769. <div id="u13726_text" class="text " style="display:none; visibility: hidden">
  2770. <p></p>
  2771. </div>
  2772. </div>
  2773. <!-- Unnamed (Table cell) -->
  2774. <div id="u13727" class="ax_default table_cell1 transition">
  2775. <svg data="images/物业员工/u13727.svg" id="u13727_img" class="img generatedImage" viewbox="280 281 150 38">
  2776. <path d="M 1 1 L 150 1 L 150 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 280 281 )" class="fill" />
  2777. <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 280 281 )" class="stroke" />
  2778. <path d="M 0 0.5 L 150 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 280 281 )" class="stroke" />
  2779. <path d="M 0 37.5 L 150 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 280 281 )" class="stroke" />
  2780. </svg>
  2781. <div id="u13727_text" class="text " style="display:none; visibility: hidden">
  2782. <p></p>
  2783. </div>
  2784. </div>
  2785. <!-- Unnamed (Table cell) -->
  2786. <div id="u13728" class="ax_default table_cell1 transition">
  2787. <svg data="images/物业员工/u13728.svg" id="u13728_img" class="img generatedImage" viewbox="430 281 144 38">
  2788. <path d="M 1 1 L 144 1 L 144 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 430 281 )" class="fill" />
  2789. <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 430 281 )" class="stroke" />
  2790. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 430 281 )" class="stroke" />
  2791. <path d="M 0 37.5 L 144 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 430 281 )" class="stroke" />
  2792. </svg>
  2793. <div id="u13728_text" class="text " style="display:none; visibility: hidden">
  2794. <p></p>
  2795. </div>
  2796. </div>
  2797. <!-- Unnamed (Table cell) -->
  2798. <div id="u13729" class="ax_default table_cell1 transition">
  2799. <svg data="images/物业员工/u13729.svg" id="u13729_img" class="img generatedImage" viewbox="574 281 144 38">
  2800. <path d="M 1 1 L 144 1 L 144 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 574 281 )" class="fill" />
  2801. <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 574 281 )" class="stroke" />
  2802. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 574 281 )" class="stroke" />
  2803. <path d="M 0 37.5 L 144 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 574 281 )" class="stroke" />
  2804. </svg>
  2805. <div id="u13729_text" class="text " style="display:none; visibility: hidden">
  2806. <p></p>
  2807. </div>
  2808. </div>
  2809. <!-- Unnamed (Table cell) -->
  2810. <div id="u13730" class="ax_default table_cell1 transition">
  2811. <svg data="images/物业员工/u13730.svg" id="u13730_img" class="img generatedImage" viewbox="718 281 144 38">
  2812. <path d="M 1 1 L 144 1 L 144 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 718 281 )" class="fill" />
  2813. <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 718 281 )" class="stroke" />
  2814. <path d="M 0 0.5 L 144 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 718 281 )" class="stroke" />
  2815. <path d="M 0 37.5 L 144 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 718 281 )" class="stroke" />
  2816. </svg>
  2817. <div id="u13730_text" class="text " style="display:none; visibility: hidden">
  2818. <p></p>
  2819. </div>
  2820. </div>
  2821. <!-- Unnamed (Table cell) -->
  2822. <div id="u13731" class="ax_default table_cell1 transition">
  2823. <svg data="images/物业员工/u13731.svg" id="u13731_img" class="img generatedImage" viewbox="862 281 143 38">
  2824. <path d="M 1 1 L 142 1 L 142 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 862 281 )" class="fill" />
  2825. <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 862 281 )" class="stroke" />
  2826. <path d="M 0 0.5 L 143 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 862 281 )" class="stroke" />
  2827. <path d="M 142.5 1 L 142.5 37 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 862 281 )" class="stroke" />
  2828. <path d="M 0 37.5 L 143 37.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(215, 215, 215, 1)" fill="none" transform="matrix(1 0 0 1 862 281 )" class="stroke" />
  2829. </svg>
  2830. <div id="u13731_text" class="text " style="display:none; visibility: hidden">
  2831. <p></p>
  2832. </div>
  2833. </div>
  2834. </div>
  2835. <!-- Unnamed (Rectangle) -->
  2836. <div id="u13732" class="ax_default paragraph transition">
  2837. <div id="u13732_div" class=""></div>
  2838. <div id="u13732_text" class="text ">
  2839. <p><span>房源人员</span></p>
  2840. </div>
  2841. </div>
  2842. <!-- Unnamed (Rectangle) -->
  2843. <div id="u13733" class="ax_default box_1 transition">
  2844. <div id="u13733_div" class=""></div>
  2845. <div id="u13733_text" class="text ">
  2846. <p><span>搜索</span></p>
  2847. </div>
  2848. </div>
  2849. <!-- Unnamed (Rectangle) -->
  2850. <div id="u13734" class="ax_default box_1 transition">
  2851. <div id="u13734_div" class=""></div>
  2852. <div id="u13734_text" class="text ">
  2853. <p><span>重置</span></p>
  2854. </div>
  2855. </div>
  2856. <!-- Unnamed (Group) -->
  2857. <div id="u13735" class="ax_default" data-left="4847" data-top="191" data-width="140" data-height="30" layer-opacity="1">
  2858. <!-- Unnamed (Rectangle) -->
  2859. <div id="u13736" class="ax_default box_1 transition">
  2860. <div id="u13736_div" class=""></div>
  2861. <div id="u13736_text" class="text " style="display:none; visibility: hidden">
  2862. <p></p>
  2863. </div>
  2864. </div>
  2865. <!-- Unnamed (Droplist) -->
  2866. <div id="u13737" class="ax_default droplist transition">
  2867. <div id="u13737_div" class=""></div>
  2868. <select id="u13737_input" class="u13737_input">
  2869. <option class="u13737_input_option" value="性别">性别</option>
  2870. </select>
  2871. </div>
  2872. </div>
  2873. <!-- Unnamed (Group) -->
  2874. <div id="u13738" class="ax_default" data-left="4697" data-top="191" data-width="140" data-height="30" layer-opacity="1">
  2875. <!-- Unnamed (Rectangle) -->
  2876. <div id="u13739" class="ax_default shape transition">
  2877. <div id="u13739_div" class=""></div>
  2878. <div id="u13739_text" class="text " style="display:none; visibility: hidden">
  2879. <p></p>
  2880. </div>
  2881. </div>
  2882. <!-- 选项内容 (Text field) -->
  2883. <div id="u13740" class="ax_default text_field transition" data-label="选项内容">
  2884. <div id="u13740_div" class=""></div>
  2885. <input id="u13740_input" type="text" value="" class="u13740_input"/>
  2886. </div>
  2887. </div>
  2888. <!-- Unnamed (Group) -->
  2889. <div id="u13741" class="ax_default" data-left="4997" data-top="191" data-width="140" data-height="30" layer-opacity="1">
  2890. <!-- Unnamed (Rectangle) -->
  2891. <div id="u13742" class="ax_default shape transition">
  2892. <div id="u13742_div" class=""></div>
  2893. <div id="u13742_text" class="text " style="display:none; visibility: hidden">
  2894. <p></p>
  2895. </div>
  2896. </div>
  2897. <!-- 选项内容 (Text field) -->
  2898. <div id="u13743" class="ax_default text_field transition" data-label="选项内容">
  2899. <div id="u13743_div" class=""></div>
  2900. <input id="u13743_input" type="text" value="" class="u13743_input"/>
  2901. </div>
  2902. </div>
  2903. <!-- Unnamed (Group) -->
  2904. <div id="u13744" class="ax_default" data-left="4547" data-top="191" data-width="140" data-height="30" layer-opacity="1">
  2905. <!-- Unnamed (Rectangle) -->
  2906. <div id="u13745" class="ax_default box_1 transition">
  2907. <div id="u13745_div" class=""></div>
  2908. <div id="u13745_text" class="text " style="display:none; visibility: hidden">
  2909. <p></p>
  2910. </div>
  2911. </div>
  2912. <!-- Unnamed (Droplist) -->
  2913. <div id="u13746" class="ax_default droplist transition">
  2914. <div id="u13746_div" class=""></div>
  2915. <select id="u13746_input" class="u13746_input">
  2916. <option class="u13746_input_option" value="楼栋">楼栋</option>
  2917. </select>
  2918. </div>
  2919. </div>
  2920. <!-- Unnamed (Rectangle) -->
  2921. <div id="u13747" class="ax_default paragraph transition">
  2922. <div id="u13747_div" class=""></div>
  2923. <div id="u13747_text" class="text ">
  2924. <p><span>物业人员</span></p>
  2925. </div>
  2926. </div>
  2927. <!-- Unnamed (Rectangle) -->
  2928. <div id="u13748" class="ax_default paragraph transition">
  2929. <div id="u13748_div" class=""></div>
  2930. <div id="u13748_text" class="text ">
  2931. <p><span>临时登记</span></p>
  2932. </div>
  2933. </div>
  2934. <!-- Unnamed (Rectangle) -->
  2935. <div id="u13749" class="ax_default paragraph ax_default_hidden transition" style="display:none; visibility: hidden">
  2936. <div id="u13749_div" class=""></div>
  2937. <div id="u13749_text" class="text ">
  2938. <p><span>特殊人员</span></p>
  2939. </div>
  2940. </div>
  2941. <!-- Unnamed (Group) -->
  2942. <div id="u13750" class="ax_default" data-left="4334" data-top="150" data-width="133" data-height="30" layer-opacity="1">
  2943. <!-- Unnamed (Rectangle) -->
  2944. <div id="u13751" class="ax_default paragraph transition">
  2945. <div id="u13751_div" class=""></div>
  2946. <div id="u13751_text" class="text ">
  2947. <p><span>西安保利天汇</span></p>
  2948. </div>
  2949. </div>
  2950. <!-- Unnamed (Shape) -->
  2951. <div id="u13752" class="ax_default icon1 transition">
  2952. <svg data="images/房屋住户/u13072.svg" id="u13752_img" class="img generatedImage">
  2953. <defs>
  2954. <pattern id="u13752_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  2955. <mask fill="white" id="u13752_img_cl978">
  2956. <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" />
  2957. </mask>
  2958. </defs>
  2959. <g transform="matrix(1 0 0 1 -471 -171 )">
  2960. <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" />
  2961. <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(#u13752_img_cl978)" />
  2962. </g>
  2963. </svg>
  2964. <div id="u13752_text" class="text " style="display:none; visibility: hidden">
  2965. <p></p>
  2966. </div>
  2967. </div>
  2968. </div>
  2969. <!-- Unnamed (Rectangle) -->
  2970. <div id="u13753" class="ax_default paragraph transition">
  2971. <div id="u13753_div" class=""></div>
  2972. <div id="u13753_text" class="text ">
  2973. <p><span>楼栋工程师</span></p>
  2974. </div>
  2975. </div>
  2976. <!-- Unnamed (Rectangle) -->
  2977. <div id="u13754" class="ax_default paragraph transition">
  2978. <div id="u13754_div" class=""></div>
  2979. <div id="u13754_text" class="text ">
  2980. <p><span>工作人员</span></p>
  2981. </div>
  2982. </div>
  2983. <!-- Unnamed (Rectangle) -->
  2984. <div id="u13755" class="ax_default paragraph transition">
  2985. <div id="u13755_div" class=""></div>
  2986. <div id="u13755_text" class="text ">
  2987. <p><span>楼栋工程师</span></p>
  2988. </div>
  2989. </div>
  2990. <!-- Unnamed (Rectangle) -->
  2991. <div id="u13756" class="ax_default box_1 transition">
  2992. <div id="u13756_div" class=""></div>
  2993. <div id="u13756_text" class="text ">
  2994. <p><span>设置</span></p>
  2995. </div>
  2996. </div>
  2997. <!-- Unnamed (Rectangle) -->
  2998. <div id="u13757" class="ax_default paragraph transition">
  2999. <div id="u13757_div" class=""></div>
  3000. <div id="u13757_text" class="text ">
  3001. <p><span>楼栋管家</span></p>
  3002. </div>
  3003. </div>
  3004. <!-- Unnamed (Rectangle) -->
  3005. <div id="u13758" class="ax_default box_1 transition">
  3006. <div id="u13758_div" class=""></div>
  3007. <div id="u13758_text" class="text ">
  3008. <p><span>新增</span></p>
  3009. </div>
  3010. </div>
  3011. <!-- Unnamed (Rectangle) -->
  3012. <div id="u13759" class="ax_default box_1 transition">
  3013. <div id="u13759_div" class=""></div>
  3014. <div id="u13759_text" class="text ">
  3015. <p><span>新增</span></p>
  3016. </div>
  3017. </div>
  3018. <!-- Unnamed (Group) -->
  3019. <div id="u13760" class="ax_default" data-left="3615" data-top="652" data-width="500" data-height="330" layer-opacity="1">
  3020. <!-- Unnamed (Rectangle) -->
  3021. <div id="u13761" class="ax_default paragraph transition">
  3022. <div id="u13761_div" class=""></div>
  3023. <div id="u13761_text" class="text " style="display:none; visibility: hidden">
  3024. <p></p>
  3025. </div>
  3026. </div>
  3027. <!-- Unnamed (Rectangle) -->
  3028. <div id="u13762" class="ax_default paragraph transition">
  3029. <div id="u13762_div" class=""></div>
  3030. <div id="u13762_text" class="text ">
  3031. <p><span>新增管家</span></p>
  3032. </div>
  3033. </div>
  3034. <!-- Unnamed (Group) -->
  3035. <div id="u13763" class="ax_default" data-left="3615" data-top="922" data-width="500" data-height="60" layer-opacity="1">
  3036. <!-- Unnamed (Rectangle) -->
  3037. <div id="u13764" class="ax_default paragraph transition">
  3038. <div id="u13764_div" class=""></div>
  3039. <div id="u13764_text" class="text " style="display:none; visibility: hidden">
  3040. <p></p>
  3041. </div>
  3042. </div>
  3043. <!-- Unnamed (Shape) -->
  3044. <div id="u13765" class="ax_default box_1 transition">
  3045. <svg data="images/物业员工/u13765.svg" id="u13765_img" class="img generatedImage">
  3046. <defs>
  3047. <pattern id="u13765_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  3048. <mask fill="white" id="u13765_img_cl996">
  3049. <path d="M 0 26 L 0 4 C 0 1.759999999999991 1.3199999999999932 0 3 0 L 19.91803278688525 0 L 57 0 C 58.68000000000001 0 60 1.759999999999991 60 4 L 60 26 C 60 28.24000000000001 58.68000000000001 30 57 30 L 3 30 C 1.3199999999999932 30 0 28.24000000000001 0 26 Z " fill-rule="evenodd" />
  3050. </mask>
  3051. </defs>
  3052. <g transform="matrix(1 0 0 1 -4035 -937 )">
  3053. <path d="M 0 26 L 0 4 C 0 1.759999999999991 1.3199999999999932 0 3 0 L 19.91803278688525 0 L 57 0 C 58.68000000000001 0 60 1.759999999999991 60 4 L 60 26 C 60 28.24000000000001 58.68000000000001 30 57 30 L 3 30 C 1.3199999999999932 30 0 28.24000000000001 0 26 Z " fill-rule="nonzero" fill="rgba(24, 144, 255, 1)" stroke="none" transform="matrix(1 0 0 1 4035 937 )" class="fill" />
  3054. <path d="M 0 26 L 0 4 C 0 1.759999999999991 1.3199999999999932 0 3 0 L 19.91803278688525 0 L 57 0 C 58.68000000000001 0 60 1.759999999999991 60 4 L 60 26 C 60 28.24000000000001 58.68000000000001 30 57 30 L 3 30 C 1.3199999999999932 30 0 28.24000000000001 0 26 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(2, 167, 240, 1)" fill="none" transform="matrix(1 0 0 1 4035 937 )" class="stroke" mask="url(#u13765_img_cl996)" />
  3055. </g>
  3056. </svg>
  3057. <div id="u13765_text" class="text ">
  3058. <p><span>添加</span></p>
  3059. </div>
  3060. </div>
  3061. <!-- Unnamed (Rectangle) -->
  3062. <div id="u13766" class="ax_default box_1 transition">
  3063. <div id="u13766_div" class=""></div>
  3064. <div id="u13766_text" class="text ">
  3065. <p><span>取消</span></p>
  3066. </div>
  3067. </div>
  3068. </div>
  3069. <!-- Unnamed (Rectangle) -->
  3070. <div id="u13767" class="ax_default paragraph transition">
  3071. <div id="u13767_div" class=""></div>
  3072. <div id="u13767_text" class="text ">
  3073. <p><span>x</span></p>
  3074. </div>
  3075. </div>
  3076. <!-- Unnamed (Rectangle) -->
  3077. <div id="u13768" class="ax_default paragraph transition">
  3078. <div id="u13768_div" class=""></div>
  3079. <div id="u13768_text" class="text ">
  3080. <p><span>*所在楼栋</span></p>
  3081. </div>
  3082. </div>
  3083. <!-- Unnamed (Group) -->
  3084. <div id="u13769" class="ax_default" data-left="3667" data-top="757" data-width="300" data-height="40" layer-opacity="1">
  3085. <!-- Unnamed (Rectangle) -->
  3086. <div id="u13770" class="ax_default box_1 transition">
  3087. <div id="u13770_div" class=""></div>
  3088. <div id="u13770_text" class="text " style="display:none; visibility: hidden">
  3089. <p></p>
  3090. </div>
  3091. </div>
  3092. <!-- Unnamed (Droplist) -->
  3093. <div id="u13771" class="ax_default droplist transition">
  3094. <div id="u13771_div" class=""></div>
  3095. <select id="u13771_input" class="u13771_input">
  3096. <option class="u13771_input_option" value="选择楼栋(可多选)">选择楼栋(可多选)</option>
  3097. </select>
  3098. </div>
  3099. </div>
  3100. <!-- Unnamed (Rectangle) -->
  3101. <div id="u13772" class="ax_default paragraph transition">
  3102. <div id="u13772_div" class=""></div>
  3103. <div id="u13772_text" class="text ">
  3104. <p><span>*管家人员</span></p>
  3105. </div>
  3106. </div>
  3107. <!-- Unnamed (Group) -->
  3108. <div id="u13773" class="ax_default" data-left="3667" data-top="837" data-width="300" data-height="40" layer-opacity="1">
  3109. <!-- Unnamed (Rectangle) -->
  3110. <div id="u13774" class="ax_default box_1 transition">
  3111. <div id="u13774_div" class=""></div>
  3112. <div id="u13774_text" class="text " style="display:none; visibility: hidden">
  3113. <p></p>
  3114. </div>
  3115. </div>
  3116. <!-- Unnamed (Droplist) -->
  3117. <div id="u13775" class="ax_default droplist transition">
  3118. <div id="u13775_div" class=""></div>
  3119. <select id="u13775_input" class="u13775_input">
  3120. <option class="u13775_input_option" value="请选择工作人员">请选择工作人员</option>
  3121. </select>
  3122. </div>
  3123. </div>
  3124. </div>
  3125. <!-- Unnamed (Group) -->
  3126. <div id="u13776" class="ax_default" data-left="1458" data-top="385" data-width="80" data-height="100" layer-opacity="1">
  3127. <!-- Unnamed (Rectangle) -->
  3128. <div id="u13777" class="ax_default box_1 transition">
  3129. <div id="u13777_div" class=""></div>
  3130. <div id="u13777_text" class="text " style="display:none; visibility: hidden">
  3131. <p></p>
  3132. </div>
  3133. </div>
  3134. <!-- Unnamed (Rectangle) -->
  3135. <div id="u13778" class="ax_default box_1 transition">
  3136. <div id="u13778_div" class=""></div>
  3137. <div id="u13778_text" class="text ">
  3138. <p><span>删除</span></p>
  3139. </div>
  3140. </div>
  3141. <!-- Unnamed (Rectangle) -->
  3142. <div id="u13779" class="ax_default box_1 transition">
  3143. <div id="u13779_div" class=""></div>
  3144. <div id="u13779_text" class="text ">
  3145. <p><span>编辑</span></p>
  3146. </div>
  3147. </div>
  3148. </div>
  3149. <!-- Unnamed (客户-人员中心) -->
  3150. <div id="u13780" class="nopointer ax_default">
  3151. <!-- Unnamed (Group) -->
  3152. <div id="u13781" class="ax_default" data-left="120" data-top="50" data-width="201" data-height="1190" layer-opacity="1">
  3153. <!-- Unnamed (Rectangle) -->
  3154. <div id="u13782" class="ax_default box_2 transition">
  3155. <div id="u13782_div" class=""></div>
  3156. <div id="u13782_text" class="text " style="display:none; visibility: hidden">
  3157. <p></p>
  3158. </div>
  3159. </div>
  3160. <!-- Unnamed (Rectangle) -->
  3161. <div id="u13783" class="ax_default label transition">
  3162. <div id="u13783_div" class=""></div>
  3163. <div id="u13783_text" class="text ">
  3164. <p><span>客户中心</span></p>
  3165. </div>
  3166. </div>
  3167. <!-- Unnamed (Rectangle) -->
  3168. <div id="u13784" class="ax_default label transition">
  3169. <div id="u13784_div" class=""></div>
  3170. <div id="u13784_text" class="text ">
  3171. <p><span>入驻企业</span></p>
  3172. </div>
  3173. </div>
  3174. <!-- Unnamed (Rectangle) -->
  3175. <div id="u13785" class="ax_default label transition">
  3176. <div id="u13785_div" class=""></div>
  3177. <div id="u13785_text" class="text ">
  3178. <p><span>入驻机构</span></p>
  3179. </div>
  3180. </div>
  3181. <!-- Unnamed (Rectangle) -->
  3182. <div id="u13786" class="ax_default label transition">
  3183. <div id="u13786_div" class=""></div>
  3184. <div id="u13786_text" class="text ">
  3185. <p><span>人员登记</span></p>
  3186. </div>
  3187. </div>
  3188. <!-- Unnamed (Rectangle) -->
  3189. <div id="u13787" class="ax_default label transition">
  3190. <div id="u13787_div" class=""></div>
  3191. <div id="u13787_text" class="text ">
  3192. <p><span>房屋住户</span></p>
  3193. </div>
  3194. </div>
  3195. <!-- Unnamed (Line) -->
  3196. <div id="u13788" class="ax_default line1 transition">
  3197. <svg data="images/项目列表/u4868.svg" id="u13788_img" class="img generatedImage">
  3198. <g transform="matrix(1 0 0 1 -1 -122 )">
  3199. <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" />
  3200. </g>
  3201. </svg>
  3202. <div id="u13788_text" class="text " style="display:none; visibility: hidden">
  3203. <p></p>
  3204. </div>
  3205. </div>
  3206. <!-- Unnamed (Rectangle) -->
  3207. <div id="u13789" class="ax_default label transition">
  3208. <div id="u13789_div" class=""></div>
  3209. <div id="u13789_text" class="text ">
  3210. <p><span>企业员工</span></p>
  3211. </div>
  3212. </div>
  3213. <!-- Unnamed (Rectangle) -->
  3214. <div id="u13790" class="ax_default label transition">
  3215. <div id="u13790_div" class=""></div>
  3216. <div id="u13790_text" class="text ">
  3217. <p><span>业主管理</span></p>
  3218. </div>
  3219. </div>
  3220. <!-- Unnamed (Line) -->
  3221. <div id="u13791" class="ax_default line1 transition">
  3222. <svg data="images/项目列表/u4868.svg" id="u13791_img" class="img generatedImage">
  3223. <g transform="matrix(1 0 0 1 -1 -122 )">
  3224. <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" />
  3225. </g>
  3226. </svg>
  3227. <div id="u13791_text" class="text " style="display:none; visibility: hidden">
  3228. <p></p>
  3229. </div>
  3230. </div>
  3231. <!-- Unnamed (Rectangle) -->
  3232. <div id="u13792" class="ax_default label transition">
  3233. <div id="u13792_div" class=""></div>
  3234. <div id="u13792_text" class="text ">
  3235. <p><span>房屋业主</span></p>
  3236. </div>
  3237. </div>
  3238. <!-- Unnamed (Rectangle) -->
  3239. <div id="u13793" class="ax_default label transition">
  3240. <div id="u13793_div" class=""></div>
  3241. <div id="u13793_text" class="text ">
  3242. <p><span>车位业主</span></p>
  3243. </div>
  3244. </div>
  3245. <!-- Unnamed (Rectangle) -->
  3246. <div id="u13794" class="ax_default label transition">
  3247. <div id="u13794_div" class=""></div>
  3248. <div id="u13794_text" class="text ">
  3249. <p><span>认证设置</span></p>
  3250. </div>
  3251. </div>
  3252. <!-- Unnamed (Rectangle) -->
  3253. <div id="u13795" class="ax_default label transition">
  3254. <div id="u13795_div" class=""></div>
  3255. <div id="u13795_text" class="text ">
  3256. <p><span>房屋业主认证</span></p>
  3257. </div>
  3258. </div>
  3259. <!-- Unnamed (Rectangle) -->
  3260. <div id="u13796" class="ax_default label transition">
  3261. <div id="u13796_div" class=""></div>
  3262. <div id="u13796_text" class="text ">
  3263. <p><span>身份认证</span></p>
  3264. </div>
  3265. </div>
  3266. <!-- Unnamed (Line) -->
  3267. <div id="u13797" class="ax_default line1 transition">
  3268. <svg data="images/项目列表/u4868.svg" id="u13797_img" class="img generatedImage">
  3269. <g transform="matrix(1 0 0 1 -1 -122 )">
  3270. <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" />
  3271. </g>
  3272. </svg>
  3273. <div id="u13797_text" class="text " style="display:none; visibility: hidden">
  3274. <p></p>
  3275. </div>
  3276. </div>
  3277. <!-- Unnamed (Rectangle) -->
  3278. <div id="u13798" class="ax_default label transition">
  3279. <div id="u13798_div" class=""></div>
  3280. <div id="u13798_text" class="text ">
  3281. <p><span>房源住户认证</span></p>
  3282. </div>
  3283. </div>
  3284. <!-- Unnamed (Rectangle) -->
  3285. <div id="u13799" class="ax_default label transition">
  3286. <div id="u13799_div" class=""></div>
  3287. <div id="u13799_text" class="text ">
  3288. <p><span>入驻企业认证</span></p>
  3289. </div>
  3290. </div>
  3291. <!-- Unnamed (Rectangle) -->
  3292. <div id="u13800" class="ax_default label transition">
  3293. <div id="u13800_div" class=""></div>
  3294. <div id="u13800_text" class="text ">
  3295. <p><span>人员档案</span></p>
  3296. </div>
  3297. </div>
  3298. <!-- Unnamed (Rectangle) -->
  3299. <div id="u13801" class="ax_default label transition">
  3300. <div id="u13801_div" class=""></div>
  3301. <div id="u13801_text" class="text ">
  3302. <p><span>客户档案</span></p>
  3303. </div>
  3304. </div>
  3305. <!-- Unnamed (Line) -->
  3306. <div id="u13802" class="ax_default line1 transition">
  3307. <svg data="images/项目列表/u4868.svg" id="u13802_img" class="img generatedImage">
  3308. <g transform="matrix(1 0 0 1 -1 -122 )">
  3309. <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" />
  3310. </g>
  3311. </svg>
  3312. <div id="u13802_text" class="text " style="display:none; visibility: hidden">
  3313. <p></p>
  3314. </div>
  3315. </div>
  3316. <!-- Unnamed (Rectangle) -->
  3317. <div id="u13803" class="ax_default label transition">
  3318. <div id="u13803_div" class=""></div>
  3319. <div id="u13803_text" class="text ">
  3320. <p><span>机构档案</span></p>
  3321. </div>
  3322. </div>
  3323. <!-- Unnamed (Rectangle) -->
  3324. <div id="u13804" class="ax_default label transition">
  3325. <div id="u13804_div" class=""></div>
  3326. <div id="u13804_text" class="text ">
  3327. <p><span>物业人员认证</span></p>
  3328. </div>
  3329. </div>
  3330. <!-- Unnamed (Rectangle) -->
  3331. <div id="u13805" class="ax_default label transition">
  3332. <div id="u13805_div" class=""></div>
  3333. <div id="u13805_text" class="text ">
  3334. <p><span>业主委员会</span></p>
  3335. </div>
  3336. </div>
  3337. <!-- Unnamed (Rectangle) -->
  3338. <div id="u13806" class="ax_default label transition">
  3339. <div id="u13806_div" class=""></div>
  3340. <div id="u13806_text" class="text ">
  3341. <p><span>车位业主认证</span></p>
  3342. </div>
  3343. </div>
  3344. <!-- Unnamed (Rectangle) -->
  3345. <div id="u13807" class="ax_default label transition">
  3346. <div id="u13807_div" class=""></div>
  3347. <div id="u13807_text" class="text ">
  3348. <p><span>物业员工</span></p>
  3349. </div>
  3350. </div>
  3351. <!-- Unnamed (Rectangle) -->
  3352. <div id="u13808" class="ax_default label transition">
  3353. <div id="u13808_div" class=""></div>
  3354. <div id="u13808_text" class="text ">
  3355. <p><span>骑手快递员</span></p>
  3356. </div>
  3357. </div>
  3358. <!-- Unnamed (Rectangle) -->
  3359. <div id="u13809" class="ax_default label transition">
  3360. <div id="u13809_div" class=""></div>
  3361. <div id="u13809_text" class="text ">
  3362. <p><span>装修工人</span></p>
  3363. </div>
  3364. </div>
  3365. </div>
  3366. </div>
  3367. <!-- Unnamed (Rectangle) -->
  3368. <div id="u13810" class="ax_default paragraph transition">
  3369. <div id="u13810_div" class=""></div>
  3370. <div id="u13810_text" class="text ">
  3371. <p><span>此处登记项目物业工作人员,包含物业管理员、保安、保洁等人员信息。人员身份类型、人员默认通行权限,请前往「设置」配置。</span></p>
  3372. </div>
  3373. </div>
  3374. <!-- Unnamed (Rectangle) -->
  3375. <div id="u13811" class="ax_default paragraph transition">
  3376. <div id="u13811_div" class=""></div>
  3377. <div id="u13811_text" class="text ">
  3378. <p><span>此处登记项目物业工作人员,包含物业管理员、保安、保洁等人员信息。人员身份类型、人员默认通行权限,请前往「设置」配置。</span></p>
  3379. </div>
  3380. </div>
  3381. <!-- Unnamed (Rectangle) -->
  3382. <div id="u13812" class="ax_default paragraph transition">
  3383. <div id="u13812_div" class=""></div>
  3384. <div id="u13812_text" class="text ">
  3385. <p><span>此处登记项目物业工作人员,包含物业管理员、保安、保洁等人员信息。人员身份类型、人员默认通行权限,请前往「设置」配置。</span></p>
  3386. </div>
  3387. </div>
  3388. <!-- Unnamed (Group) -->
  3389. <div id="u13813" class="ax_default" data-left="1057" data-top="527" data-width="380" data-height="200" layer-opacity="1">
  3390. <!-- Unnamed (Group) -->
  3391. <div id="u13814" class="ax_default" data-left="1057" data-top="527" data-width="380" data-height="200" layer-opacity="1">
  3392. <!-- Unnamed (Rectangle) -->
  3393. <div id="u13815" class="ax_default shape transition">
  3394. <div id="u13815_div" class=""></div>
  3395. <div id="u13815_text" class="text " style="display:none; visibility: hidden">
  3396. <p></p>
  3397. </div>
  3398. </div>
  3399. <!-- Unnamed (Rectangle) -->
  3400. <div id="u13816" class="ax_default paragraph transition">
  3401. <div id="u13816_div" class=""></div>
  3402. <div id="u13816_text" class="text ">
  3403. <p><span>确定移除该工作人员?</span></p>
  3404. </div>
  3405. </div>
  3406. <!-- Unnamed (Rectangle) -->
  3407. <div id="u13817" class="ax_default shape transition">
  3408. <div id="u13817_div" class=""></div>
  3409. <div id="u13817_text" class="text ">
  3410. <p><span>确定</span></p>
  3411. </div>
  3412. </div>
  3413. <!-- Unnamed (Shape) -->
  3414. <div id="u13818" class="ax_default icon transition">
  3415. <svg data="images/项目列表/u4798.svg" id="u13818_img" class="img generatedImage">
  3416. <defs>
  3417. <pattern id="u13818_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  3418. <mask fill="white" id="u13818_img_cl398">
  3419. <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" />
  3420. </mask>
  3421. </defs>
  3422. <g transform="matrix(1 0 0 1 -1661 -842 )">
  3423. <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" />
  3424. <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(#u13818_img_cl398)" />
  3425. <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(#u13818_img_cl398)" />
  3426. <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(#u13818_img_cl398)" />
  3427. </g>
  3428. </svg>
  3429. <div id="u13818_text" class="text " style="display:none; visibility: hidden">
  3430. <p></p>
  3431. </div>
  3432. </div>
  3433. <!-- Unnamed (Rectangle) -->
  3434. <div id="u13819" class="ax_default paragraph transition">
  3435. <div id="u13819_div" class=""></div>
  3436. <div id="u13819_text" class="text ">
  3437. <p><span>移除之后,人员将从项目中移除,同步移除项目中的管家/工程师。人员历史数据可前往「人员档案」查询。</span></p>
  3438. </div>
  3439. </div>
  3440. <!-- Unnamed (Rectangle) -->
  3441. <div id="u13820" class="ax_default shape transition">
  3442. <div id="u13820_div" class=""></div>
  3443. <div id="u13820_text" class="text ">
  3444. <p><span>取 消</span></p>
  3445. </div>
  3446. </div>
  3447. </div>
  3448. </div>
  3449. <!-- Unnamed (Group) -->
  3450. <div id="u13821" class="ax_default" data-left="0" data-top="0" data-width="0" data-height="0" layer-opacity="1">
  3451. </div>
  3452. <!-- Unnamed (Group) -->
  3453. <div id="u13822" class="ax_default" data-left="3853" data-top="449" data-width="380" data-height="140" layer-opacity="1">
  3454. <!-- Unnamed (Group) -->
  3455. <div id="u13823" class="ax_default" data-left="3853" data-top="449" data-width="380" data-height="140" layer-opacity="1">
  3456. <!-- Unnamed (Rectangle) -->
  3457. <div id="u13824" class="ax_default shape transition">
  3458. <div id="u13824_div" class=""></div>
  3459. <div id="u13824_text" class="text " style="display:none; visibility: hidden">
  3460. <p></p>
  3461. </div>
  3462. </div>
  3463. <!-- Unnamed (Rectangle) -->
  3464. <div id="u13825" class="ax_default paragraph transition">
  3465. <div id="u13825_div" class=""></div>
  3466. <div id="u13825_text" class="text ">
  3467. <p><span>确定移除?</span></p>
  3468. </div>
  3469. </div>
  3470. <!-- Unnamed (Rectangle) -->
  3471. <div id="u13826" class="ax_default shape transition">
  3472. <div id="u13826_div" class=""></div>
  3473. <div id="u13826_text" class="text ">
  3474. <p><span>确定</span></p>
  3475. </div>
  3476. </div>
  3477. <!-- Unnamed (Shape) -->
  3478. <div id="u13827" class="ax_default icon transition">
  3479. <svg data="images/项目列表/u4798.svg" id="u13827_img" class="img generatedImage">
  3480. <defs>
  3481. <pattern id="u13827_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  3482. <mask fill="white" id="u13827_img_cl398">
  3483. <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" />
  3484. </mask>
  3485. </defs>
  3486. <g transform="matrix(1 0 0 1 -1661 -842 )">
  3487. <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" />
  3488. <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(#u13827_img_cl398)" />
  3489. <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(#u13827_img_cl398)" />
  3490. <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(#u13827_img_cl398)" />
  3491. </g>
  3492. </svg>
  3493. <div id="u13827_text" class="text " style="display:none; visibility: hidden">
  3494. <p></p>
  3495. </div>
  3496. </div>
  3497. <!-- Unnamed (Rectangle) -->
  3498. <div id="u13828" class="ax_default shape transition">
  3499. <div id="u13828_div" class=""></div>
  3500. <div id="u13828_text" class="text ">
  3501. <p><span>取 消</span></p>
  3502. </div>
  3503. </div>
  3504. </div>
  3505. </div>
  3506. <!-- Unnamed (Group) -->
  3507. <div id="u13829" class="ax_default" data-left="5167" data-top="440" data-width="380" data-height="140" layer-opacity="1">
  3508. <!-- Unnamed (Group) -->
  3509. <div id="u13830" class="ax_default" data-left="5167" data-top="440" data-width="380" data-height="140" layer-opacity="1">
  3510. <!-- Unnamed (Rectangle) -->
  3511. <div id="u13831" class="ax_default shape transition">
  3512. <div id="u13831_div" class=""></div>
  3513. <div id="u13831_text" class="text " style="display:none; visibility: hidden">
  3514. <p></p>
  3515. </div>
  3516. </div>
  3517. <!-- Unnamed (Rectangle) -->
  3518. <div id="u13832" class="ax_default paragraph transition">
  3519. <div id="u13832_div" class=""></div>
  3520. <div id="u13832_text" class="text ">
  3521. <p><span>确定移除?</span></p>
  3522. </div>
  3523. </div>
  3524. <!-- Unnamed (Rectangle) -->
  3525. <div id="u13833" class="ax_default shape transition">
  3526. <div id="u13833_div" class=""></div>
  3527. <div id="u13833_text" class="text ">
  3528. <p><span>确定</span></p>
  3529. </div>
  3530. </div>
  3531. <!-- Unnamed (Shape) -->
  3532. <div id="u13834" class="ax_default icon transition">
  3533. <svg data="images/项目列表/u4798.svg" id="u13834_img" class="img generatedImage">
  3534. <defs>
  3535. <pattern id="u13834_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  3536. <mask fill="white" id="u13834_img_cl398">
  3537. <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" />
  3538. </mask>
  3539. </defs>
  3540. <g transform="matrix(1 0 0 1 -1661 -842 )">
  3541. <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" />
  3542. <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(#u13834_img_cl398)" />
  3543. <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(#u13834_img_cl398)" />
  3544. <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(#u13834_img_cl398)" />
  3545. </g>
  3546. </svg>
  3547. <div id="u13834_text" class="text " style="display:none; visibility: hidden">
  3548. <p></p>
  3549. </div>
  3550. </div>
  3551. <!-- Unnamed (Rectangle) -->
  3552. <div id="u13835" class="ax_default shape transition">
  3553. <div id="u13835_div" class=""></div>
  3554. <div id="u13835_text" class="text ">
  3555. <p><span>取 消</span></p>
  3556. </div>
  3557. </div>
  3558. </div>
  3559. </div>
  3560. <!-- Unnamed (Rectangle) -->
  3561. <div id="u13836" class="ax_default paragraph transition">
  3562. <div id="u13836_div" class=""></div>
  3563. <div id="u13836_text" class="text ">
  3564. <p><span>1、添加楼栋工程师时,直接从工作人员列表中选择;</span></p><p><span>2、1个管家可添加到多个楼栋,1个楼栋可添加多个管家;</span></p><p><span>3、若选择多个楼栋、多个工作人员之后,则默认每个楼栋都有相同的多个管家;</span></p><p><span>4、添加之后,楼栋管家列表楼栋+人员显示,1个楼栋多个管家显示多条记录。</span></p>
  3565. </div>
  3566. </div>
  3567. <!-- Unnamed (Group) -->
  3568. <div id="u13837" class="ax_default" data-left="4695" data-top="618" data-width="500" data-height="330" layer-opacity="1">
  3569. <!-- Unnamed (Rectangle) -->
  3570. <div id="u13838" class="ax_default paragraph transition">
  3571. <div id="u13838_div" class=""></div>
  3572. <div id="u13838_text" class="text " style="display:none; visibility: hidden">
  3573. <p></p>
  3574. </div>
  3575. </div>
  3576. <!-- Unnamed (Rectangle) -->
  3577. <div id="u13839" class="ax_default paragraph transition">
  3578. <div id="u13839_div" class=""></div>
  3579. <div id="u13839_text" class="text ">
  3580. <p><span>新增管家</span></p>
  3581. </div>
  3582. </div>
  3583. <!-- Unnamed (Group) -->
  3584. <div id="u13840" class="ax_default" data-left="4695" data-top="888" data-width="500" data-height="60" layer-opacity="1">
  3585. <!-- Unnamed (Rectangle) -->
  3586. <div id="u13841" class="ax_default paragraph transition">
  3587. <div id="u13841_div" class=""></div>
  3588. <div id="u13841_text" class="text " style="display:none; visibility: hidden">
  3589. <p></p>
  3590. </div>
  3591. </div>
  3592. <!-- Unnamed (Shape) -->
  3593. <div id="u13842" class="ax_default box_1 transition">
  3594. <svg data="images/物业员工/u13765.svg" id="u13842_img" class="img generatedImage">
  3595. <defs>
  3596. <pattern id="u13842_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  3597. <mask fill="white" id="u13842_img_cl996">
  3598. <path d="M 0 26 L 0 4 C 0 1.759999999999991 1.3199999999999932 0 3 0 L 19.91803278688525 0 L 57 0 C 58.68000000000001 0 60 1.759999999999991 60 4 L 60 26 C 60 28.24000000000001 58.68000000000001 30 57 30 L 3 30 C 1.3199999999999932 30 0 28.24000000000001 0 26 Z " fill-rule="evenodd" />
  3599. </mask>
  3600. </defs>
  3601. <g transform="matrix(1 0 0 1 -4035 -937 )">
  3602. <path d="M 0 26 L 0 4 C 0 1.759999999999991 1.3199999999999932 0 3 0 L 19.91803278688525 0 L 57 0 C 58.68000000000001 0 60 1.759999999999991 60 4 L 60 26 C 60 28.24000000000001 58.68000000000001 30 57 30 L 3 30 C 1.3199999999999932 30 0 28.24000000000001 0 26 Z " fill-rule="nonzero" fill="rgba(24, 144, 255, 1)" stroke="none" transform="matrix(1 0 0 1 4035 937 )" class="fill" />
  3603. <path d="M 0 26 L 0 4 C 0 1.759999999999991 1.3199999999999932 0 3 0 L 19.91803278688525 0 L 57 0 C 58.68000000000001 0 60 1.759999999999991 60 4 L 60 26 C 60 28.24000000000001 58.68000000000001 30 57 30 L 3 30 C 1.3199999999999932 30 0 28.24000000000001 0 26 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(2, 167, 240, 1)" fill="none" transform="matrix(1 0 0 1 4035 937 )" class="stroke" mask="url(#u13842_img_cl996)" />
  3604. </g>
  3605. </svg>
  3606. <div id="u13842_text" class="text ">
  3607. <p><span>添加</span></p>
  3608. </div>
  3609. </div>
  3610. <!-- Unnamed (Rectangle) -->
  3611. <div id="u13843" class="ax_default box_1 transition">
  3612. <div id="u13843_div" class=""></div>
  3613. <div id="u13843_text" class="text ">
  3614. <p><span>取消</span></p>
  3615. </div>
  3616. </div>
  3617. </div>
  3618. <!-- Unnamed (Rectangle) -->
  3619. <div id="u13844" class="ax_default paragraph transition">
  3620. <div id="u13844_div" class=""></div>
  3621. <div id="u13844_text" class="text ">
  3622. <p><span>x</span></p>
  3623. </div>
  3624. </div>
  3625. <!-- Unnamed (Rectangle) -->
  3626. <div id="u13845" class="ax_default paragraph transition">
  3627. <div id="u13845_div" class=""></div>
  3628. <div id="u13845_text" class="text ">
  3629. <p><span>*所在楼栋</span></p>
  3630. </div>
  3631. </div>
  3632. <!-- Unnamed (Group) -->
  3633. <div id="u13846" class="ax_default" data-left="4747" data-top="723" data-width="300" data-height="40" layer-opacity="1">
  3634. <!-- Unnamed (Rectangle) -->
  3635. <div id="u13847" class="ax_default box_1 transition">
  3636. <div id="u13847_div" class=""></div>
  3637. <div id="u13847_text" class="text " style="display:none; visibility: hidden">
  3638. <p></p>
  3639. </div>
  3640. </div>
  3641. <!-- Unnamed (Droplist) -->
  3642. <div id="u13848" class="ax_default droplist transition">
  3643. <div id="u13848_div" class=""></div>
  3644. <select id="u13848_input" class="u13848_input">
  3645. <option class="u13848_input_option" value="选择楼栋(可多选)">选择楼栋(可多选)</option>
  3646. </select>
  3647. </div>
  3648. </div>
  3649. <!-- Unnamed (Rectangle) -->
  3650. <div id="u13849" class="ax_default paragraph transition">
  3651. <div id="u13849_div" class=""></div>
  3652. <div id="u13849_text" class="text ">
  3653. <p><span>*工程师人员</span></p>
  3654. </div>
  3655. </div>
  3656. <!-- Unnamed (Group) -->
  3657. <div id="u13850" class="ax_default" data-left="4747" data-top="803" data-width="300" data-height="40" layer-opacity="1">
  3658. <!-- Unnamed (Rectangle) -->
  3659. <div id="u13851" class="ax_default box_1 transition">
  3660. <div id="u13851_div" class=""></div>
  3661. <div id="u13851_text" class="text " style="display:none; visibility: hidden">
  3662. <p></p>
  3663. </div>
  3664. </div>
  3665. <!-- Unnamed (Droplist) -->
  3666. <div id="u13852" class="ax_default droplist transition">
  3667. <div id="u13852_div" class=""></div>
  3668. <select id="u13852_input" class="u13852_input">
  3669. <option class="u13852_input_option" value="请选择工作人员">请选择工作人员</option>
  3670. </select>
  3671. </div>
  3672. </div>
  3673. </div>
  3674. <!-- Unnamed (Rectangle) -->
  3675. <div id="u13853" class="ax_default paragraph transition">
  3676. <div id="u13853_div" class=""></div>
  3677. <div id="u13853_text" class="text ">
  3678. <p><span>1、添加楼栋工程师时,直接从工作人员列表中选择;</span></p><p><span>2、1个工程师可添加到多个楼栋,1个楼栋可添加多个工程师;</span></p><p><span>3、若选择多个楼栋、多个工作人员之后,则默认每个楼栋都有相同的多个工程师;</span></p><p><span>4、添加之后,楼栋工程师列表楼栋+人员显示,1个楼栋多个工程师显示多条记录。</span></p>
  3679. </div>
  3680. </div>
  3681. <!-- Unnamed (Rectangle) -->
  3682. <div id="u13854" class="ax_default box_1 transition">
  3683. <div id="u13854_div" class=""></div>
  3684. <div id="u13854_text" class="text ">
  3685. <p><span style="text-decoration:underline ;">已认证微信用户</span></p>
  3686. </div>
  3687. </div>
  3688. <!-- Unnamed (Group) -->
  3689. <div id="u13855" class="ax_default" data-left="1311" data-top="199" data-width="140" data-height="30" layer-opacity="1">
  3690. <!-- Unnamed (Rectangle) -->
  3691. <div id="u13856" class="ax_default box_1 transition">
  3692. <div id="u13856_div" class=""></div>
  3693. <div id="u13856_text" class="text " style="display:none; visibility: hidden">
  3694. <p></p>
  3695. </div>
  3696. </div>
  3697. <!-- Unnamed (Droplist) -->
  3698. <div id="u13857" class="ax_default droplist transition">
  3699. <div id="u13857_div" class=""></div>
  3700. <select id="u13857_input" class="u13857_input">
  3701. <option class="u13857_input_option" value="性别">性别</option>
  3702. </select>
  3703. </div>
  3704. </div>
  3705. <!-- Unnamed (Group) -->
  3706. <div id="u13858" class="ax_default" data-left="1013" data-top="199" data-width="140" data-height="30" layer-opacity="1">
  3707. <!-- Unnamed (Rectangle) -->
  3708. <div id="u13859" class="ax_default shape transition">
  3709. <div id="u13859_div" class=""></div>
  3710. <div id="u13859_text" class="text " style="display:none; visibility: hidden">
  3711. <p></p>
  3712. </div>
  3713. </div>
  3714. <!-- 选项内容 (Text field) -->
  3715. <div id="u13860" class="ax_default text_field transition" data-label="选项内容">
  3716. <div id="u13860_div" class=""></div>
  3717. <input id="u13860_input" type="text" value="" class="u13860_input"/>
  3718. </div>
  3719. </div>
  3720. <!-- Unnamed (Group) -->
  3721. <div id="u13861" class="ax_default" data-left="1163" data-top="199" data-width="140" data-height="30" layer-opacity="1">
  3722. <!-- Unnamed (Rectangle) -->
  3723. <div id="u13862" class="ax_default shape transition">
  3724. <div id="u13862_div" class=""></div>
  3725. <div id="u13862_text" class="text " style="display:none; visibility: hidden">
  3726. <p></p>
  3727. </div>
  3728. </div>
  3729. <!-- 选项内容 (Text field) -->
  3730. <div id="u13863" class="ax_default text_field transition" data-label="选项内容">
  3731. <div id="u13863_div" class=""></div>
  3732. <input id="u13863_input" type="text" value="" class="u13863_input"/>
  3733. </div>
  3734. </div>
  3735. <!-- Unnamed (Group) -->
  3736. <div id="u13864" class="ax_default" data-left="713" data-top="199" data-width="140" data-height="30" layer-opacity="1">
  3737. <!-- Unnamed (Rectangle) -->
  3738. <div id="u13865" class="ax_default box_1 transition">
  3739. <div id="u13865_div" class=""></div>
  3740. <div id="u13865_text" class="text " style="display:none; visibility: hidden">
  3741. <p></p>
  3742. </div>
  3743. </div>
  3744. <!-- Unnamed (Droplist) -->
  3745. <div id="u13866" class="ax_default droplist transition">
  3746. <div id="u13866_div" class=""></div>
  3747. <select id="u13866_input" class="u13866_input">
  3748. <option class="u13866_input_option" value="人员角色">人员角色</option>
  3749. </select>
  3750. </div>
  3751. </div>
  3752. <!-- Unnamed (Group) -->
  3753. <div id="u13867" class="ax_default" data-left="863" data-top="199" data-width="140" data-height="30" layer-opacity="1">
  3754. <!-- Unnamed (Rectangle) -->
  3755. <div id="u13868" class="ax_default shape transition">
  3756. <div id="u13868_div" class=""></div>
  3757. <div id="u13868_text" class="text " style="display:none; visibility: hidden">
  3758. <p></p>
  3759. </div>
  3760. </div>
  3761. <!-- 选项内容 (Text field) -->
  3762. <div id="u13869" class="ax_default text_field transition" data-label="选项内容">
  3763. <div id="u13869_div" class=""></div>
  3764. <input id="u13869_input" type="text" value="" class="u13869_input"/>
  3765. </div>
  3766. </div>
  3767. <!-- Unnamed (Group) -->
  3768. <div id="u13870" class="ax_default" data-left="863" data-top="239" data-width="130" data-height="30" layer-opacity="1">
  3769. <!-- Unnamed (Rectangle) -->
  3770. <div id="u13871" class="ax_default box_1 transition">
  3771. <div id="u13871_div" class=""></div>
  3772. <div id="u13871_text" class="text ">
  3773. <p><span>搜索</span></p>
  3774. </div>
  3775. </div>
  3776. <!-- Unnamed (Rectangle) -->
  3777. <div id="u13872" class="ax_default box_1 transition">
  3778. <div id="u13872_div" class=""></div>
  3779. <div id="u13872_text" class="text ">
  3780. <p><span>重置</span></p>
  3781. </div>
  3782. </div>
  3783. </div>
  3784. <!-- Unnamed (Group) -->
  3785. <div id="u13873" class="ax_default" data-left="713" data-top="239" data-width="140" data-height="30" layer-opacity="1">
  3786. <!-- Unnamed (Rectangle) -->
  3787. <div id="u13874" class="ax_default shape transition">
  3788. <div id="u13874_div" class=""></div>
  3789. <div id="u13874_text" class="text " style="display:none; visibility: hidden">
  3790. <p></p>
  3791. </div>
  3792. </div>
  3793. <!-- 选项内容 (Text field) -->
  3794. <div id="u13875" class="ax_default text_field transition" data-label="选项内容">
  3795. <div id="u13875_div" class=""></div>
  3796. <input id="u13875_input" type="text" value="" class="u13875_input"/>
  3797. </div>
  3798. </div>
  3799. <!-- Unnamed (Group) -->
  3800. <div id="u13876" class="ax_default" data-left="563" data-top="199" data-width="140" data-height="30" layer-opacity="1">
  3801. <!-- Unnamed (Rectangle) -->
  3802. <div id="u13877" class="ax_default box_1 transition">
  3803. <div id="u13877_div" class=""></div>
  3804. <div id="u13877_text" class="text " style="display:none; visibility: hidden">
  3805. <p></p>
  3806. </div>
  3807. </div>
  3808. <!-- Unnamed (Droplist) -->
  3809. <div id="u13878" class="ax_default droplist transition">
  3810. <div id="u13878_div" class=""></div>
  3811. <select id="u13878_input" class="u13878_input">
  3812. <option class="u13878_input_option" value="项目">项目</option>
  3813. </select>
  3814. </div>
  3815. </div>
  3816. <!-- Unnamed (Group) -->
  3817. <div id="u13879" class="ax_default" data-left="1636" data-top="60" data-width="800" data-height="1196" layer-opacity="1">
  3818. <!-- Unnamed (Rectangle) -->
  3819. <div id="u13880" class="ax_default paragraph transition">
  3820. <div id="u13880_div" class=""></div>
  3821. <div id="u13880_text" class="text " style="display:none; visibility: hidden">
  3822. <p></p>
  3823. </div>
  3824. </div>
  3825. <!-- Unnamed (Rectangle) -->
  3826. <div id="u13881" class="ax_default paragraph transition">
  3827. <div id="u13881_div" class=""></div>
  3828. <div id="u13881_text" class="text ">
  3829. <p><span>已认证微信用户</span></p>
  3830. </div>
  3831. </div>
  3832. <!-- Unnamed (Group) -->
  3833. <div id="u13882" class="ax_default" data-left="2384" data-top="60" data-width="52" data-height="40" layer-opacity="1">
  3834. <!-- Unnamed (Rectangle) -->
  3835. <div id="u13883" class="ax_default paragraph transition">
  3836. <div id="u13883_div" class=""></div>
  3837. <div id="u13883_text" class="text ">
  3838. <p><span>x</span></p>
  3839. </div>
  3840. </div>
  3841. <!-- Unnamed (Shape) -->
  3842. <div id="u13884" class="ax_default icon1 transition">
  3843. <svg data="images/设置/u4561.svg" id="u13884_img" class="img generatedImage">
  3844. <defs>
  3845. <pattern id="u13884_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  3846. <mask fill="white" id="u13884_img_cl381">
  3847. <path d="M 12.002511160714286 12.002511160714286 C 12.048456101190478 11.956566220238095 12.071428571428571 11.902157738095237 12.071428571428571 11.839285714285714 L 12.071428571428571 3.946428571428572 C 12.071428571428571 3.8835565476190466 12.048456101190478 3.8291480654761902 12.002511160714286 3.783203125 C 11.956566220238095 3.7372581845238084 11.902157738095237 3.714285714285714 11.839285714285714 3.714285714285714 L 3.946428571428571 3.714285714285714 C 3.883556547619048 3.714285714285714 3.8291480654761907 3.7372581845238084 3.783203125 3.783203125 C 3.7372581845238098 3.8291480654761902 3.714285714285714 3.8835565476190466 3.714285714285714 3.946428571428572 L 3.714285714285714 11.839285714285714 C 3.714285714285714 11.902157738095237 3.7372581845238098 11.956566220238095 3.783203125 12.002511160714286 C 3.8291480654761907 12.048456101190476 3.883556547619048 12.071428571428571 3.946428571428571 12.071428571428571 L 11.839285714285714 12.071428571428571 C 11.902157738095237 12.071428571428571 11.956566220238095 12.048456101190476 12.002511160714286 12.002511160714286 Z M 12.659040178571429 3.1266741071428577 C 12.886346726190478 3.353980654761904 13 3.6272321428571423 13 3.946428571428572 L 13 11.839285714285714 C 13 12.158482142857142 12.886346726190478 12.431733630952381 12.659040178571429 12.659040178571429 C 12.431733630952383 12.886346726190476 12.158482142857146 13 11.839285714285714 13 L 3.946428571428571 13 C 3.627232142857143 13 3.353980654761905 12.886346726190476 3.126674107142857 12.659040178571429 C 2.8993675595238093 12.431733630952381 2.7857142857142856 12.158482142857142 2.7857142857142856 11.839285714285714 L 2.7857142857142856 3.946428571428572 C 2.7857142857142856 3.6272321428571423 2.8993675595238093 3.353980654761904 3.126674107142857 3.1266741071428577 C 3.353980654761905 2.8993675595238084 3.627232142857143 2.785714285714286 3.946428571428571 2.785714285714286 L 11.839285714285714 2.785714285714286 C 12.158482142857146 2.785714285714286 12.431733630952383 2.8993675595238084 12.659040178571429 3.1266741071428577 Z M 9.873325892857142 0.34095982142857184 C 10.100632440476192 0.5682663690476183 10.214285714285714 0.8415178571428578 10.214285714285714 1.160714285714286 L 10.214285714285714 2.321428571428572 L 9.285714285714286 2.321428571428572 L 9.285714285714286 1.160714285714286 C 9.285714285714286 1.0978422619047619 9.262741815476192 1.0434337797619042 9.216796875 0.9974888392857141 C 9.17085193452381 0.9515438988095225 9.116443452380954 0.9285714285714282 9.053571428571429 0.9285714285714282 L 1.1607142857142858 0.9285714285714282 C 1.0978422619047619 0.9285714285714282 1.0434337797619047 0.9515438988095225 0.9974888392857143 0.9974888392857141 C 0.951543898809524 1.0434337797619042 0.9285714285714285 1.0978422619047619 0.9285714285714285 1.160714285714286 L 0.9285714285714285 9.053571428571429 C 0.9285714285714285 9.116443452380953 0.951543898809524 9.170851934523808 0.9974888392857143 9.216796875 C 1.0434337797619047 9.26274181547619 1.0978422619047619 9.285714285714286 1.1607142857142858 9.285714285714286 L 2.3214285714285716 9.285714285714286 L 2.3214285714285716 10.214285714285714 L 1.1607142857142858 10.214285714285714 C 0.8415178571428572 10.214285714285714 0.5682663690476191 10.10063244047619 0.34095982142857145 9.873325892857144 C 0.11365327380952381 9.646019345238095 0 9.372767857142856 0 9.053571428571429 L 0 1.160714285714286 C 0 0.8415178571428578 0.11365327380952381 0.5682663690476183 0.34095982142857145 0.34095982142857184 C 0.5682663690476191 0.11365327380952395 0.8415178571428572 0 1.1607142857142858 0 L 9.053571428571429 0 C 9.372767857142858 0 9.646019345238095 0.11365327380952395 9.873325892857142 0.34095982142857184 Z " fill-rule="evenodd" />
  3848. </mask>
  3849. </defs>
  3850. <g transform="matrix(1 0 0 1 -1032 -79 )">
  3851. <path d="M 12.002511160714286 12.002511160714286 C 12.048456101190478 11.956566220238095 12.071428571428571 11.902157738095237 12.071428571428571 11.839285714285714 L 12.071428571428571 3.946428571428572 C 12.071428571428571 3.8835565476190466 12.048456101190478 3.8291480654761902 12.002511160714286 3.783203125 C 11.956566220238095 3.7372581845238084 11.902157738095237 3.714285714285714 11.839285714285714 3.714285714285714 L 3.946428571428571 3.714285714285714 C 3.883556547619048 3.714285714285714 3.8291480654761907 3.7372581845238084 3.783203125 3.783203125 C 3.7372581845238098 3.8291480654761902 3.714285714285714 3.8835565476190466 3.714285714285714 3.946428571428572 L 3.714285714285714 11.839285714285714 C 3.714285714285714 11.902157738095237 3.7372581845238098 11.956566220238095 3.783203125 12.002511160714286 C 3.8291480654761907 12.048456101190476 3.883556547619048 12.071428571428571 3.946428571428571 12.071428571428571 L 11.839285714285714 12.071428571428571 C 11.902157738095237 12.071428571428571 11.956566220238095 12.048456101190476 12.002511160714286 12.002511160714286 Z M 12.659040178571429 3.1266741071428577 C 12.886346726190478 3.353980654761904 13 3.6272321428571423 13 3.946428571428572 L 13 11.839285714285714 C 13 12.158482142857142 12.886346726190478 12.431733630952381 12.659040178571429 12.659040178571429 C 12.431733630952383 12.886346726190476 12.158482142857146 13 11.839285714285714 13 L 3.946428571428571 13 C 3.627232142857143 13 3.353980654761905 12.886346726190476 3.126674107142857 12.659040178571429 C 2.8993675595238093 12.431733630952381 2.7857142857142856 12.158482142857142 2.7857142857142856 11.839285714285714 L 2.7857142857142856 3.946428571428572 C 2.7857142857142856 3.6272321428571423 2.8993675595238093 3.353980654761904 3.126674107142857 3.1266741071428577 C 3.353980654761905 2.8993675595238084 3.627232142857143 2.785714285714286 3.946428571428571 2.785714285714286 L 11.839285714285714 2.785714285714286 C 12.158482142857146 2.785714285714286 12.431733630952383 2.8993675595238084 12.659040178571429 3.1266741071428577 Z M 9.873325892857142 0.34095982142857184 C 10.100632440476192 0.5682663690476183 10.214285714285714 0.8415178571428578 10.214285714285714 1.160714285714286 L 10.214285714285714 2.321428571428572 L 9.285714285714286 2.321428571428572 L 9.285714285714286 1.160714285714286 C 9.285714285714286 1.0978422619047619 9.262741815476192 1.0434337797619042 9.216796875 0.9974888392857141 C 9.17085193452381 0.9515438988095225 9.116443452380954 0.9285714285714282 9.053571428571429 0.9285714285714282 L 1.1607142857142858 0.9285714285714282 C 1.0978422619047619 0.9285714285714282 1.0434337797619047 0.9515438988095225 0.9974888392857143 0.9974888392857141 C 0.951543898809524 1.0434337797619042 0.9285714285714285 1.0978422619047619 0.9285714285714285 1.160714285714286 L 0.9285714285714285 9.053571428571429 C 0.9285714285714285 9.116443452380953 0.951543898809524 9.170851934523808 0.9974888392857143 9.216796875 C 1.0434337797619047 9.26274181547619 1.0978422619047619 9.285714285714286 1.1607142857142858 9.285714285714286 L 2.3214285714285716 9.285714285714286 L 2.3214285714285716 10.214285714285714 L 1.1607142857142858 10.214285714285714 C 0.8415178571428572 10.214285714285714 0.5682663690476191 10.10063244047619 0.34095982142857145 9.873325892857144 C 0.11365327380952381 9.646019345238095 0 9.372767857142856 0 9.053571428571429 L 0 1.160714285714286 C 0 0.8415178571428578 0.11365327380952381 0.5682663690476183 0.34095982142857145 0.34095982142857184 C 0.5682663690476191 0.11365327380952395 0.8415178571428572 0 1.1607142857142858 0 L 9.053571428571429 0 C 9.372767857142858 0 9.646019345238095 0.11365327380952395 9.873325892857142 0.34095982142857184 Z " fill-rule="nonzero" fill="rgba(0, 0, 0, 1)" stroke="none" transform="matrix(1 0 0 1 1032 79 )" class="fill" />
  3852. <path d="M 12.002511160714286 12.002511160714286 C 12.048456101190478 11.956566220238095 12.071428571428571 11.902157738095237 12.071428571428571 11.839285714285714 L 12.071428571428571 3.946428571428572 C 12.071428571428571 3.8835565476190466 12.048456101190478 3.8291480654761902 12.002511160714286 3.783203125 C 11.956566220238095 3.7372581845238084 11.902157738095237 3.714285714285714 11.839285714285714 3.714285714285714 L 3.946428571428571 3.714285714285714 C 3.883556547619048 3.714285714285714 3.8291480654761907 3.7372581845238084 3.783203125 3.783203125 C 3.7372581845238098 3.8291480654761902 3.714285714285714 3.8835565476190466 3.714285714285714 3.946428571428572 L 3.714285714285714 11.839285714285714 C 3.714285714285714 11.902157738095237 3.7372581845238098 11.956566220238095 3.783203125 12.002511160714286 C 3.8291480654761907 12.048456101190476 3.883556547619048 12.071428571428571 3.946428571428571 12.071428571428571 L 11.839285714285714 12.071428571428571 C 11.902157738095237 12.071428571428571 11.956566220238095 12.048456101190476 12.002511160714286 12.002511160714286 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1032 79 )" class="stroke" mask="url(#u13884_img_cl381)" />
  3853. <path d="M 12.659040178571429 3.1266741071428577 C 12.886346726190478 3.353980654761904 13 3.6272321428571423 13 3.946428571428572 L 13 11.839285714285714 C 13 12.158482142857142 12.886346726190478 12.431733630952381 12.659040178571429 12.659040178571429 C 12.431733630952383 12.886346726190476 12.158482142857146 13 11.839285714285714 13 L 3.946428571428571 13 C 3.627232142857143 13 3.353980654761905 12.886346726190476 3.126674107142857 12.659040178571429 C 2.8993675595238093 12.431733630952381 2.7857142857142856 12.158482142857142 2.7857142857142856 11.839285714285714 L 2.7857142857142856 3.946428571428572 C 2.7857142857142856 3.6272321428571423 2.8993675595238093 3.353980654761904 3.126674107142857 3.1266741071428577 C 3.353980654761905 2.8993675595238084 3.627232142857143 2.785714285714286 3.946428571428571 2.785714285714286 L 11.839285714285714 2.785714285714286 C 12.158482142857146 2.785714285714286 12.431733630952383 2.8993675595238084 12.659040178571429 3.1266741071428577 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1032 79 )" class="stroke" mask="url(#u13884_img_cl381)" />
  3854. <path d="M 9.873325892857142 0.34095982142857184 C 10.100632440476192 0.5682663690476183 10.214285714285714 0.8415178571428578 10.214285714285714 1.160714285714286 L 10.214285714285714 2.321428571428572 L 9.285714285714286 2.321428571428572 L 9.285714285714286 1.160714285714286 C 9.285714285714286 1.0978422619047619 9.262741815476192 1.0434337797619042 9.216796875 0.9974888392857141 C 9.17085193452381 0.9515438988095225 9.116443452380954 0.9285714285714282 9.053571428571429 0.9285714285714282 L 1.1607142857142858 0.9285714285714282 C 1.0978422619047619 0.9285714285714282 1.0434337797619047 0.9515438988095225 0.9974888392857143 0.9974888392857141 C 0.951543898809524 1.0434337797619042 0.9285714285714285 1.0978422619047619 0.9285714285714285 1.160714285714286 L 0.9285714285714285 9.053571428571429 C 0.9285714285714285 9.116443452380953 0.951543898809524 9.170851934523808 0.9974888392857143 9.216796875 C 1.0434337797619047 9.26274181547619 1.0978422619047619 9.285714285714286 1.1607142857142858 9.285714285714286 L 2.3214285714285716 9.285714285714286 L 2.3214285714285716 10.214285714285714 L 1.1607142857142858 10.214285714285714 C 0.8415178571428572 10.214285714285714 0.5682663690476191 10.10063244047619 0.34095982142857145 9.873325892857144 C 0.11365327380952381 9.646019345238095 0 9.372767857142856 0 9.053571428571429 L 0 1.160714285714286 C 0 0.8415178571428578 0.11365327380952381 0.5682663690476183 0.34095982142857145 0.34095982142857184 C 0.5682663690476191 0.11365327380952395 0.8415178571428572 0 1.1607142857142858 0 L 9.053571428571429 0 C 9.372767857142858 0 9.646019345238095 0.11365327380952395 9.873325892857142 0.34095982142857184 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1032 79 )" class="stroke" mask="url(#u13884_img_cl381)" />
  3855. </g>
  3856. </svg>
  3857. <div id="u13884_text" class="text " style="display:none; visibility: hidden">
  3858. <p></p>
  3859. </div>
  3860. </div>
  3861. </div>
  3862. <!-- Unnamed (Group) -->
  3863. <div id="u13885" class="ax_default" data-left="1636" data-top="1206" data-width="800" data-height="50" layer-opacity="1">
  3864. <!-- Unnamed (Rectangle) -->
  3865. <div id="u13886" class="ax_default paragraph transition">
  3866. <div id="u13886_div" class=""></div>
  3867. <div id="u13886_text" class="text " style="display:none; visibility: hidden">
  3868. <p></p>
  3869. </div>
  3870. </div>
  3871. <!-- Unnamed (Rectangle) -->
  3872. <div id="u13887" class="ax_default box_1 transition">
  3873. <div id="u13887_div" class=""></div>
  3874. <div id="u13887_text" class="text ">
  3875. <p><span>关闭</span></p>
  3876. </div>
  3877. </div>
  3878. </div>
  3879. <!-- Unnamed (Table) -->
  3880. <div id="u13888" class="ax_default">
  3881. <!-- Unnamed (Table cell) -->
  3882. <div id="u13889" class="ax_default table_cell transition">
  3883. <svg data="images/物业员工/u13889.svg" id="u13889_img" class="img generatedImage" viewbox="0 0 71 30">
  3884. <path d="M 1 1 L 71 1 L 71 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" class="fill" />
  3885. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" />
  3886. <path d="M 0 0.5 L 71 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" />
  3887. </svg>
  3888. <div id="u13889_text" class="text ">
  3889. <p><span>序号</span></p>
  3890. </div>
  3891. </div>
  3892. <!-- Unnamed (Table cell) -->
  3893. <div id="u13890" class="ax_default table_cell transition">
  3894. <svg data="images/物业员工/u13890.svg" id="u13890_img" class="img generatedImage" viewbox="71 0 137 30">
  3895. <path d="M 1 1 L 137 1 L 137 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 71 0 )" class="fill" />
  3896. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 0 )" class="stroke" />
  3897. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 0 )" class="stroke" />
  3898. </svg>
  3899. <div id="u13890_text" class="text ">
  3900. <p><span>人员ID</span></p>
  3901. </div>
  3902. </div>
  3903. <!-- Unnamed (Table cell) -->
  3904. <div id="u13891" class="ax_default table_cell transition">
  3905. <svg data="images/物业员工/u13891.svg" id="u13891_img" class="img generatedImage" viewbox="208 0 137 30">
  3906. <path d="M 1 1 L 137 1 L 137 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 208 0 )" class="fill" />
  3907. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 208 0 )" class="stroke" />
  3908. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 208 0 )" class="stroke" />
  3909. </svg>
  3910. <div id="u13891_text" class="text ">
  3911. <p><span>姓名</span></p>
  3912. </div>
  3913. </div>
  3914. <!-- Unnamed (Table cell) -->
  3915. <div id="u13892" class="ax_default table_cell transition">
  3916. <svg data="images/物业员工/u13892.svg" id="u13892_img" class="img generatedImage" viewbox="344 0 137 30">
  3917. <path d="M 1 1 L 137 1 L 137 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 344 0 )" class="fill" />
  3918. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 344 0 )" class="stroke" />
  3919. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 344 0 )" class="stroke" />
  3920. </svg>
  3921. <div id="u13892_text" class="text ">
  3922. <p><span>手机号码</span></p>
  3923. </div>
  3924. </div>
  3925. <!-- Unnamed (Table cell) -->
  3926. <div id="u13893" class="ax_default table_cell transition">
  3927. <svg data="images/物业员工/u13893.svg" id="u13893_img" class="img generatedImage" viewbox="481 0 137 30">
  3928. <path d="M 1 1 L 137 1 L 137 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 481 0 )" class="fill" />
  3929. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 481 0 )" class="stroke" />
  3930. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 481 0 )" class="stroke" />
  3931. </svg>
  3932. <div id="u13893_text" class="text ">
  3933. <p><span>微信用户账号</span></p>
  3934. </div>
  3935. </div>
  3936. <!-- Unnamed (Table cell) -->
  3937. <div id="u13894" class="ax_default table_cell transition">
  3938. <svg data="images/物业员工/u13894.svg" id="u13894_img" class="img generatedImage" viewbox="617 0 137 30">
  3939. <path d="M 1 1 L 136 1 L 136 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(51, 51, 51, 1)" stroke="none" transform="matrix(1 0 0 1 617 0 )" class="fill" />
  3940. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 0 )" class="stroke" />
  3941. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 0 )" class="stroke" />
  3942. <path d="M 136.5 1 L 136.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 0 )" class="stroke" />
  3943. </svg>
  3944. <div id="u13894_text" class="text ">
  3945. <p><span>操作</span></p>
  3946. </div>
  3947. </div>
  3948. <!-- Unnamed (Table cell) -->
  3949. <div id="u13895" class="ax_default table_cell transition">
  3950. <svg data="images/物业员工/u13895.svg" id="u13895_img" class="img generatedImage" viewbox="0 30 71 40">
  3951. <path d="M 1 1 L 71 1 L 71 40 L 1 40 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 30 )" class="fill" />
  3952. <path d="M 0.5 1 L 0.5 40 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 30 )" class="stroke" />
  3953. <path d="M 0 0.5 L 71 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 30 )" class="stroke" />
  3954. </svg>
  3955. <div id="u13895_text" class="text ">
  3956. <p><span>1</span></p>
  3957. </div>
  3958. </div>
  3959. <!-- Unnamed (Table cell) -->
  3960. <div id="u13896" class="ax_default table_cell transition">
  3961. <svg data="images/物业员工/u13896.svg" id="u13896_img" class="img generatedImage" viewbox="71 30 137 40">
  3962. <path d="M 1 1 L 137 1 L 137 40 L 1 40 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 71 30 )" class="fill" />
  3963. <path d="M 0.5 1 L 0.5 40 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 30 )" class="stroke" />
  3964. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 30 )" class="stroke" />
  3965. </svg>
  3966. <div id="u13896_text" class="text " style="display:none; visibility: hidden">
  3967. <p></p>
  3968. </div>
  3969. </div>
  3970. <!-- Unnamed (Table cell) -->
  3971. <div id="u13897" class="ax_default table_cell transition">
  3972. <svg data="images/物业员工/u13897.svg" id="u13897_img" class="img generatedImage" viewbox="208 30 137 40">
  3973. <path d="M 1 1 L 137 1 L 137 40 L 1 40 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 208 30 )" class="fill" />
  3974. <path d="M 0.5 1 L 0.5 40 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 208 30 )" class="stroke" />
  3975. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 208 30 )" class="stroke" />
  3976. </svg>
  3977. <div id="u13897_text" class="text ">
  3978. <p><span>张三</span></p>
  3979. </div>
  3980. </div>
  3981. <!-- Unnamed (Table cell) -->
  3982. <div id="u13898" class="ax_default table_cell transition">
  3983. <svg data="images/物业员工/u13898.svg" id="u13898_img" class="img generatedImage" viewbox="344 30 137 40">
  3984. <path d="M 1 1 L 137 1 L 137 40 L 1 40 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 344 30 )" class="fill" />
  3985. <path d="M 0.5 1 L 0.5 40 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 344 30 )" class="stroke" />
  3986. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 344 30 )" class="stroke" />
  3987. </svg>
  3988. <div id="u13898_text" class="text ">
  3989. <p><span>1508888888</span></p>
  3990. </div>
  3991. </div>
  3992. <!-- Unnamed (Table cell) -->
  3993. <div id="u13899" class="ax_default table_cell transition">
  3994. <svg data="images/物业员工/u13899.svg" id="u13899_img" class="img generatedImage" viewbox="481 30 137 40">
  3995. <path d="M 1 1 L 137 1 L 137 40 L 1 40 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 481 30 )" class="fill" />
  3996. <path d="M 0.5 1 L 0.5 40 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 481 30 )" class="stroke" />
  3997. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 481 30 )" class="stroke" />
  3998. </svg>
  3999. <div id="u13899_text" class="text ">
  4000. <p><span style="font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;">用户</span><span style="font-family:'ArialMT', 'Arial', sans-serif;">ID</span></p>
  4001. </div>
  4002. </div>
  4003. <!-- Unnamed (Table cell) -->
  4004. <div id="u13900" class="ax_default table_cell transition">
  4005. <svg data="images/物业员工/u13900.svg" id="u13900_img" class="img generatedImage" viewbox="617 30 137 40">
  4006. <path d="M 1 1 L 136 1 L 136 40 L 1 40 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 617 30 )" class="fill" />
  4007. <path d="M 0.5 1 L 0.5 40 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 30 )" class="stroke" />
  4008. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 30 )" class="stroke" />
  4009. <path d="M 136.5 1 L 136.5 40 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 30 )" class="stroke" />
  4010. </svg>
  4011. <div id="u13900_text" class="text ">
  4012. <p><span>解除</span></p>
  4013. </div>
  4014. </div>
  4015. <!-- Unnamed (Table cell) -->
  4016. <div id="u13901" class="ax_default table_cell transition">
  4017. <svg data="images/物业员工/u13901.svg" id="u13901_img" class="img generatedImage" viewbox="0 70 71 30">
  4018. <path d="M 1 1 L 71 1 L 71 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 70 )" class="fill" />
  4019. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 70 )" class="stroke" />
  4020. <path d="M 0 0.5 L 71 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 70 )" class="stroke" />
  4021. </svg>
  4022. <div id="u13901_text" class="text ">
  4023. <p><span>2</span></p>
  4024. </div>
  4025. </div>
  4026. <!-- Unnamed (Table cell) -->
  4027. <div id="u13902" class="ax_default table_cell transition">
  4028. <svg data="images/物业员工/u13902.svg" id="u13902_img" class="img generatedImage" viewbox="71 70 137 30">
  4029. <path d="M 1 1 L 137 1 L 137 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 71 70 )" class="fill" />
  4030. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 70 )" class="stroke" />
  4031. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 70 )" class="stroke" />
  4032. </svg>
  4033. <div id="u13902_text" class="text " style="display:none; visibility: hidden">
  4034. <p></p>
  4035. </div>
  4036. </div>
  4037. <!-- Unnamed (Table cell) -->
  4038. <div id="u13903" class="ax_default table_cell transition">
  4039. <svg data="images/物业员工/u13903.svg" id="u13903_img" class="img generatedImage" viewbox="208 70 137 30">
  4040. <path d="M 1 1 L 137 1 L 137 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 208 70 )" class="fill" />
  4041. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 208 70 )" class="stroke" />
  4042. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 208 70 )" class="stroke" />
  4043. </svg>
  4044. <div id="u13903_text" class="text " style="display:none; visibility: hidden">
  4045. <p></p>
  4046. </div>
  4047. </div>
  4048. <!-- Unnamed (Table cell) -->
  4049. <div id="u13904" class="ax_default table_cell transition">
  4050. <svg data="images/物业员工/u13904.svg" id="u13904_img" class="img generatedImage" viewbox="344 70 137 30">
  4051. <path d="M 1 1 L 137 1 L 137 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 344 70 )" class="fill" />
  4052. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 344 70 )" class="stroke" />
  4053. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 344 70 )" class="stroke" />
  4054. </svg>
  4055. <div id="u13904_text" class="text " style="display:none; visibility: hidden">
  4056. <p></p>
  4057. </div>
  4058. </div>
  4059. <!-- Unnamed (Table cell) -->
  4060. <div id="u13905" class="ax_default table_cell transition">
  4061. <svg data="images/物业员工/u13905.svg" id="u13905_img" class="img generatedImage" viewbox="481 70 137 30">
  4062. <path d="M 1 1 L 137 1 L 137 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 481 70 )" class="fill" />
  4063. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 481 70 )" class="stroke" />
  4064. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 481 70 )" class="stroke" />
  4065. </svg>
  4066. <div id="u13905_text" class="text " style="display:none; visibility: hidden">
  4067. <p></p>
  4068. </div>
  4069. </div>
  4070. <!-- Unnamed (Table cell) -->
  4071. <div id="u13906" class="ax_default table_cell transition">
  4072. <svg data="images/物业员工/u13906.svg" id="u13906_img" class="img generatedImage" viewbox="617 70 137 30">
  4073. <path d="M 1 1 L 136 1 L 136 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 617 70 )" class="fill" />
  4074. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 70 )" class="stroke" />
  4075. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 70 )" class="stroke" />
  4076. <path d="M 136.5 1 L 136.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 70 )" class="stroke" />
  4077. </svg>
  4078. <div id="u13906_text" class="text " style="display:none; visibility: hidden">
  4079. <p></p>
  4080. </div>
  4081. </div>
  4082. <!-- Unnamed (Table cell) -->
  4083. <div id="u13907" class="ax_default table_cell transition">
  4084. <svg data="images/物业员工/u13907.svg" id="u13907_img" class="img generatedImage" viewbox="0 100 71 30">
  4085. <path d="M 1 1 L 71 1 L 71 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 100 )" class="fill" />
  4086. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 100 )" class="stroke" />
  4087. <path d="M 0 0.5 L 71 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 100 )" class="stroke" />
  4088. </svg>
  4089. <div id="u13907_text" class="text ">
  4090. <p><span>3</span></p>
  4091. </div>
  4092. </div>
  4093. <!-- Unnamed (Table cell) -->
  4094. <div id="u13908" class="ax_default table_cell transition">
  4095. <svg data="images/物业员工/u13908.svg" id="u13908_img" class="img generatedImage" viewbox="71 100 137 30">
  4096. <path d="M 1 1 L 137 1 L 137 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 71 100 )" class="fill" />
  4097. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 100 )" class="stroke" />
  4098. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 100 )" class="stroke" />
  4099. </svg>
  4100. <div id="u13908_text" class="text " style="display:none; visibility: hidden">
  4101. <p></p>
  4102. </div>
  4103. </div>
  4104. <!-- Unnamed (Table cell) -->
  4105. <div id="u13909" class="ax_default table_cell transition">
  4106. <svg data="images/物业员工/u13909.svg" id="u13909_img" class="img generatedImage" viewbox="208 100 137 30">
  4107. <path d="M 1 1 L 137 1 L 137 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 208 100 )" class="fill" />
  4108. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 208 100 )" class="stroke" />
  4109. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 208 100 )" class="stroke" />
  4110. </svg>
  4111. <div id="u13909_text" class="text " style="display:none; visibility: hidden">
  4112. <p></p>
  4113. </div>
  4114. </div>
  4115. <!-- Unnamed (Table cell) -->
  4116. <div id="u13910" class="ax_default table_cell transition">
  4117. <svg data="images/物业员工/u13910.svg" id="u13910_img" class="img generatedImage" viewbox="344 100 137 30">
  4118. <path d="M 1 1 L 137 1 L 137 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 344 100 )" class="fill" />
  4119. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 344 100 )" class="stroke" />
  4120. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 344 100 )" class="stroke" />
  4121. </svg>
  4122. <div id="u13910_text" class="text " style="display:none; visibility: hidden">
  4123. <p></p>
  4124. </div>
  4125. </div>
  4126. <!-- Unnamed (Table cell) -->
  4127. <div id="u13911" class="ax_default table_cell transition">
  4128. <svg data="images/物业员工/u13911.svg" id="u13911_img" class="img generatedImage" viewbox="481 100 137 30">
  4129. <path d="M 1 1 L 137 1 L 137 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 481 100 )" class="fill" />
  4130. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 481 100 )" class="stroke" />
  4131. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 481 100 )" class="stroke" />
  4132. </svg>
  4133. <div id="u13911_text" class="text " style="display:none; visibility: hidden">
  4134. <p></p>
  4135. </div>
  4136. </div>
  4137. <!-- Unnamed (Table cell) -->
  4138. <div id="u13912" class="ax_default table_cell transition">
  4139. <svg data="images/物业员工/u13912.svg" id="u13912_img" class="img generatedImage" viewbox="617 100 137 30">
  4140. <path d="M 1 1 L 136 1 L 136 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 617 100 )" class="fill" />
  4141. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 100 )" class="stroke" />
  4142. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 100 )" class="stroke" />
  4143. <path d="M 136.5 1 L 136.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 100 )" class="stroke" />
  4144. </svg>
  4145. <div id="u13912_text" class="text " style="display:none; visibility: hidden">
  4146. <p></p>
  4147. </div>
  4148. </div>
  4149. <!-- Unnamed (Table cell) -->
  4150. <div id="u13913" class="ax_default table_cell transition">
  4151. <svg data="images/物业员工/u13913.svg" id="u13913_img" class="img generatedImage" viewbox="0 130 71 30">
  4152. <path d="M 1 1 L 71 1 L 71 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 130 )" class="fill" />
  4153. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 130 )" class="stroke" />
  4154. <path d="M 0 0.5 L 71 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 130 )" class="stroke" />
  4155. </svg>
  4156. <div id="u13913_text" class="text ">
  4157. <p><span>4</span></p>
  4158. </div>
  4159. </div>
  4160. <!-- Unnamed (Table cell) -->
  4161. <div id="u13914" class="ax_default table_cell transition">
  4162. <svg data="images/物业员工/u13914.svg" id="u13914_img" class="img generatedImage" viewbox="71 130 137 30">
  4163. <path d="M 1 1 L 137 1 L 137 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 71 130 )" class="fill" />
  4164. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 130 )" class="stroke" />
  4165. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 130 )" class="stroke" />
  4166. </svg>
  4167. <div id="u13914_text" class="text " style="display:none; visibility: hidden">
  4168. <p></p>
  4169. </div>
  4170. </div>
  4171. <!-- Unnamed (Table cell) -->
  4172. <div id="u13915" class="ax_default table_cell transition">
  4173. <svg data="images/物业员工/u13915.svg" id="u13915_img" class="img generatedImage" viewbox="208 130 137 30">
  4174. <path d="M 1 1 L 137 1 L 137 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 208 130 )" class="fill" />
  4175. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 208 130 )" class="stroke" />
  4176. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 208 130 )" class="stroke" />
  4177. </svg>
  4178. <div id="u13915_text" class="text " style="display:none; visibility: hidden">
  4179. <p></p>
  4180. </div>
  4181. </div>
  4182. <!-- Unnamed (Table cell) -->
  4183. <div id="u13916" class="ax_default table_cell transition">
  4184. <svg data="images/物业员工/u13916.svg" id="u13916_img" class="img generatedImage" viewbox="344 130 137 30">
  4185. <path d="M 1 1 L 137 1 L 137 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 344 130 )" class="fill" />
  4186. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 344 130 )" class="stroke" />
  4187. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 344 130 )" class="stroke" />
  4188. </svg>
  4189. <div id="u13916_text" class="text " style="display:none; visibility: hidden">
  4190. <p></p>
  4191. </div>
  4192. </div>
  4193. <!-- Unnamed (Table cell) -->
  4194. <div id="u13917" class="ax_default table_cell transition">
  4195. <svg data="images/物业员工/u13917.svg" id="u13917_img" class="img generatedImage" viewbox="481 130 137 30">
  4196. <path d="M 1 1 L 137 1 L 137 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 481 130 )" class="fill" />
  4197. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 481 130 )" class="stroke" />
  4198. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 481 130 )" class="stroke" />
  4199. </svg>
  4200. <div id="u13917_text" class="text " style="display:none; visibility: hidden">
  4201. <p></p>
  4202. </div>
  4203. </div>
  4204. <!-- Unnamed (Table cell) -->
  4205. <div id="u13918" class="ax_default table_cell transition">
  4206. <svg data="images/物业员工/u13918.svg" id="u13918_img" class="img generatedImage" viewbox="617 130 137 30">
  4207. <path d="M 1 1 L 136 1 L 136 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 617 130 )" class="fill" />
  4208. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 130 )" class="stroke" />
  4209. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 130 )" class="stroke" />
  4210. <path d="M 136.5 1 L 136.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 130 )" class="stroke" />
  4211. </svg>
  4212. <div id="u13918_text" class="text " style="display:none; visibility: hidden">
  4213. <p></p>
  4214. </div>
  4215. </div>
  4216. <!-- Unnamed (Table cell) -->
  4217. <div id="u13919" class="ax_default table_cell transition">
  4218. <svg data="images/物业员工/u13919.svg" id="u13919_img" class="img generatedImage" viewbox="0 160 71 30">
  4219. <path d="M 1 1 L 71 1 L 71 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 160 )" class="fill" />
  4220. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 160 )" class="stroke" />
  4221. <path d="M 0 0.5 L 71 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 160 )" class="stroke" />
  4222. </svg>
  4223. <div id="u13919_text" class="text ">
  4224. <p><span>5</span></p>
  4225. </div>
  4226. </div>
  4227. <!-- Unnamed (Table cell) -->
  4228. <div id="u13920" class="ax_default table_cell transition">
  4229. <svg data="images/物业员工/u13920.svg" id="u13920_img" class="img generatedImage" viewbox="71 160 137 30">
  4230. <path d="M 1 1 L 137 1 L 137 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 71 160 )" class="fill" />
  4231. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 160 )" class="stroke" />
  4232. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 160 )" class="stroke" />
  4233. </svg>
  4234. <div id="u13920_text" class="text " style="display:none; visibility: hidden">
  4235. <p></p>
  4236. </div>
  4237. </div>
  4238. <!-- Unnamed (Table cell) -->
  4239. <div id="u13921" class="ax_default table_cell transition">
  4240. <svg data="images/物业员工/u13921.svg" id="u13921_img" class="img generatedImage" viewbox="208 160 137 30">
  4241. <path d="M 1 1 L 137 1 L 137 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 208 160 )" class="fill" />
  4242. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 208 160 )" class="stroke" />
  4243. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 208 160 )" class="stroke" />
  4244. </svg>
  4245. <div id="u13921_text" class="text " style="display:none; visibility: hidden">
  4246. <p></p>
  4247. </div>
  4248. </div>
  4249. <!-- Unnamed (Table cell) -->
  4250. <div id="u13922" class="ax_default table_cell transition">
  4251. <svg data="images/物业员工/u13922.svg" id="u13922_img" class="img generatedImage" viewbox="344 160 137 30">
  4252. <path d="M 1 1 L 137 1 L 137 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 344 160 )" class="fill" />
  4253. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 344 160 )" class="stroke" />
  4254. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 344 160 )" class="stroke" />
  4255. </svg>
  4256. <div id="u13922_text" class="text " style="display:none; visibility: hidden">
  4257. <p></p>
  4258. </div>
  4259. </div>
  4260. <!-- Unnamed (Table cell) -->
  4261. <div id="u13923" class="ax_default table_cell transition">
  4262. <svg data="images/物业员工/u13923.svg" id="u13923_img" class="img generatedImage" viewbox="481 160 137 30">
  4263. <path d="M 1 1 L 137 1 L 137 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 481 160 )" class="fill" />
  4264. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 481 160 )" class="stroke" />
  4265. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 481 160 )" class="stroke" />
  4266. </svg>
  4267. <div id="u13923_text" class="text " style="display:none; visibility: hidden">
  4268. <p></p>
  4269. </div>
  4270. </div>
  4271. <!-- Unnamed (Table cell) -->
  4272. <div id="u13924" class="ax_default table_cell transition">
  4273. <svg data="images/物业员工/u13924.svg" id="u13924_img" class="img generatedImage" viewbox="617 160 137 30">
  4274. <path d="M 1 1 L 136 1 L 136 30 L 1 30 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 617 160 )" class="fill" />
  4275. <path d="M 0.5 1 L 0.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 160 )" class="stroke" />
  4276. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 160 )" class="stroke" />
  4277. <path d="M 136.5 1 L 136.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 160 )" class="stroke" />
  4278. </svg>
  4279. <div id="u13924_text" class="text " style="display:none; visibility: hidden">
  4280. <p></p>
  4281. </div>
  4282. </div>
  4283. <!-- Unnamed (Table cell) -->
  4284. <div id="u13925" class="ax_default table_cell transition">
  4285. <svg data="images/物业员工/u13925.svg" id="u13925_img" class="img generatedImage" viewbox="0 190 71 23">
  4286. <path d="M 1 1 L 71 1 L 71 22 L 1 22 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 0 190 )" class="fill" />
  4287. <path d="M 0.5 1 L 0.5 22 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 190 )" class="stroke" />
  4288. <path d="M 0 0.5 L 71 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 190 )" class="stroke" />
  4289. <path d="M 0 22.5 L 71 22.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 190 )" class="stroke" />
  4290. </svg>
  4291. <div id="u13925_text" class="text ">
  4292. <p><span>6</span></p>
  4293. </div>
  4294. </div>
  4295. <!-- Unnamed (Table cell) -->
  4296. <div id="u13926" class="ax_default table_cell transition">
  4297. <svg data="images/物业员工/u13926.svg" id="u13926_img" class="img generatedImage" viewbox="71 190 137 23">
  4298. <path d="M 1 1 L 137 1 L 137 22 L 1 22 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 71 190 )" class="fill" />
  4299. <path d="M 0.5 1 L 0.5 22 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 190 )" class="stroke" />
  4300. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 190 )" class="stroke" />
  4301. <path d="M 0 22.5 L 137 22.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 71 190 )" class="stroke" />
  4302. </svg>
  4303. <div id="u13926_text" class="text " style="display:none; visibility: hidden">
  4304. <p></p>
  4305. </div>
  4306. </div>
  4307. <!-- Unnamed (Table cell) -->
  4308. <div id="u13927" class="ax_default table_cell transition">
  4309. <svg data="images/物业员工/u13927.svg" id="u13927_img" class="img generatedImage" viewbox="208 190 137 23">
  4310. <path d="M 1 1 L 137 1 L 137 22 L 1 22 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 208 190 )" class="fill" />
  4311. <path d="M 0.5 1 L 0.5 22 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 208 190 )" class="stroke" />
  4312. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 208 190 )" class="stroke" />
  4313. <path d="M 0 22.5 L 137 22.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 208 190 )" class="stroke" />
  4314. </svg>
  4315. <div id="u13927_text" class="text " style="display:none; visibility: hidden">
  4316. <p></p>
  4317. </div>
  4318. </div>
  4319. <!-- Unnamed (Table cell) -->
  4320. <div id="u13928" class="ax_default table_cell transition">
  4321. <svg data="images/物业员工/u13928.svg" id="u13928_img" class="img generatedImage" viewbox="344 190 137 23">
  4322. <path d="M 1 1 L 137 1 L 137 22 L 1 22 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 344 190 )" class="fill" />
  4323. <path d="M 0.5 1 L 0.5 22 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 344 190 )" class="stroke" />
  4324. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 344 190 )" class="stroke" />
  4325. <path d="M 0 22.5 L 137 22.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 344 190 )" class="stroke" />
  4326. </svg>
  4327. <div id="u13928_text" class="text " style="display:none; visibility: hidden">
  4328. <p></p>
  4329. </div>
  4330. </div>
  4331. <!-- Unnamed (Table cell) -->
  4332. <div id="u13929" class="ax_default table_cell transition">
  4333. <svg data="images/物业员工/u13929.svg" id="u13929_img" class="img generatedImage" viewbox="481 190 137 23">
  4334. <path d="M 1 1 L 137 1 L 137 22 L 1 22 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 481 190 )" class="fill" />
  4335. <path d="M 0.5 1 L 0.5 22 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 481 190 )" class="stroke" />
  4336. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 481 190 )" class="stroke" />
  4337. <path d="M 0 22.5 L 137 22.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 481 190 )" class="stroke" />
  4338. </svg>
  4339. <div id="u13929_text" class="text " style="display:none; visibility: hidden">
  4340. <p></p>
  4341. </div>
  4342. </div>
  4343. <!-- Unnamed (Table cell) -->
  4344. <div id="u13930" class="ax_default table_cell transition">
  4345. <svg data="images/物业员工/u13930.svg" id="u13930_img" class="img generatedImage" viewbox="617 190 137 23">
  4346. <path d="M 1 1 L 136 1 L 136 22 L 1 22 L 1 1 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 617 190 )" class="fill" />
  4347. <path d="M 0.5 1 L 0.5 22 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 190 )" class="stroke" />
  4348. <path d="M 0 0.5 L 137 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 190 )" class="stroke" />
  4349. <path d="M 136.5 1 L 136.5 22 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 190 )" class="stroke" />
  4350. <path d="M 0 22.5 L 137 22.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 617 190 )" class="stroke" />
  4351. </svg>
  4352. <div id="u13930_text" class="text " style="display:none; visibility: hidden">
  4353. <p></p>
  4354. </div>
  4355. </div>
  4356. </div>
  4357. <!-- Unnamed (Group) -->
  4358. <div id="u13931" class="ax_default" data-left="1806" data-top="134" data-width="140" data-height="30" layer-opacity="1">
  4359. <!-- Unnamed (Rectangle) -->
  4360. <div id="u13932" class="ax_default shape transition">
  4361. <div id="u13932_div" class=""></div>
  4362. <div id="u13932_text" class="text " style="display:none; visibility: hidden">
  4363. <p></p>
  4364. </div>
  4365. </div>
  4366. <!-- 选项内容 (Text field) -->
  4367. <div id="u13933" class="ax_default text_field transition" data-label="选项内容">
  4368. <div id="u13933_div" class=""></div>
  4369. <input id="u13933_input" type="text" value="" class="u13933_input"/>
  4370. </div>
  4371. </div>
  4372. <!-- Unnamed (Group) -->
  4373. <div id="u13934" class="ax_default" data-left="1956" data-top="134" data-width="140" data-height="30" layer-opacity="1">
  4374. <!-- Unnamed (Rectangle) -->
  4375. <div id="u13935" class="ax_default shape transition">
  4376. <div id="u13935_div" class=""></div>
  4377. <div id="u13935_text" class="text " style="display:none; visibility: hidden">
  4378. <p></p>
  4379. </div>
  4380. </div>
  4381. <!-- 选项内容 (Text field) -->
  4382. <div id="u13936" class="ax_default text_field transition" data-label="选项内容">
  4383. <div id="u13936_div" class=""></div>
  4384. <input id="u13936_input" type="text" value="" class="u13936_input"/>
  4385. </div>
  4386. </div>
  4387. <!-- Unnamed (Group) -->
  4388. <div id="u13937" class="ax_default" data-left="2106" data-top="133" data-width="130" data-height="30" layer-opacity="1">
  4389. <!-- Unnamed (Rectangle) -->
  4390. <div id="u13938" class="ax_default box_1 transition">
  4391. <div id="u13938_div" class=""></div>
  4392. <div id="u13938_text" class="text ">
  4393. <p><span>搜索</span></p>
  4394. </div>
  4395. </div>
  4396. <!-- Unnamed (Rectangle) -->
  4397. <div id="u13939" class="ax_default box_1 transition">
  4398. <div id="u13939_div" class=""></div>
  4399. <div id="u13939_text" class="text ">
  4400. <p><span>重置</span></p>
  4401. </div>
  4402. </div>
  4403. </div>
  4404. <!-- Unnamed (Group) -->
  4405. <div id="u13940" class="ax_default" data-left="1656" data-top="134" data-width="140" data-height="30" layer-opacity="1">
  4406. <!-- Unnamed (Rectangle) -->
  4407. <div id="u13941" class="ax_default shape transition">
  4408. <div id="u13941_div" class=""></div>
  4409. <div id="u13941_text" class="text " style="display:none; visibility: hidden">
  4410. <p></p>
  4411. </div>
  4412. </div>
  4413. <!-- 选项内容 (Text field) -->
  4414. <div id="u13942" class="ax_default text_field transition" data-label="选项内容">
  4415. <div id="u13942_div" class=""></div>
  4416. <input id="u13942_input" type="text" value="" class="u13942_input"/>
  4417. </div>
  4418. </div>
  4419. </div>
  4420. <!-- Unnamed (Connector) -->
  4421. <div id="u13943" class="ax_default connector1">
  4422. <img id="u13943_seg0" class="img " src="images/物业员工/u13943_seg0.svg" alt="u13943_seg0"/>
  4423. <img id="u13943_seg1" class="img " src="images/物业员工/u13943_seg1.svg" alt="u13943_seg1"/>
  4424. <img id="u13943_seg2" class="img " src="images/物业员工/u13943_seg2.svg" alt="u13943_seg2"/>
  4425. <div id="u13943_text" class="text " style="display:none; visibility: hidden">
  4426. <p></p>
  4427. </div>
  4428. </div>
  4429. <!-- Unnamed (Group) -->
  4430. <div id="u13944" class="ax_default" data-left="1876" data-top="486" data-width="380" data-height="160" layer-opacity="1">
  4431. <!-- Unnamed (Group) -->
  4432. <div id="u13945" class="ax_default" data-left="1876" data-top="486" data-width="380" data-height="160" layer-opacity="1">
  4433. <!-- Unnamed (Rectangle) -->
  4434. <div id="u13946" class="ax_default shape transition">
  4435. <div id="u13946_div" class=""></div>
  4436. <div id="u13946_text" class="text " style="display:none; visibility: hidden">
  4437. <p></p>
  4438. </div>
  4439. </div>
  4440. <!-- Unnamed (Rectangle) -->
  4441. <div id="u13947" class="ax_default paragraph transition">
  4442. <div id="u13947_div" class=""></div>
  4443. <div id="u13947_text" class="text ">
  4444. <p><span>确定解除绑定的微信用户?</span></p>
  4445. </div>
  4446. </div>
  4447. <!-- Unnamed (Rectangle) -->
  4448. <div id="u13948" class="ax_default shape transition">
  4449. <div id="u13948_div" class=""></div>
  4450. <div id="u13948_text" class="text ">
  4451. <p><span>确定</span></p>
  4452. </div>
  4453. </div>
  4454. <!-- Unnamed (Shape) -->
  4455. <div id="u13949" class="ax_default icon transition">
  4456. <svg data="images/项目列表/u4798.svg" id="u13949_img" class="img generatedImage">
  4457. <defs>
  4458. <pattern id="u13949_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
  4459. <mask fill="white" id="u13949_img_cl398">
  4460. <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" />
  4461. </mask>
  4462. </defs>
  4463. <g transform="matrix(1 0 0 1 -1661 -842 )">
  4464. <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" />
  4465. <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(#u13949_img_cl398)" />
  4466. <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(#u13949_img_cl398)" />
  4467. <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(#u13949_img_cl398)" />
  4468. </g>
  4469. </svg>
  4470. <div id="u13949_text" class="text " style="display:none; visibility: hidden">
  4471. <p></p>
  4472. </div>
  4473. </div>
  4474. <!-- Unnamed (Rectangle) -->
  4475. <div id="u13950" class="ax_default paragraph transition">
  4476. <div id="u13950_div" class=""></div>
  4477. <div id="u13950_text" class="text ">
  4478. <p><span>解除之后,该微信用户账号将移除相关通行权限,且解除与项目的关系。</span></p>
  4479. </div>
  4480. </div>
  4481. <!-- Unnamed (Rectangle) -->
  4482. <div id="u13951" class="ax_default shape transition">
  4483. <div id="u13951_div" class=""></div>
  4484. <div id="u13951_text" class="text ">
  4485. <p><span>取 消</span></p>
  4486. </div>
  4487. </div>
  4488. </div>
  4489. </div>
  4490. </div>
  4491. <script src="resources/scripts/axure/ios.js"></script>
  4492. </body>
  4493. </html>