123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>物业员工</title>
- <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
- <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
- <link href="resources/css/axure_rp_page.css" type="text/css" rel="stylesheet"/>
- <link href="data/styles.css" type="text/css" rel="stylesheet"/>
- <link href="files/物业员工/styles.css" type="text/css" rel="stylesheet"/>
- <link href="https://fonts.googleapis.com" rel="preconnect"/>
- <link href="https://fonts.gstatic.com" rel="preconnect"/>
- <link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet"/>
- <script src="resources/scripts/jquery-3.7.1.min.js"></script>
- <script src="resources/scripts/axure/axQuery.js"></script>
- <script src="resources/scripts/axure/globals.js"></script>
- <script src="resources/scripts/axutils.js"></script>
- <script src="resources/scripts/axure/annotation.js"></script>
- <script src="resources/scripts/axure/axQuery.std.js"></script>
- <script src="resources/scripts/axure/doc.js"></script>
- <script src="resources/scripts/messagecenter.js"></script>
- <script src="resources/scripts/axure/events.js"></script>
- <script src="resources/scripts/axure/recording.js"></script>
- <script src="resources/scripts/axure/action.js"></script>
- <script src="resources/scripts/axure/expr.js"></script>
- <script src="resources/scripts/axure/geometry.js"></script>
- <script src="resources/scripts/axure/flyout.js"></script>
- <script src="resources/scripts/axure/model.js"></script>
- <script src="resources/scripts/axure/repeater.js"></script>
- <script src="resources/scripts/axure/sto.js"></script>
- <script src="resources/scripts/axure/utils.temp.js"></script>
- <script src="resources/scripts/axure/variables.js"></script>
- <script src="resources/scripts/axure/drag.js"></script>
- <script src="resources/scripts/axure/move.js"></script>
- <script src="resources/scripts/axure/visibility.js"></script>
- <script src="resources/scripts/axure/style.js"></script>
- <script src="resources/scripts/axure/adaptive.js"></script>
- <script src="resources/scripts/axure/tree.js"></script>
- <script src="resources/scripts/axure/init.temp.js"></script>
- <script src="resources/scripts/axure/legacy.js"></script>
- <script src="resources/scripts/axure/viewer.js"></script>
- <script src="resources/scripts/axure/math.js"></script>
- <script src="resources/scripts/axure/jquery.nicescroll.min.js"></script>
- <script src="data/document.js"></script>
- <script src="files/物业员工/data.js"></script>
- <script type="text/javascript">
- $axure.utils.getTransparentGifPath = function() { return 'resources/images/transparent.gif'; };
- $axure.utils.getOtherPath = function() { return 'resources/Other.html'; };
- $axure.utils.getReloadPath = function() { return 'resources/reload.html'; };
- </script>
- </head>
- <body>
- <div id="base" class="">
- <!-- Unnamed (客户管理端-一级) -->
- <div id="u13457" class="nopointer ax_default">
- <!-- Unnamed (Rectangle) -->
- <div id="u13458" class="ax_default box_2 transition">
- <div id="u13458_div" class=""></div>
- <div id="u13458_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13459" class="ax_default label transition">
- <div id="u13459_div" class=""></div>
- <div id="u13459_text" class="text ">
- <p><span>课后延时慧学平台</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13460" class="ax_default box_2 transition">
- <div id="u13460_div" class=""></div>
- <div id="u13460_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13461" class="ax_default" data-left="19" data-top="10" data-width="204" data-height="31" layer-opacity="1">
- <!-- Unnamed (Ellipse) -->
- <div id="u13462" class="ax_default ellipse transition">
- <svg data="images/pc网页端/u5.svg" id="u13462_img" class="img generatedImage">
- <defs>
- <pattern id="u13462_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13462_img_cl1">
- <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -19 -10 )">
- <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 19 10 )" class="fill" />
- <path d="M 0 15.5 C 0 6.819999999999999 6.819999999999999 0 15.5 0 C 24.18 0 31 6.819999999999999 31 15.5 C 31 24.18 24.18 31 15.5 31 C 6.819999999999999 31 0 24.18 0 15.5 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 19 10 )" class="stroke" mask="url(#u13462_img_cl1)" />
- </g>
- </svg>
- <div id="u13462_text" class="text ">
- <p><span>logo</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13463" class="ax_default label transition">
- <div id="u13463_div" class=""></div>
- <div id="u13463_text" class="text ">
- <p><span>保利智慧社区管理平台</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13464" class="ax_default box_2 transition">
- <div id="u13464_div" class=""></div>
- <div id="u13464_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13465" class="ax_default" data-left="20" data-top="171" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13466" class="ax_default label transition">
- <div id="u13466_div" class=""></div>
- <div id="u13466_text" class="text ">
- <p><span>项目</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u13467" class="ax_default placeholder transition">
- <svg data="images/物业员工/u13467.svg" id="u13467_img" class="img generatedImage">
- <defs>
- <pattern id="u13467_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13467_img_cl983">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -175 )">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 175 )" class="fill" />
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 175 )" class="stroke" mask="url(#u13467_img_cl983)" />
- <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 175 )" class="stroke" />
- </g>
- </svg>
- <div id="u13467_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13468" class="ax_default" data-left="20" data-top="381" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13469" class="ax_default label transition">
- <div id="u13469_div" class=""></div>
- <div id="u13469_text" class="text ">
- <p><span>企业</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u13470" class="ax_default placeholder transition">
- <svg data="images/物业员工/u13470.svg" id="u13470_img" class="img generatedImage">
- <defs>
- <pattern id="u13470_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13470_img_cl984">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -385 )">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 385 )" class="fill" />
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 385 )" class="stroke" mask="url(#u13470_img_cl984)" />
- <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 385 )" class="stroke" />
- </g>
- </svg>
- <div id="u13470_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13471" class="ax_default" data-left="20" data-top="133" data-width="68" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13472" class="ax_default label transition">
- <div id="u13472_div" class=""></div>
- <div id="u13472_text" class="text ">
- <p><span>可视化</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u13473" class="ax_default placeholder transition">
- <svg data="images/物业员工/u13473.svg" id="u13473_img" class="img generatedImage">
- <defs>
- <pattern id="u13473_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13473_img_cl985">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -137 )">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 137 )" class="fill" />
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 137 )" class="stroke" mask="url(#u13473_img_cl985)" />
- <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 137 )" class="stroke" />
- </g>
- </svg>
- <div id="u13473_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13474" class="ax_default" data-left="20" data-top="423" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13475" class="ax_default label transition">
- <div id="u13475_div" class=""></div>
- <div id="u13475_text" class="text ">
- <p><span>标签</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u13476" class="ax_default placeholder transition">
- <svg data="images/物业员工/u13476.svg" id="u13476_img" class="img generatedImage">
- <defs>
- <pattern id="u13476_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13476_img_cl986">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -427 )">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 427 )" class="fill" />
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 427 )" class="stroke" mask="url(#u13476_img_cl986)" />
- <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 427 )" class="stroke" />
- </g>
- </svg>
- <div id="u13476_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13477" class="ax_default" data-left="20" data-top="297" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13478" class="ax_default label transition">
- <div id="u13478_div" class=""></div>
- <div id="u13478_text" class="text ">
- <p><span>财务</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u13479" class="ax_default placeholder transition">
- <svg data="images/物业员工/u13479.svg" id="u13479_img" class="img generatedImage">
- <defs>
- <pattern id="u13479_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13479_img_cl987">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -301 )">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 301 )" class="fill" />
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 301 )" class="stroke" mask="url(#u13479_img_cl987)" />
- <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 301 )" class="stroke" />
- </g>
- </svg>
- <div id="u13479_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13480" class="ax_default" data-left="20" data-top="213" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13481" class="ax_default label transition">
- <div id="u13481_div" class=""></div>
- <div id="u13481_text" class="text ">
- <p><span>空间</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u13482" class="ax_default placeholder transition">
- <svg data="images/物业员工/u13482.svg" id="u13482_img" class="img generatedImage">
- <defs>
- <pattern id="u13482_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13482_img_cl988">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -217 )">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 217 )" class="fill" />
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 217 )" class="stroke" mask="url(#u13482_img_cl988)" />
- <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 217 )" class="stroke" />
- </g>
- </svg>
- <div id="u13482_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13483" class="ax_default" data-left="20" data-top="339" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13484" class="ax_default label transition">
- <div id="u13484_div" class=""></div>
- <div id="u13484_text" class="text ">
- <p><span>办公</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u13485" class="ax_default placeholder transition">
- <svg data="images/物业员工/u13485.svg" id="u13485_img" class="img generatedImage">
- <defs>
- <pattern id="u13485_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13485_img_cl989">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -343 )">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 343 )" class="fill" />
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 343 )" class="stroke" mask="url(#u13485_img_cl989)" />
- <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 343 )" class="stroke" />
- </g>
- </svg>
- <div id="u13485_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13486" class="ax_default" data-left="20" data-top="465" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13487" class="ax_default label transition">
- <div id="u13487_div" class=""></div>
- <div id="u13487_text" class="text ">
- <p><span>系统</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u13488" class="ax_default placeholder transition">
- <svg data="images/物业员工/u13488.svg" id="u13488_img" class="img generatedImage">
- <defs>
- <pattern id="u13488_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13488_img_cl990">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -469 )">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 469 )" class="fill" />
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 469 )" class="stroke" mask="url(#u13488_img_cl990)" />
- <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 469 )" class="stroke" />
- </g>
- </svg>
- <div id="u13488_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13489" class="ax_default" data-left="20" data-top="1144" data-width="61" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13490" class="ax_default label transition">
- <div id="u13490_div" class=""></div>
- <div id="u13490_text" class="text ">
- <p><span>消息</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u13491" class="ax_default placeholder transition">
- <svg data="images/物业员工/u13491.svg" id="u13491_img" class="img generatedImage">
- <defs>
- <pattern id="u13491_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13491_img_cl991">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -1144 )">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1144 )" class="fill" />
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1144 )" class="stroke" mask="url(#u13491_img_cl991)" />
- <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1144 )" class="stroke" />
- </g>
- </svg>
- <div id="u13491_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13492" class="ax_default" data-left="20" data-top="1186" data-width="61" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13493" class="ax_default label transition">
- <div id="u13493_div" class=""></div>
- <div id="u13493_text" class="text ">
- <p><span>设置</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u13494" class="ax_default placeholder transition">
- <svg data="images/物业员工/u13494.svg" id="u13494_img" class="img generatedImage">
- <defs>
- <pattern id="u13494_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13494_img_cl992">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -1186 )">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1186 )" class="fill" />
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1186 )" class="stroke" mask="url(#u13494_img_cl992)" />
- <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1186 )" class="stroke" />
- </g>
- </svg>
- <div id="u13494_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13495" class="ax_default" data-left="20" data-top="255" data-width="52" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13496" class="ax_default label transition">
- <div id="u13496_div" class=""></div>
- <div id="u13496_text" class="text ">
- <p><span>收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u13497" class="ax_default placeholder transition">
- <svg data="images/物业员工/u13497.svg" id="u13497_img" class="img generatedImage">
- <defs>
- <pattern id="u13497_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13497_img_cl993">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -259 )">
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 259 )" class="fill" />
- <path d="M 0 14 L 0 0 L 14 0 L 14 14 L 0 14 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 259 )" class="stroke" mask="url(#u13497_img_cl993)" />
- <path d="M 13.646446609406725 0.35355339059327373 L 0.35355339059327373 13.646446609406725 M 0.35355339059327373 0.35355339059327373 L 13.646446609406725 13.646446609406725 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 259 )" class="stroke" />
- </g>
- </svg>
- <div id="u13497_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13498" class="ax_default" data-left="1194" data-top="11" data-width="386" data-height="27" layer-opacity="1">
- <!-- Unnamed (Droplist) -->
- <div id="u13499" class="ax_default droplist transition">
- <div id="u13499_div" class=""></div>
- <select id="u13499_input" class="u13499_input">
- <option class="u13499_input_option" value="西安中尚硕房地产开发有限公司">西安中尚硕房地产开发有限公司</option>
- </select>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u13500" class="ax_default placeholder transition">
- <svg data="images/物业员工/u13500.svg" id="u13500_img" class="img generatedImage">
- <defs>
- <pattern id="u13500_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13500_img_cl994">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -1194 -14 )">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 1194 14 )" class="fill" />
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1194 14 )" class="stroke" mask="url(#u13500_img_cl994)" />
- <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 1194 14 )" class="stroke" />
- </g>
- </svg>
- <div id="u13500_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13501" class="ax_default label transition">
- <div id="u13501_div" class=""></div>
- <div id="u13501_text" class="text ">
- <p><span>进入运营后台</span></p>
- </div>
- </div>
- <!-- Unnamed (Vertical line) -->
- <div id="u13502" class="ax_default line1 transition">
- <svg data="images/pc网页端/u45.svg" id="u13502_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -1452 -19 )">
- <path d="M 0.5 0 L 0.5 11 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 1)" fill="none" transform="matrix(1 0 0 1 1452 19 )" class="stroke" />
- </g>
- </svg>
- <div id="u13502_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13503" class="ax_default" data-left="20" data-top="1081" data-width="61" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13504" class="ax_default label transition">
- <div id="u13504_div" class=""></div>
- <div id="u13504_text" class="text ">
- <p><span>应用</span></p>
- </div>
- </div>
- <!-- Unnamed (Placeholder) -->
- <div id="u13505" class="ax_default placeholder transition">
- <svg data="images/物业员工/u13505.svg" id="u13505_img" class="img generatedImage">
- <defs>
- <pattern id="u13505_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13505_img_cl995">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -1081 )">
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 20 1081 )" class="fill" />
- <path d="M 0 22 L 0 0 L 22 0 L 22 22 L 0 22 Z " stroke-width="2" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1081 )" class="stroke" mask="url(#u13505_img_cl995)" />
- <path d="M 21.646446609406727 0.35355339059327373 L 0.35355339059327373 21.646446609406727 M 0.35355339059327373 0.35355339059327373 L 21.646446609406727 21.646446609406727 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 20 1081 )" class="stroke" />
- </g>
- </svg>
- <div id="u13505_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u13506" class="ax_default line1 transition">
- <svg data="images/pc网页端/u49.svg" id="u13506_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -20 -1123 )">
- <path d="M 0 0.5 L 68 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 1123 )" class="stroke" />
- </g>
- </svg>
- <div id="u13506_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u13507" class="ax_default line1 transition">
- <svg data="images/pc网页端/u49.svg" id="u13507_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -20 -1123 )">
- <path d="M 0 0.5 L 68 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 1123 )" class="stroke" />
- </g>
- </svg>
- <div id="u13507_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u13508" class="ax_default line1 transition">
- <svg data="images/pc网页端/u51.svg" id="u13508_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -20 -112 )">
- <path d="M 0 0.5 L 56 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0.2)" fill="none" transform="matrix(1 0 0 1 20 112 )" class="stroke" />
- </g>
- </svg>
- <div id="u13508_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13509" class="ax_default" data-left="20" data-top="71" data-width="56" data-height="22" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13510" class="ax_default label transition">
- <div id="u13510_div" class=""></div>
- <div id="u13510_text" class="text ">
- <p><span>主页</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u13511" class="ax_default icon transition">
- <svg data="images/pc网页端/u54.svg" id="u13511_img" class="img generatedImage">
- <defs>
- <pattern id="u13511_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13511_img_cl15">
- <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -20 -75 )">
- <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z M 17.98884758364312 7.054559625876852 C 17.996282527881043 7.152766952455183 17.970260223048328 7.23824369966225 17.91078066914498 7.310989867498052 L 17.219330855018587 8.118472330475448 C 17.159851301115243 8.183943881527671 17.0817843866171 8.22395427383736 16.985130111524164 8.238503507404522 L 16.95167286245353 8.238503507404522 C 16.855018587360597 8.238503507404522 16.776951672862456 8.21304234866199 16.71747211895911 8.162120031176928 L 9 1.8659392049883088 L 1.2825278810408922 8.162120031176928 C 1.1933085501858736 8.22031696544557 1.1040892193308551 8.2457781241881 1.0148698884758365 8.238503507404522 C 0.9182156133828997 8.22395427383736 0.8401486988847585 8.183943881527671 0.7806691449814126 8.118472330475448 L 0.08921933085501858 7.310989867498052 C 0.029739776951672875 7.23824369966225 0.0037174721189591345 7.152766952455183 0.011152416356877323 7.054559625876852 C 0.018587360594795592 6.956352299298519 0.05947955390334575 6.878150168875032 0.13382899628252787 6.819953234606391 L 8.152416356877323 0.2837100545596263 C 8.390334572490707 0.09457001818654054 8.672862453531598 0 9 0 C 9.327137546468403 0 9.609665427509295 0.09457001818654054 9.847583643122677 0.2837100545596263 L 12.568773234200744 2.5097427903351512 L 12.568773234200744 0.38191738113795726 C 12.568773234200744 0.2800727461678343 12.602230483271375 0.1964146531566635 12.66914498141264 0.13094310210444338 C 12.736059479553903 0.06547155105222169 12.821561338289962 0.032735775526110844 12.925650557620818 0.032735775526110844 L 15.066914498141266 0.032735775526110844 C 15.17100371747212 0.032735775526110844 15.256505576208177 0.06547155105222169 15.323420074349443 0.13094310210444338 C 15.390334572490707 0.1964146531566635 15.42379182156134 0.2800727461678343 15.42379182156134 0.38191738113795726 L 15.42379182156134 4.83398285268901 L 17.866171003717472 6.819953234606391 C 17.940520446096656 6.878150168875032 17.981412639405207 6.956352299298519 17.98884758364312 7.054559625876852 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" transform="matrix(1 0 0 1 20 75 )" class="fill" />
- <path d="M 15.41263940520446 7.998441153546375 C 15.420074349442379 8.012990387113536 15.42379182156134 8.034814237464277 15.42379182156134 8.063912704598597 L 15.42379182156134 13.301636788776305 C 15.42379182156134 13.49077682514939 15.353159851301116 13.654455702779943 15.211895910780669 13.792673421667965 C 15.070631970260225 13.930891140555989 14.903345724907066 14 14.710037174721188 14 L 10.427509293680297 14 L 10.427509293680297 9.809820732657833 L 7.5724907063197024 9.809820732657833 L 7.5724907063197024 14 L 3.2899628252788102 14 C 3.0966542750929373 14 2.929368029739777 13.930891140555989 2.7881040892193307 13.792673421667965 C 2.6468401486988853 13.654455702779943 2.5762081784386615 13.49077682514939 2.5762081784386615 13.301636788776305 L 2.5762081784386615 8.063912704598597 C 2.5762081784386615 8.056638087815017 2.5780669144981414 8.045726162639646 2.5817843866171004 8.031176929072487 C 2.58550185873606 8.016627695505326 2.5873605947955394 8.005715770329957 2.5873605947955394 7.998441153546375 L 9 2.826188620420888 L 15.41263940520446 7.998441153546375 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 20 75 )" class="stroke" mask="url(#u13511_img_cl15)" />
- <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)" />
- </g>
- </svg>
- <div id="u13511_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13512" class="ax_default box_2 transition">
- <div id="u13512_div" class=""></div>
- <div id="u13512_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table) -->
- <div id="u13513" class="ax_default">
- <!-- Unnamed (Table cell) -->
- <div id="u13514" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13514.svg" id="u13514_img" class="img generatedImage" viewbox="0 0 114 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13514_text" class="text ">
- <p><span>人员角色</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13515" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13515.svg" id="u13515_img" class="img generatedImage" viewbox="114 0 112 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13515_text" class="text ">
- <p><span>人员编号</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13516" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13516.svg" id="u13516_img" class="img generatedImage" viewbox="226 0 117 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13516_text" class="text ">
- <p><span>姓名</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13517" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13517.svg" id="u13517_img" class="img generatedImage" viewbox="343 0 81 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13517_text" class="text ">
- <p><span>性别</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13518" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13518.svg" id="u13518_img" class="img generatedImage" viewbox="425 0 113 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13518_text" class="text ">
- <p><span>手机号码</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13519" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13519.svg" id="u13519_img" class="img generatedImage" viewbox="537 0 112 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13519_text" class="text ">
- <p><span>证件类型</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13520" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13520.svg" id="u13520_img" class="img generatedImage" viewbox="650 0 111 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13520_text" class="text ">
- <p><span>证件号码</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13521" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13521.svg" id="u13521_img" class="img generatedImage" viewbox="761 0 112 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13521_text" class="text ">
- <p><span>人员标签</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13522" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13522.svg" id="u13522_img" class="img generatedImage" viewbox="873 0 134 35">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13522_text" class="text ">
- <p><span>操作</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13523" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13523.svg" id="u13523_img" class="img generatedImage" viewbox="0 35 114 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13523_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13524" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13524.svg" id="u13524_img" class="img generatedImage" viewbox="114 35 112 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13524_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13525" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13525.svg" id="u13525_img" class="img generatedImage" viewbox="226 35 117 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13525_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13526" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13526.svg" id="u13526_img" class="img generatedImage" viewbox="343 35 81 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13526_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13527" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13527.svg" id="u13527_img" class="img generatedImage" viewbox="425 35 113 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13527_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13528" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13528.svg" id="u13528_img" class="img generatedImage" viewbox="537 35 112 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13528_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13529" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13529.svg" id="u13529_img" class="img generatedImage" viewbox="650 35 111 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13529_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13530" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13530.svg" id="u13530_img" class="img generatedImage" viewbox="761 35 112 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13530_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13531" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13531.svg" id="u13531_img" class="img generatedImage" viewbox="873 35 134 44">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13531_text" class="text ">
- <p><span>授权 设置</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13532" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13532.svg" id="u13532_img" class="img generatedImage" viewbox="0 79 114 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13532_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13533" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13533.svg" id="u13533_img" class="img generatedImage" viewbox="114 79 112 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13533_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13534" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13534.svg" id="u13534_img" class="img generatedImage" viewbox="226 79 117 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13534_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13535" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13535.svg" id="u13535_img" class="img generatedImage" viewbox="343 79 81 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13535_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13536" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13536.svg" id="u13536_img" class="img generatedImage" viewbox="425 79 113 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13536_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13537" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13537.svg" id="u13537_img" class="img generatedImage" viewbox="537 79 112 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13537_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13538" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13538.svg" id="u13538_img" class="img generatedImage" viewbox="650 79 111 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13538_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13539" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13539.svg" id="u13539_img" class="img generatedImage" viewbox="761 79 112 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13539_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13540" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13540.svg" id="u13540_img" class="img generatedImage" viewbox="873 79 134 44">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13540_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13541" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13541.svg" id="u13541_img" class="img generatedImage" viewbox="0 123 114 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13541_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13542" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13542.svg" id="u13542_img" class="img generatedImage" viewbox="114 123 112 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13542_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13543" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13543.svg" id="u13543_img" class="img generatedImage" viewbox="226 123 117 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13543_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13544" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13544.svg" id="u13544_img" class="img generatedImage" viewbox="343 123 81 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13544_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13545" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13545.svg" id="u13545_img" class="img generatedImage" viewbox="425 123 113 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13545_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13546" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13546.svg" id="u13546_img" class="img generatedImage" viewbox="537 123 112 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13546_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13547" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13547.svg" id="u13547_img" class="img generatedImage" viewbox="650 123 111 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13547_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13548" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13548.svg" id="u13548_img" class="img generatedImage" viewbox="761 123 112 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13548_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13549" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13549.svg" id="u13549_img" class="img generatedImage" viewbox="873 123 134 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13549_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13550" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13550.svg" id="u13550_img" class="img generatedImage" viewbox="0 161 114 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13550_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13551" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13551.svg" id="u13551_img" class="img generatedImage" viewbox="114 161 112 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13551_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13552" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13552.svg" id="u13552_img" class="img generatedImage" viewbox="226 161 117 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13552_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13553" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13553.svg" id="u13553_img" class="img generatedImage" viewbox="343 161 81 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13553_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13554" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13554.svg" id="u13554_img" class="img generatedImage" viewbox="425 161 113 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13554_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13555" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13555.svg" id="u13555_img" class="img generatedImage" viewbox="537 161 112 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13555_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13556" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13556.svg" id="u13556_img" class="img generatedImage" viewbox="650 161 111 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13556_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13557" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13557.svg" id="u13557_img" class="img generatedImage" viewbox="761 161 112 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13557_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13558" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13558.svg" id="u13558_img" class="img generatedImage" viewbox="873 161 134 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13558_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13559" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13559.svg" id="u13559_img" class="img generatedImage" viewbox="0 199 114 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13559_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13560" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13560.svg" id="u13560_img" class="img generatedImage" viewbox="114 199 112 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13560_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13561" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13561.svg" id="u13561_img" class="img generatedImage" viewbox="226 199 117 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13561_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13562" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13562.svg" id="u13562_img" class="img generatedImage" viewbox="343 199 81 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13562_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13563" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13563.svg" id="u13563_img" class="img generatedImage" viewbox="425 199 113 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13563_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13564" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13564.svg" id="u13564_img" class="img generatedImage" viewbox="537 199 112 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13564_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13565" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13565.svg" id="u13565_img" class="img generatedImage" viewbox="650 199 111 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13565_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13566" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13566.svg" id="u13566_img" class="img generatedImage" viewbox="761 199 112 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13566_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13567" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13567.svg" id="u13567_img" class="img generatedImage" viewbox="873 199 134 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13567_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13568" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13568.svg" id="u13568_img" class="img generatedImage" viewbox="0 237 114 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13568_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13569" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13569.svg" id="u13569_img" class="img generatedImage" viewbox="114 237 112 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13569_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13570" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13570.svg" id="u13570_img" class="img generatedImage" viewbox="226 237 117 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13570_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13571" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13571.svg" id="u13571_img" class="img generatedImage" viewbox="343 237 81 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13571_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13572" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13572.svg" id="u13572_img" class="img generatedImage" viewbox="425 237 113 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13572_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13573" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13573.svg" id="u13573_img" class="img generatedImage" viewbox="537 237 112 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13573_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13574" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13574.svg" id="u13574_img" class="img generatedImage" viewbox="650 237 111 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13574_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13575" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13575.svg" id="u13575_img" class="img generatedImage" viewbox="761 237 112 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13575_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13576" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13576.svg" id="u13576_img" class="img generatedImage" viewbox="873 237 134 38">
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13576_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13577" class="ax_default paragraph transition">
- <div id="u13577_div" class=""></div>
- <div id="u13577_text" class="text ">
- <p><span>物业员工</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13578" class="ax_default" data-left="563" data-top="239" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13579" class="ax_default box_1 transition">
- <div id="u13579_div" class=""></div>
- <div id="u13579_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u13580" class="ax_default droplist transition">
- <div id="u13580_div" class=""></div>
- <select id="u13580_input" class="u13580_input">
- <option class="u13580_input_option" value="证件类型">证件类型</option>
- <option class="u13580_input_option" value="身份证">身份证</option>
- <option class="u13580_input_option" value="营业执照">营业执照</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13581" class="ax_default" data-left="350" data-top="150" data-width="133" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13582" class="ax_default paragraph transition">
- <div id="u13582_div" class=""></div>
- <div id="u13582_text" class="text ">
- <p><span>西安保利天汇</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u13583" class="ax_default icon1 transition">
- <svg data="images/房屋住户/u13072.svg" id="u13583_img" class="img generatedImage">
- <defs>
- <pattern id="u13583_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13583_img_cl978">
- <path d="M 11.77734375 0.23090277777777812 C 11.92578125 0.38483796296296224 12 0.5671296296296279 12 0.7777777777777781 C 12 0.9884259259259253 11.92578125 1.1707175925925917 11.77734375 1.3246527777777781 L 6.52734375 6.769097222222221 C 6.37890625 6.923032407407408 6.203125 7 6 7 C 5.796875000000001 7 5.621093750000001 6.923032407407408 5.47265625 6.769097222222221 L 0.22265625 1.3246527777777781 C 0.07421875 1.1707175925925917 0 0.9884259259259253 0 0.7777777777777781 C 0 0.5671296296296279 0.07421875 0.38483796296296224 0.22265625 0.23090277777777812 C 0.37109375 0.07696759259259167 0.546875 0 0.75 0 L 11.25 0 C 11.453125 0 11.62890625 0.07696759259259167 11.77734375 0.23090277777777812 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -471 -171 )">
- <path d="M 11.77734375 0.23090277777777812 C 11.92578125 0.38483796296296224 12 0.5671296296296279 12 0.7777777777777781 C 12 0.9884259259259253 11.92578125 1.1707175925925917 11.77734375 1.3246527777777781 L 6.52734375 6.769097222222221 C 6.37890625 6.923032407407408 6.203125 7 6 7 C 5.796875000000001 7 5.621093750000001 6.923032407407408 5.47265625 6.769097222222221 L 0.22265625 1.3246527777777781 C 0.07421875 1.1707175925925917 0 0.9884259259259253 0 0.7777777777777781 C 0 0.5671296296296279 0.07421875 0.38483796296296224 0.22265625 0.23090277777777812 C 0.37109375 0.07696759259259167 0.546875 0 0.75 0 L 11.25 0 C 11.453125 0 11.62890625 0.07696759259259167 11.77734375 0.23090277777777812 Z " fill-rule="nonzero" fill="rgba(0, 0, 0, 1)" stroke="none" transform="matrix(1 0 0 1 471 171 )" class="fill" />
- <path d="M 11.77734375 0.23090277777777812 C 11.92578125 0.38483796296296224 12 0.5671296296296279 12 0.7777777777777781 C 12 0.9884259259259253 11.92578125 1.1707175925925917 11.77734375 1.3246527777777781 L 6.52734375 6.769097222222221 C 6.37890625 6.923032407407408 6.203125 7 6 7 C 5.796875000000001 7 5.621093750000001 6.923032407407408 5.47265625 6.769097222222221 L 0.22265625 1.3246527777777781 C 0.07421875 1.1707175925925917 0 0.9884259259259253 0 0.7777777777777781 C 0 0.5671296296296279 0.07421875 0.38483796296296224 0.22265625 0.23090277777777812 C 0.37109375 0.07696759259259167 0.546875 0 0.75 0 L 11.25 0 C 11.453125 0 11.62890625 0.07696759259259167 11.77734375 0.23090277777777812 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 471 171 )" class="stroke" mask="url(#u13583_img_cl978)" />
- </g>
- </svg>
- <div id="u13583_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13584" class="ax_default paragraph transition">
- <div id="u13584_div" class=""></div>
- <div id="u13584_text" class="text ">
- <p><span>工作人员</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13585" class="ax_default box_1 transition">
- <div id="u13585_div" class=""></div>
- <div id="u13585_text" class="text ">
- <p><span>新增</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13586" class="ax_default paragraph transition">
- <div id="u13586_div" class=""></div>
- <div id="u13586_text" class="text ">
- <p><span>工作人员</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13587" class="ax_default paragraph transition">
- <div id="u13587_div" class=""></div>
- <div id="u13587_text" class="text ">
- <p><span>楼栋管家</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13588" class="ax_default box_1 transition">
- <div id="u13588_div" class=""></div>
- <div id="u13588_text" class="text ">
- <p><span>设置</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13589" class="ax_default paragraph transition">
- <div id="u13589_div" class=""></div>
- <div id="u13589_text" class="text ">
- <p><span>楼栋工程师</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13590" class="ax_default box_2 transition">
- <div id="u13590_div" class=""></div>
- <div id="u13590_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table) -->
- <div id="u13591" class="ax_default">
- <!-- Unnamed (Table cell) -->
- <div id="u13592" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13592.svg" id="u13592_img" class="img generatedImage" viewbox="0 0 138 32">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13592_text" class="text ">
- <p><span>楼栋</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13593" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13593.svg" id="u13593_img" class="img generatedImage" viewbox="138 0 143 32">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13593_text" class="text ">
- <p><span>人员</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13594" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13594.svg" id="u13594_img" class="img generatedImage" viewbox="281 0 151 32">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13594_text" class="text ">
- <p><span>联系电话</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13595" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13595.svg" id="u13595_img" class="img generatedImage" viewbox="432 0 144 32">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13595_text" class="text ">
- <p><span>楼栋</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13596" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13596.svg" id="u13596_img" class="img generatedImage" viewbox="576 0 144 32">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13596_text" class="text ">
- <p><span>微信号</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13597" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13597.svg" id="u13597_img" class="img generatedImage" viewbox="720 0 144 32">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13597_text" class="text ">
- <p><span>微信二维码</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13598" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13598.svg" id="u13598_img" class="img generatedImage" viewbox="864 0 141 32">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13598_text" class="text ">
- <p><span>操作</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13599" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13599.svg" id="u13599_img" class="img generatedImage" viewbox="0 32 138 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13599_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13600" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13600.svg" id="u13600_img" class="img generatedImage" viewbox="138 32 143 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13600_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13601" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13601.svg" id="u13601_img" class="img generatedImage" viewbox="281 32 151 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13601_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13602" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13602.svg" id="u13602_img" class="img generatedImage" viewbox="432 32 144 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13602_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13603" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13603.svg" id="u13603_img" class="img generatedImage" viewbox="576 32 144 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13603_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13604" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13604.svg" id="u13604_img" class="img generatedImage" viewbox="720 32 144 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13604_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13605" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13605.svg" id="u13605_img" class="img generatedImage" viewbox="864 32 141 44">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13605_text" class="text ">
- <p><span>移除</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13606" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13606.svg" id="u13606_img" class="img generatedImage" viewbox="0 76 138 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13606_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13607" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13607.svg" id="u13607_img" class="img generatedImage" viewbox="138 76 143 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13607_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13608" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13608.svg" id="u13608_img" class="img generatedImage" viewbox="281 76 151 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13608_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13609" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13609.svg" id="u13609_img" class="img generatedImage" viewbox="432 76 144 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13609_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13610" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13610.svg" id="u13610_img" class="img generatedImage" viewbox="576 76 144 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13610_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13611" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13611.svg" id="u13611_img" class="img generatedImage" viewbox="720 76 144 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13611_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13612" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13612.svg" id="u13612_img" class="img generatedImage" viewbox="864 76 141 44">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13612_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13613" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13613.svg" id="u13613_img" class="img generatedImage" viewbox="0 120 138 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13613_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13614" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13614.svg" id="u13614_img" class="img generatedImage" viewbox="138 120 143 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13614_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13615" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13615.svg" id="u13615_img" class="img generatedImage" viewbox="281 120 151 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13615_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13616" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13616.svg" id="u13616_img" class="img generatedImage" viewbox="432 120 144 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13616_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13617" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13617.svg" id="u13617_img" class="img generatedImage" viewbox="576 120 144 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13617_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13618" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13618.svg" id="u13618_img" class="img generatedImage" viewbox="720 120 144 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13618_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13619" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13619.svg" id="u13619_img" class="img generatedImage" viewbox="864 120 141 44">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13619_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13620" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13620.svg" id="u13620_img" class="img generatedImage" viewbox="0 164 138 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13620_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13621" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13621.svg" id="u13621_img" class="img generatedImage" viewbox="138 164 143 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13621_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13622" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13622.svg" id="u13622_img" class="img generatedImage" viewbox="281 164 151 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13622_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13623" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13623.svg" id="u13623_img" class="img generatedImage" viewbox="432 164 144 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13623_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13624" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13624.svg" id="u13624_img" class="img generatedImage" viewbox="576 164 144 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13624_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13625" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13625.svg" id="u13625_img" class="img generatedImage" viewbox="720 164 144 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13625_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13626" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13626.svg" id="u13626_img" class="img generatedImage" viewbox="864 164 141 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13626_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13627" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13627.svg" id="u13627_img" class="img generatedImage" viewbox="0 202 138 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13627_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13628" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13628.svg" id="u13628_img" class="img generatedImage" viewbox="138 202 143 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13628_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13629" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13629.svg" id="u13629_img" class="img generatedImage" viewbox="281 202 151 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13629_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13630" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13630.svg" id="u13630_img" class="img generatedImage" viewbox="432 202 144 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13630_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13631" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13631.svg" id="u13631_img" class="img generatedImage" viewbox="576 202 144 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13631_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13632" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13632.svg" id="u13632_img" class="img generatedImage" viewbox="720 202 144 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13632_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13633" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13633.svg" id="u13633_img" class="img generatedImage" viewbox="864 202 141 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13633_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13634" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13634.svg" id="u13634_img" class="img generatedImage" viewbox="0 240 138 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13634_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13635" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13635.svg" id="u13635_img" class="img generatedImage" viewbox="138 240 143 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13635_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13636" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13636.svg" id="u13636_img" class="img generatedImage" viewbox="281 240 151 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13636_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13637" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13637.svg" id="u13637_img" class="img generatedImage" viewbox="432 240 144 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13637_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13638" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13638.svg" id="u13638_img" class="img generatedImage" viewbox="576 240 144 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13638_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13639" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13639.svg" id="u13639_img" class="img generatedImage" viewbox="720 240 144 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13639_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13640" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13640.svg" id="u13640_img" class="img generatedImage" viewbox="864 240 141 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13640_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13641" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13641.svg" id="u13641_img" class="img generatedImage" viewbox="0 278 138 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13641_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13642" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13642.svg" id="u13642_img" class="img generatedImage" viewbox="138 278 143 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13642_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13643" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13643.svg" id="u13643_img" class="img generatedImage" viewbox="281 278 151 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13643_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13644" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13644.svg" id="u13644_img" class="img generatedImage" viewbox="432 278 144 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13644_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13645" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13645.svg" id="u13645_img" class="img generatedImage" viewbox="576 278 144 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13645_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13646" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13646.svg" id="u13646_img" class="img generatedImage" viewbox="720 278 144 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13646_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13647" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13647.svg" id="u13647_img" class="img generatedImage" viewbox="864 278 141 38">
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13647_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13648" class="ax_default paragraph transition">
- <div id="u13648_div" class=""></div>
- <div id="u13648_text" class="text ">
- <p><span>房源人员</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13649" class="ax_default box_1 transition">
- <div id="u13649_div" class=""></div>
- <div id="u13649_text" class="text ">
- <p><span>搜索</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13650" class="ax_default box_1 transition">
- <div id="u13650_div" class=""></div>
- <div id="u13650_text" class="text ">
- <p><span>重置</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13651" class="ax_default" data-left="3558" data-top="191" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13652" class="ax_default box_1 transition">
- <div id="u13652_div" class=""></div>
- <div id="u13652_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u13653" class="ax_default droplist transition">
- <div id="u13653_div" class=""></div>
- <select id="u13653_input" class="u13653_input">
- <option class="u13653_input_option" value="性别">性别</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13654" class="ax_default" data-left="3408" data-top="191" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13655" class="ax_default shape transition">
- <div id="u13655_div" class=""></div>
- <div id="u13655_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u13656" class="ax_default text_field transition" data-label="选项内容">
- <div id="u13656_div" class=""></div>
- <input id="u13656_input" type="text" value="" class="u13656_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13657" class="ax_default" data-left="3708" data-top="191" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13658" class="ax_default shape transition">
- <div id="u13658_div" class=""></div>
- <div id="u13658_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u13659" class="ax_default text_field transition" data-label="选项内容">
- <div id="u13659_div" class=""></div>
- <input id="u13659_input" type="text" value="" class="u13659_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13660" class="ax_default" data-left="3258" data-top="191" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13661" class="ax_default box_1 transition">
- <div id="u13661_div" class=""></div>
- <div id="u13661_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u13662" class="ax_default droplist transition">
- <div id="u13662_div" class=""></div>
- <select id="u13662_input" class="u13662_input">
- <option class="u13662_input_option" value="楼栋">楼栋</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13663" class="ax_default paragraph transition">
- <div id="u13663_div" class=""></div>
- <div id="u13663_text" class="text ">
- <p><span>物业人员</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13664" class="ax_default paragraph transition">
- <div id="u13664_div" class=""></div>
- <div id="u13664_text" class="text ">
- <p><span>临时登记</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13665" class="ax_default paragraph ax_default_hidden transition" style="display:none; visibility: hidden">
- <div id="u13665_div" class=""></div>
- <div id="u13665_text" class="text ">
- <p><span>特殊人员</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13666" class="ax_default" data-left="3045" data-top="150" data-width="133" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13667" class="ax_default paragraph transition">
- <div id="u13667_div" class=""></div>
- <div id="u13667_text" class="text ">
- <p><span>西安保利天汇</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u13668" class="ax_default icon1 transition">
- <svg data="images/房屋住户/u13072.svg" id="u13668_img" class="img generatedImage">
- <defs>
- <pattern id="u13668_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13668_img_cl978">
- <path d="M 11.77734375 0.23090277777777812 C 11.92578125 0.38483796296296224 12 0.5671296296296279 12 0.7777777777777781 C 12 0.9884259259259253 11.92578125 1.1707175925925917 11.77734375 1.3246527777777781 L 6.52734375 6.769097222222221 C 6.37890625 6.923032407407408 6.203125 7 6 7 C 5.796875000000001 7 5.621093750000001 6.923032407407408 5.47265625 6.769097222222221 L 0.22265625 1.3246527777777781 C 0.07421875 1.1707175925925917 0 0.9884259259259253 0 0.7777777777777781 C 0 0.5671296296296279 0.07421875 0.38483796296296224 0.22265625 0.23090277777777812 C 0.37109375 0.07696759259259167 0.546875 0 0.75 0 L 11.25 0 C 11.453125 0 11.62890625 0.07696759259259167 11.77734375 0.23090277777777812 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -471 -171 )">
- <path d="M 11.77734375 0.23090277777777812 C 11.92578125 0.38483796296296224 12 0.5671296296296279 12 0.7777777777777781 C 12 0.9884259259259253 11.92578125 1.1707175925925917 11.77734375 1.3246527777777781 L 6.52734375 6.769097222222221 C 6.37890625 6.923032407407408 6.203125 7 6 7 C 5.796875000000001 7 5.621093750000001 6.923032407407408 5.47265625 6.769097222222221 L 0.22265625 1.3246527777777781 C 0.07421875 1.1707175925925917 0 0.9884259259259253 0 0.7777777777777781 C 0 0.5671296296296279 0.07421875 0.38483796296296224 0.22265625 0.23090277777777812 C 0.37109375 0.07696759259259167 0.546875 0 0.75 0 L 11.25 0 C 11.453125 0 11.62890625 0.07696759259259167 11.77734375 0.23090277777777812 Z " fill-rule="nonzero" fill="rgba(0, 0, 0, 1)" stroke="none" transform="matrix(1 0 0 1 471 171 )" class="fill" />
- <path d="M 11.77734375 0.23090277777777812 C 11.92578125 0.38483796296296224 12 0.5671296296296279 12 0.7777777777777781 C 12 0.9884259259259253 11.92578125 1.1707175925925917 11.77734375 1.3246527777777781 L 6.52734375 6.769097222222221 C 6.37890625 6.923032407407408 6.203125 7 6 7 C 5.796875000000001 7 5.621093750000001 6.923032407407408 5.47265625 6.769097222222221 L 0.22265625 1.3246527777777781 C 0.07421875 1.1707175925925917 0 0.9884259259259253 0 0.7777777777777781 C 0 0.5671296296296279 0.07421875 0.38483796296296224 0.22265625 0.23090277777777812 C 0.37109375 0.07696759259259167 0.546875 0 0.75 0 L 11.25 0 C 11.453125 0 11.62890625 0.07696759259259167 11.77734375 0.23090277777777812 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 471 171 )" class="stroke" mask="url(#u13668_img_cl978)" />
- </g>
- </svg>
- <div id="u13668_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13669" class="ax_default paragraph transition">
- <div id="u13669_div" class=""></div>
- <div id="u13669_text" class="text ">
- <p><span>楼栋管家</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13670" class="ax_default paragraph transition">
- <div id="u13670_div" class=""></div>
- <div id="u13670_text" class="text ">
- <p><span>工作人员</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13671" class="ax_default paragraph transition">
- <div id="u13671_div" class=""></div>
- <div id="u13671_text" class="text ">
- <p><span>楼栋管家</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13672" class="ax_default box_1 transition">
- <div id="u13672_div" class=""></div>
- <div id="u13672_text" class="text ">
- <p><span>设置</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13673" class="ax_default paragraph transition">
- <div id="u13673_div" class=""></div>
- <div id="u13673_text" class="text ">
- <p><span>楼栋工程师</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13674" class="ax_default box_2 transition">
- <div id="u13674_div" class=""></div>
- <div id="u13674_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table) -->
- <div id="u13675" class="ax_default">
- <!-- Unnamed (Table cell) -->
- <div id="u13676" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13676.svg" id="u13676_img" class="img generatedImage" viewbox="0 0 138 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13676_text" class="text ">
- <p><span>楼栋</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13677" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13677.svg" id="u13677_img" class="img generatedImage" viewbox="138 0 142 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13677_text" class="text ">
- <p><span>人员</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13678" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13678.svg" id="u13678_img" class="img generatedImage" viewbox="280 0 150 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13678_text" class="text ">
- <p><span>联系电话</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13679" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13679.svg" id="u13679_img" class="img generatedImage" viewbox="430 0 144 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13679_text" class="text ">
- <p><span>楼栋</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13680" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13680.svg" id="u13680_img" class="img generatedImage" viewbox="574 0 144 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13680_text" class="text ">
- <p><span>微信号</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13681" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13681.svg" id="u13681_img" class="img generatedImage" viewbox="718 0 144 35">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13681_text" class="text ">
- <p><span>微信二维码</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13682" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13682.svg" id="u13682_img" class="img generatedImage" viewbox="862 0 143 35">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13682_text" class="text ">
- <p><span>操作</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13683" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13683.svg" id="u13683_img" class="img generatedImage" viewbox="0 35 138 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13683_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13684" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13684.svg" id="u13684_img" class="img generatedImage" viewbox="138 35 142 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13684_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13685" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13685.svg" id="u13685_img" class="img generatedImage" viewbox="280 35 150 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13685_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13686" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13686.svg" id="u13686_img" class="img generatedImage" viewbox="430 35 144 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13686_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13687" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13687.svg" id="u13687_img" class="img generatedImage" viewbox="574 35 144 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13687_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13688" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13688.svg" id="u13688_img" class="img generatedImage" viewbox="718 35 144 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13688_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13689" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13689.svg" id="u13689_img" class="img generatedImage" viewbox="862 35 143 44">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13689_text" class="text ">
- <p><span>移动</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13690" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13690.svg" id="u13690_img" class="img generatedImage" viewbox="0 79 138 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13690_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13691" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13691.svg" id="u13691_img" class="img generatedImage" viewbox="138 79 142 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13691_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13692" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13692.svg" id="u13692_img" class="img generatedImage" viewbox="280 79 150 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13692_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13693" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13693.svg" id="u13693_img" class="img generatedImage" viewbox="430 79 144 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13693_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13694" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13694.svg" id="u13694_img" class="img generatedImage" viewbox="574 79 144 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13694_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13695" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13695.svg" id="u13695_img" class="img generatedImage" viewbox="718 79 144 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13695_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13696" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13696.svg" id="u13696_img" class="img generatedImage" viewbox="862 79 143 44">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13696_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13697" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13697.svg" id="u13697_img" class="img generatedImage" viewbox="0 123 138 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13697_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13698" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13698.svg" id="u13698_img" class="img generatedImage" viewbox="138 123 142 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13698_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13699" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13699.svg" id="u13699_img" class="img generatedImage" viewbox="280 123 150 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13699_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13700" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13700.svg" id="u13700_img" class="img generatedImage" viewbox="430 123 144 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13700_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13701" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13701.svg" id="u13701_img" class="img generatedImage" viewbox="574 123 144 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13701_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13702" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13702.svg" id="u13702_img" class="img generatedImage" viewbox="718 123 144 44">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13702_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13703" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13703.svg" id="u13703_img" class="img generatedImage" viewbox="862 123 143 44">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13703_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13704" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13704.svg" id="u13704_img" class="img generatedImage" viewbox="0 167 138 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13704_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13705" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13705.svg" id="u13705_img" class="img generatedImage" viewbox="138 167 142 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13705_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13706" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13706.svg" id="u13706_img" class="img generatedImage" viewbox="280 167 150 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13706_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13707" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13707.svg" id="u13707_img" class="img generatedImage" viewbox="430 167 144 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13707_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13708" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13708.svg" id="u13708_img" class="img generatedImage" viewbox="574 167 144 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13708_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13709" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13709.svg" id="u13709_img" class="img generatedImage" viewbox="718 167 144 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13709_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13710" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13710.svg" id="u13710_img" class="img generatedImage" viewbox="862 167 143 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13710_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13711" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13711.svg" id="u13711_img" class="img generatedImage" viewbox="0 205 138 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13711_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13712" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13712.svg" id="u13712_img" class="img generatedImage" viewbox="138 205 142 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13712_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13713" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13713.svg" id="u13713_img" class="img generatedImage" viewbox="280 205 150 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13713_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13714" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13714.svg" id="u13714_img" class="img generatedImage" viewbox="430 205 144 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13714_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13715" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13715.svg" id="u13715_img" class="img generatedImage" viewbox="574 205 144 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13715_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13716" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13716.svg" id="u13716_img" class="img generatedImage" viewbox="718 205 144 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13716_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13717" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13717.svg" id="u13717_img" class="img generatedImage" viewbox="862 205 143 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13717_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13718" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13718.svg" id="u13718_img" class="img generatedImage" viewbox="0 243 138 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13718_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13719" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13719.svg" id="u13719_img" class="img generatedImage" viewbox="138 243 142 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13719_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13720" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13720.svg" id="u13720_img" class="img generatedImage" viewbox="280 243 150 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13720_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13721" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13721.svg" id="u13721_img" class="img generatedImage" viewbox="430 243 144 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13721_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13722" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13722.svg" id="u13722_img" class="img generatedImage" viewbox="574 243 144 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13722_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13723" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13723.svg" id="u13723_img" class="img generatedImage" viewbox="718 243 144 38">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13723_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13724" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13724.svg" id="u13724_img" class="img generatedImage" viewbox="862 243 143 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13724_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13725" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13725.svg" id="u13725_img" class="img generatedImage" viewbox="0 281 138 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13725_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13726" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13726.svg" id="u13726_img" class="img generatedImage" viewbox="138 281 142 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13726_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13727" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13727.svg" id="u13727_img" class="img generatedImage" viewbox="280 281 150 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13727_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13728" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13728.svg" id="u13728_img" class="img generatedImage" viewbox="430 281 144 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13728_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13729" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13729.svg" id="u13729_img" class="img generatedImage" viewbox="574 281 144 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13729_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13730" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13730.svg" id="u13730_img" class="img generatedImage" viewbox="718 281 144 38">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13730_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13731" class="ax_default table_cell1 transition">
- <svg data="images/物业员工/u13731.svg" id="u13731_img" class="img generatedImage" viewbox="862 281 143 38">
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13731_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13732" class="ax_default paragraph transition">
- <div id="u13732_div" class=""></div>
- <div id="u13732_text" class="text ">
- <p><span>房源人员</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13733" class="ax_default box_1 transition">
- <div id="u13733_div" class=""></div>
- <div id="u13733_text" class="text ">
- <p><span>搜索</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13734" class="ax_default box_1 transition">
- <div id="u13734_div" class=""></div>
- <div id="u13734_text" class="text ">
- <p><span>重置</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13735" class="ax_default" data-left="4847" data-top="191" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13736" class="ax_default box_1 transition">
- <div id="u13736_div" class=""></div>
- <div id="u13736_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u13737" class="ax_default droplist transition">
- <div id="u13737_div" class=""></div>
- <select id="u13737_input" class="u13737_input">
- <option class="u13737_input_option" value="性别">性别</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13738" class="ax_default" data-left="4697" data-top="191" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13739" class="ax_default shape transition">
- <div id="u13739_div" class=""></div>
- <div id="u13739_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u13740" class="ax_default text_field transition" data-label="选项内容">
- <div id="u13740_div" class=""></div>
- <input id="u13740_input" type="text" value="" class="u13740_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13741" class="ax_default" data-left="4997" data-top="191" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13742" class="ax_default shape transition">
- <div id="u13742_div" class=""></div>
- <div id="u13742_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u13743" class="ax_default text_field transition" data-label="选项内容">
- <div id="u13743_div" class=""></div>
- <input id="u13743_input" type="text" value="" class="u13743_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13744" class="ax_default" data-left="4547" data-top="191" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13745" class="ax_default box_1 transition">
- <div id="u13745_div" class=""></div>
- <div id="u13745_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u13746" class="ax_default droplist transition">
- <div id="u13746_div" class=""></div>
- <select id="u13746_input" class="u13746_input">
- <option class="u13746_input_option" value="楼栋">楼栋</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13747" class="ax_default paragraph transition">
- <div id="u13747_div" class=""></div>
- <div id="u13747_text" class="text ">
- <p><span>物业人员</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13748" class="ax_default paragraph transition">
- <div id="u13748_div" class=""></div>
- <div id="u13748_text" class="text ">
- <p><span>临时登记</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13749" class="ax_default paragraph ax_default_hidden transition" style="display:none; visibility: hidden">
- <div id="u13749_div" class=""></div>
- <div id="u13749_text" class="text ">
- <p><span>特殊人员</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13750" class="ax_default" data-left="4334" data-top="150" data-width="133" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13751" class="ax_default paragraph transition">
- <div id="u13751_div" class=""></div>
- <div id="u13751_text" class="text ">
- <p><span>西安保利天汇</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u13752" class="ax_default icon1 transition">
- <svg data="images/房屋住户/u13072.svg" id="u13752_img" class="img generatedImage">
- <defs>
- <pattern id="u13752_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13752_img_cl978">
- <path d="M 11.77734375 0.23090277777777812 C 11.92578125 0.38483796296296224 12 0.5671296296296279 12 0.7777777777777781 C 12 0.9884259259259253 11.92578125 1.1707175925925917 11.77734375 1.3246527777777781 L 6.52734375 6.769097222222221 C 6.37890625 6.923032407407408 6.203125 7 6 7 C 5.796875000000001 7 5.621093750000001 6.923032407407408 5.47265625 6.769097222222221 L 0.22265625 1.3246527777777781 C 0.07421875 1.1707175925925917 0 0.9884259259259253 0 0.7777777777777781 C 0 0.5671296296296279 0.07421875 0.38483796296296224 0.22265625 0.23090277777777812 C 0.37109375 0.07696759259259167 0.546875 0 0.75 0 L 11.25 0 C 11.453125 0 11.62890625 0.07696759259259167 11.77734375 0.23090277777777812 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -471 -171 )">
- <path d="M 11.77734375 0.23090277777777812 C 11.92578125 0.38483796296296224 12 0.5671296296296279 12 0.7777777777777781 C 12 0.9884259259259253 11.92578125 1.1707175925925917 11.77734375 1.3246527777777781 L 6.52734375 6.769097222222221 C 6.37890625 6.923032407407408 6.203125 7 6 7 C 5.796875000000001 7 5.621093750000001 6.923032407407408 5.47265625 6.769097222222221 L 0.22265625 1.3246527777777781 C 0.07421875 1.1707175925925917 0 0.9884259259259253 0 0.7777777777777781 C 0 0.5671296296296279 0.07421875 0.38483796296296224 0.22265625 0.23090277777777812 C 0.37109375 0.07696759259259167 0.546875 0 0.75 0 L 11.25 0 C 11.453125 0 11.62890625 0.07696759259259167 11.77734375 0.23090277777777812 Z " fill-rule="nonzero" fill="rgba(0, 0, 0, 1)" stroke="none" transform="matrix(1 0 0 1 471 171 )" class="fill" />
- <path d="M 11.77734375 0.23090277777777812 C 11.92578125 0.38483796296296224 12 0.5671296296296279 12 0.7777777777777781 C 12 0.9884259259259253 11.92578125 1.1707175925925917 11.77734375 1.3246527777777781 L 6.52734375 6.769097222222221 C 6.37890625 6.923032407407408 6.203125 7 6 7 C 5.796875000000001 7 5.621093750000001 6.923032407407408 5.47265625 6.769097222222221 L 0.22265625 1.3246527777777781 C 0.07421875 1.1707175925925917 0 0.9884259259259253 0 0.7777777777777781 C 0 0.5671296296296279 0.07421875 0.38483796296296224 0.22265625 0.23090277777777812 C 0.37109375 0.07696759259259167 0.546875 0 0.75 0 L 11.25 0 C 11.453125 0 11.62890625 0.07696759259259167 11.77734375 0.23090277777777812 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 471 171 )" class="stroke" mask="url(#u13752_img_cl978)" />
- </g>
- </svg>
- <div id="u13752_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13753" class="ax_default paragraph transition">
- <div id="u13753_div" class=""></div>
- <div id="u13753_text" class="text ">
- <p><span>楼栋工程师</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13754" class="ax_default paragraph transition">
- <div id="u13754_div" class=""></div>
- <div id="u13754_text" class="text ">
- <p><span>工作人员</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13755" class="ax_default paragraph transition">
- <div id="u13755_div" class=""></div>
- <div id="u13755_text" class="text ">
- <p><span>楼栋工程师</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13756" class="ax_default box_1 transition">
- <div id="u13756_div" class=""></div>
- <div id="u13756_text" class="text ">
- <p><span>设置</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13757" class="ax_default paragraph transition">
- <div id="u13757_div" class=""></div>
- <div id="u13757_text" class="text ">
- <p><span>楼栋管家</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13758" class="ax_default box_1 transition">
- <div id="u13758_div" class=""></div>
- <div id="u13758_text" class="text ">
- <p><span>新增</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13759" class="ax_default box_1 transition">
- <div id="u13759_div" class=""></div>
- <div id="u13759_text" class="text ">
- <p><span>新增</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13760" class="ax_default" data-left="3615" data-top="652" data-width="500" data-height="330" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13761" class="ax_default paragraph transition">
- <div id="u13761_div" class=""></div>
- <div id="u13761_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13762" class="ax_default paragraph transition">
- <div id="u13762_div" class=""></div>
- <div id="u13762_text" class="text ">
- <p><span>新增管家</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13763" class="ax_default" data-left="3615" data-top="922" data-width="500" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13764" class="ax_default paragraph transition">
- <div id="u13764_div" class=""></div>
- <div id="u13764_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u13765" class="ax_default box_1 transition">
- <svg data="images/物业员工/u13765.svg" id="u13765_img" class="img generatedImage">
- <defs>
- <pattern id="u13765_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13765_img_cl996">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -4035 -937 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u13765_text" class="text ">
- <p><span>添加</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13766" class="ax_default box_1 transition">
- <div id="u13766_div" class=""></div>
- <div id="u13766_text" class="text ">
- <p><span>取消</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13767" class="ax_default paragraph transition">
- <div id="u13767_div" class=""></div>
- <div id="u13767_text" class="text ">
- <p><span>x</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13768" class="ax_default paragraph transition">
- <div id="u13768_div" class=""></div>
- <div id="u13768_text" class="text ">
- <p><span>*所在楼栋</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13769" class="ax_default" data-left="3667" data-top="757" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13770" class="ax_default box_1 transition">
- <div id="u13770_div" class=""></div>
- <div id="u13770_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u13771" class="ax_default droplist transition">
- <div id="u13771_div" class=""></div>
- <select id="u13771_input" class="u13771_input">
- <option class="u13771_input_option" value="选择楼栋(可多选)">选择楼栋(可多选)</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13772" class="ax_default paragraph transition">
- <div id="u13772_div" class=""></div>
- <div id="u13772_text" class="text ">
- <p><span>*管家人员</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13773" class="ax_default" data-left="3667" data-top="837" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13774" class="ax_default box_1 transition">
- <div id="u13774_div" class=""></div>
- <div id="u13774_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u13775" class="ax_default droplist transition">
- <div id="u13775_div" class=""></div>
- <select id="u13775_input" class="u13775_input">
- <option class="u13775_input_option" value="请选择工作人员">请选择工作人员</option>
- </select>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13776" class="ax_default" data-left="1458" data-top="385" data-width="80" data-height="100" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13777" class="ax_default box_1 transition">
- <div id="u13777_div" class=""></div>
- <div id="u13777_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13778" class="ax_default box_1 transition">
- <div id="u13778_div" class=""></div>
- <div id="u13778_text" class="text ">
- <p><span>删除</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13779" class="ax_default box_1 transition">
- <div id="u13779_div" class=""></div>
- <div id="u13779_text" class="text ">
- <p><span>编辑</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (客户-人员中心) -->
- <div id="u13780" class="nopointer ax_default">
- <!-- Unnamed (Group) -->
- <div id="u13781" class="ax_default" data-left="120" data-top="50" data-width="201" data-height="1190" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13782" class="ax_default box_2 transition">
- <div id="u13782_div" class=""></div>
- <div id="u13782_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13783" class="ax_default label transition">
- <div id="u13783_div" class=""></div>
- <div id="u13783_text" class="text ">
- <p><span>客户中心</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13784" class="ax_default label transition">
- <div id="u13784_div" class=""></div>
- <div id="u13784_text" class="text ">
- <p><span>入驻企业</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13785" class="ax_default label transition">
- <div id="u13785_div" class=""></div>
- <div id="u13785_text" class="text ">
- <p><span>入驻机构</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13786" class="ax_default label transition">
- <div id="u13786_div" class=""></div>
- <div id="u13786_text" class="text ">
- <p><span>人员登记</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13787" class="ax_default label transition">
- <div id="u13787_div" class=""></div>
- <div id="u13787_text" class="text ">
- <p><span>房屋住户</span></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u13788" class="ax_default line1 transition">
- <svg data="images/项目列表/u4868.svg" id="u13788_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -1 -122 )">
- <path d="M 0 0.5 L 200 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(242, 242, 242, 1)" fill="none" transform="matrix(1 0 0 1 1 122 )" class="stroke" />
- </g>
- </svg>
- <div id="u13788_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13789" class="ax_default label transition">
- <div id="u13789_div" class=""></div>
- <div id="u13789_text" class="text ">
- <p><span>企业员工</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13790" class="ax_default label transition">
- <div id="u13790_div" class=""></div>
- <div id="u13790_text" class="text ">
- <p><span>业主管理</span></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u13791" class="ax_default line1 transition">
- <svg data="images/项目列表/u4868.svg" id="u13791_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -1 -122 )">
- <path d="M 0 0.5 L 200 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(242, 242, 242, 1)" fill="none" transform="matrix(1 0 0 1 1 122 )" class="stroke" />
- </g>
- </svg>
- <div id="u13791_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13792" class="ax_default label transition">
- <div id="u13792_div" class=""></div>
- <div id="u13792_text" class="text ">
- <p><span>房屋业主</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13793" class="ax_default label transition">
- <div id="u13793_div" class=""></div>
- <div id="u13793_text" class="text ">
- <p><span>车位业主</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13794" class="ax_default label transition">
- <div id="u13794_div" class=""></div>
- <div id="u13794_text" class="text ">
- <p><span>认证设置</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13795" class="ax_default label transition">
- <div id="u13795_div" class=""></div>
- <div id="u13795_text" class="text ">
- <p><span>房屋业主认证</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13796" class="ax_default label transition">
- <div id="u13796_div" class=""></div>
- <div id="u13796_text" class="text ">
- <p><span>身份认证</span></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u13797" class="ax_default line1 transition">
- <svg data="images/项目列表/u4868.svg" id="u13797_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -1 -122 )">
- <path d="M 0 0.5 L 200 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(242, 242, 242, 1)" fill="none" transform="matrix(1 0 0 1 1 122 )" class="stroke" />
- </g>
- </svg>
- <div id="u13797_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13798" class="ax_default label transition">
- <div id="u13798_div" class=""></div>
- <div id="u13798_text" class="text ">
- <p><span>房源住户认证</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13799" class="ax_default label transition">
- <div id="u13799_div" class=""></div>
- <div id="u13799_text" class="text ">
- <p><span>入驻企业认证</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13800" class="ax_default label transition">
- <div id="u13800_div" class=""></div>
- <div id="u13800_text" class="text ">
- <p><span>人员档案</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13801" class="ax_default label transition">
- <div id="u13801_div" class=""></div>
- <div id="u13801_text" class="text ">
- <p><span>客户档案</span></p>
- </div>
- </div>
- <!-- Unnamed (Line) -->
- <div id="u13802" class="ax_default line1 transition">
- <svg data="images/项目列表/u4868.svg" id="u13802_img" class="img generatedImage">
- <g transform="matrix(1 0 0 1 -1 -122 )">
- <path d="M 0 0.5 L 200 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(242, 242, 242, 1)" fill="none" transform="matrix(1 0 0 1 1 122 )" class="stroke" />
- </g>
- </svg>
- <div id="u13802_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13803" class="ax_default label transition">
- <div id="u13803_div" class=""></div>
- <div id="u13803_text" class="text ">
- <p><span>机构档案</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13804" class="ax_default label transition">
- <div id="u13804_div" class=""></div>
- <div id="u13804_text" class="text ">
- <p><span>物业人员认证</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13805" class="ax_default label transition">
- <div id="u13805_div" class=""></div>
- <div id="u13805_text" class="text ">
- <p><span>业主委员会</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13806" class="ax_default label transition">
- <div id="u13806_div" class=""></div>
- <div id="u13806_text" class="text ">
- <p><span>车位业主认证</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13807" class="ax_default label transition">
- <div id="u13807_div" class=""></div>
- <div id="u13807_text" class="text ">
- <p><span>物业员工</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13808" class="ax_default label transition">
- <div id="u13808_div" class=""></div>
- <div id="u13808_text" class="text ">
- <p><span>骑手快递员</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13809" class="ax_default label transition">
- <div id="u13809_div" class=""></div>
- <div id="u13809_text" class="text ">
- <p><span>装修工人</span></p>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13810" class="ax_default paragraph transition">
- <div id="u13810_div" class=""></div>
- <div id="u13810_text" class="text ">
- <p><span>此处登记项目物业工作人员,包含物业管理员、保安、保洁等人员信息。人员身份类型、人员默认通行权限,请前往「设置」配置。</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13811" class="ax_default paragraph transition">
- <div id="u13811_div" class=""></div>
- <div id="u13811_text" class="text ">
- <p><span>此处登记项目物业工作人员,包含物业管理员、保安、保洁等人员信息。人员身份类型、人员默认通行权限,请前往「设置」配置。</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13812" class="ax_default paragraph transition">
- <div id="u13812_div" class=""></div>
- <div id="u13812_text" class="text ">
- <p><span>此处登记项目物业工作人员,包含物业管理员、保安、保洁等人员信息。人员身份类型、人员默认通行权限,请前往「设置」配置。</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13813" class="ax_default" data-left="1057" data-top="527" data-width="380" data-height="200" layer-opacity="1">
- <!-- Unnamed (Group) -->
- <div id="u13814" class="ax_default" data-left="1057" data-top="527" data-width="380" data-height="200" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13815" class="ax_default shape transition">
- <div id="u13815_div" class=""></div>
- <div id="u13815_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13816" class="ax_default paragraph transition">
- <div id="u13816_div" class=""></div>
- <div id="u13816_text" class="text ">
- <p><span>确定移除该工作人员?</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13817" class="ax_default shape transition">
- <div id="u13817_div" class=""></div>
- <div id="u13817_text" class="text ">
- <p><span>确定</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u13818" class="ax_default icon transition">
- <svg data="images/项目列表/u4798.svg" id="u13818_img" class="img generatedImage">
- <defs>
- <pattern id="u13818_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13818_img_cl398">
- <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -1661 -842 )">
- <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="nonzero" fill="rgba(245, 154, 35, 1)" stroke="none" transform="matrix(1 0 0 1 1661 842 )" class="fill" />
- <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u13818_img_cl398)" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u13818_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13819" class="ax_default paragraph transition">
- <div id="u13819_div" class=""></div>
- <div id="u13819_text" class="text ">
- <p><span>移除之后,人员将从项目中移除,同步移除项目中的管家/工程师。人员历史数据可前往「人员档案」查询。</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13820" class="ax_default shape transition">
- <div id="u13820_div" class=""></div>
- <div id="u13820_text" class="text ">
- <p><span>取 消</span></p>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13821" class="ax_default" data-left="0" data-top="0" data-width="0" data-height="0" layer-opacity="1">
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13822" class="ax_default" data-left="3853" data-top="449" data-width="380" data-height="140" layer-opacity="1">
- <!-- Unnamed (Group) -->
- <div id="u13823" class="ax_default" data-left="3853" data-top="449" data-width="380" data-height="140" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13824" class="ax_default shape transition">
- <div id="u13824_div" class=""></div>
- <div id="u13824_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13825" class="ax_default paragraph transition">
- <div id="u13825_div" class=""></div>
- <div id="u13825_text" class="text ">
- <p><span>确定移除?</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13826" class="ax_default shape transition">
- <div id="u13826_div" class=""></div>
- <div id="u13826_text" class="text ">
- <p><span>确定</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u13827" class="ax_default icon transition">
- <svg data="images/项目列表/u4798.svg" id="u13827_img" class="img generatedImage">
- <defs>
- <pattern id="u13827_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13827_img_cl398">
- <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -1661 -842 )">
- <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="nonzero" fill="rgba(245, 154, 35, 1)" stroke="none" transform="matrix(1 0 0 1 1661 842 )" class="fill" />
- <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u13827_img_cl398)" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u13827_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13828" class="ax_default shape transition">
- <div id="u13828_div" class=""></div>
- <div id="u13828_text" class="text ">
- <p><span>取 消</span></p>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13829" class="ax_default" data-left="5167" data-top="440" data-width="380" data-height="140" layer-opacity="1">
- <!-- Unnamed (Group) -->
- <div id="u13830" class="ax_default" data-left="5167" data-top="440" data-width="380" data-height="140" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13831" class="ax_default shape transition">
- <div id="u13831_div" class=""></div>
- <div id="u13831_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13832" class="ax_default paragraph transition">
- <div id="u13832_div" class=""></div>
- <div id="u13832_text" class="text ">
- <p><span>确定移除?</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13833" class="ax_default shape transition">
- <div id="u13833_div" class=""></div>
- <div id="u13833_text" class="text ">
- <p><span>确定</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u13834" class="ax_default icon transition">
- <svg data="images/项目列表/u4798.svg" id="u13834_img" class="img generatedImage">
- <defs>
- <pattern id="u13834_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13834_img_cl398">
- <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -1661 -842 )">
- <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="nonzero" fill="rgba(245, 154, 35, 1)" stroke="none" transform="matrix(1 0 0 1 1661 842 )" class="fill" />
- <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u13834_img_cl398)" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u13834_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13835" class="ax_default shape transition">
- <div id="u13835_div" class=""></div>
- <div id="u13835_text" class="text ">
- <p><span>取 消</span></p>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13836" class="ax_default paragraph transition">
- <div id="u13836_div" class=""></div>
- <div id="u13836_text" class="text ">
- <p><span>1、添加楼栋工程师时,直接从工作人员列表中选择;</span></p><p><span>2、1个管家可添加到多个楼栋,1个楼栋可添加多个管家;</span></p><p><span>3、若选择多个楼栋、多个工作人员之后,则默认每个楼栋都有相同的多个管家;</span></p><p><span>4、添加之后,楼栋管家列表楼栋+人员显示,1个楼栋多个管家显示多条记录。</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13837" class="ax_default" data-left="4695" data-top="618" data-width="500" data-height="330" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13838" class="ax_default paragraph transition">
- <div id="u13838_div" class=""></div>
- <div id="u13838_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13839" class="ax_default paragraph transition">
- <div id="u13839_div" class=""></div>
- <div id="u13839_text" class="text ">
- <p><span>新增管家</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13840" class="ax_default" data-left="4695" data-top="888" data-width="500" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13841" class="ax_default paragraph transition">
- <div id="u13841_div" class=""></div>
- <div id="u13841_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u13842" class="ax_default box_1 transition">
- <svg data="images/物业员工/u13765.svg" id="u13842_img" class="img generatedImage">
- <defs>
- <pattern id="u13842_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13842_img_cl996">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -4035 -937 )">
- <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" />
- <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)" />
- </g>
- </svg>
- <div id="u13842_text" class="text ">
- <p><span>添加</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13843" class="ax_default box_1 transition">
- <div id="u13843_div" class=""></div>
- <div id="u13843_text" class="text ">
- <p><span>取消</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13844" class="ax_default paragraph transition">
- <div id="u13844_div" class=""></div>
- <div id="u13844_text" class="text ">
- <p><span>x</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13845" class="ax_default paragraph transition">
- <div id="u13845_div" class=""></div>
- <div id="u13845_text" class="text ">
- <p><span>*所在楼栋</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13846" class="ax_default" data-left="4747" data-top="723" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13847" class="ax_default box_1 transition">
- <div id="u13847_div" class=""></div>
- <div id="u13847_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u13848" class="ax_default droplist transition">
- <div id="u13848_div" class=""></div>
- <select id="u13848_input" class="u13848_input">
- <option class="u13848_input_option" value="选择楼栋(可多选)">选择楼栋(可多选)</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13849" class="ax_default paragraph transition">
- <div id="u13849_div" class=""></div>
- <div id="u13849_text" class="text ">
- <p><span>*工程师人员</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13850" class="ax_default" data-left="4747" data-top="803" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13851" class="ax_default box_1 transition">
- <div id="u13851_div" class=""></div>
- <div id="u13851_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u13852" class="ax_default droplist transition">
- <div id="u13852_div" class=""></div>
- <select id="u13852_input" class="u13852_input">
- <option class="u13852_input_option" value="请选择工作人员">请选择工作人员</option>
- </select>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13853" class="ax_default paragraph transition">
- <div id="u13853_div" class=""></div>
- <div id="u13853_text" class="text ">
- <p><span>1、添加楼栋工程师时,直接从工作人员列表中选择;</span></p><p><span>2、1个工程师可添加到多个楼栋,1个楼栋可添加多个工程师;</span></p><p><span>3、若选择多个楼栋、多个工作人员之后,则默认每个楼栋都有相同的多个工程师;</span></p><p><span>4、添加之后,楼栋工程师列表楼栋+人员显示,1个楼栋多个工程师显示多条记录。</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13854" class="ax_default box_1 transition">
- <div id="u13854_div" class=""></div>
- <div id="u13854_text" class="text ">
- <p><span style="text-decoration:underline ;">已认证微信用户</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13855" class="ax_default" data-left="1311" data-top="199" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13856" class="ax_default box_1 transition">
- <div id="u13856_div" class=""></div>
- <div id="u13856_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u13857" class="ax_default droplist transition">
- <div id="u13857_div" class=""></div>
- <select id="u13857_input" class="u13857_input">
- <option class="u13857_input_option" value="性别">性别</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13858" class="ax_default" data-left="1013" data-top="199" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13859" class="ax_default shape transition">
- <div id="u13859_div" class=""></div>
- <div id="u13859_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u13860" class="ax_default text_field transition" data-label="选项内容">
- <div id="u13860_div" class=""></div>
- <input id="u13860_input" type="text" value="" class="u13860_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13861" class="ax_default" data-left="1163" data-top="199" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13862" class="ax_default shape transition">
- <div id="u13862_div" class=""></div>
- <div id="u13862_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u13863" class="ax_default text_field transition" data-label="选项内容">
- <div id="u13863_div" class=""></div>
- <input id="u13863_input" type="text" value="" class="u13863_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13864" class="ax_default" data-left="713" data-top="199" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13865" class="ax_default box_1 transition">
- <div id="u13865_div" class=""></div>
- <div id="u13865_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u13866" class="ax_default droplist transition">
- <div id="u13866_div" class=""></div>
- <select id="u13866_input" class="u13866_input">
- <option class="u13866_input_option" value="人员角色">人员角色</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13867" class="ax_default" data-left="863" data-top="199" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13868" class="ax_default shape transition">
- <div id="u13868_div" class=""></div>
- <div id="u13868_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u13869" class="ax_default text_field transition" data-label="选项内容">
- <div id="u13869_div" class=""></div>
- <input id="u13869_input" type="text" value="" class="u13869_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13870" class="ax_default" data-left="863" data-top="239" data-width="130" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13871" class="ax_default box_1 transition">
- <div id="u13871_div" class=""></div>
- <div id="u13871_text" class="text ">
- <p><span>搜索</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13872" class="ax_default box_1 transition">
- <div id="u13872_div" class=""></div>
- <div id="u13872_text" class="text ">
- <p><span>重置</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13873" class="ax_default" data-left="713" data-top="239" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13874" class="ax_default shape transition">
- <div id="u13874_div" class=""></div>
- <div id="u13874_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u13875" class="ax_default text_field transition" data-label="选项内容">
- <div id="u13875_div" class=""></div>
- <input id="u13875_input" type="text" value="" class="u13875_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13876" class="ax_default" data-left="563" data-top="199" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13877" class="ax_default box_1 transition">
- <div id="u13877_div" class=""></div>
- <div id="u13877_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u13878" class="ax_default droplist transition">
- <div id="u13878_div" class=""></div>
- <select id="u13878_input" class="u13878_input">
- <option class="u13878_input_option" value="项目">项目</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13879" class="ax_default" data-left="1636" data-top="60" data-width="800" data-height="1196" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13880" class="ax_default paragraph transition">
- <div id="u13880_div" class=""></div>
- <div id="u13880_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13881" class="ax_default paragraph transition">
- <div id="u13881_div" class=""></div>
- <div id="u13881_text" class="text ">
- <p><span>已认证微信用户</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13882" class="ax_default" data-left="2384" data-top="60" data-width="52" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13883" class="ax_default paragraph transition">
- <div id="u13883_div" class=""></div>
- <div id="u13883_text" class="text ">
- <p><span>x</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u13884" class="ax_default icon1 transition">
- <svg data="images/设置/u4561.svg" id="u13884_img" class="img generatedImage">
- <defs>
- <pattern id="u13884_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13884_img_cl381">
- <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" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -1032 -79 )">
- <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" />
- <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)" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u13884_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13885" class="ax_default" data-left="1636" data-top="1206" data-width="800" data-height="50" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13886" class="ax_default paragraph transition">
- <div id="u13886_div" class=""></div>
- <div id="u13886_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13887" class="ax_default box_1 transition">
- <div id="u13887_div" class=""></div>
- <div id="u13887_text" class="text ">
- <p><span>关闭</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Table) -->
- <div id="u13888" class="ax_default">
- <!-- Unnamed (Table cell) -->
- <div id="u13889" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13889.svg" id="u13889_img" class="img generatedImage" viewbox="0 0 71 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13889_text" class="text ">
- <p><span>序号</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13890" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13890.svg" id="u13890_img" class="img generatedImage" viewbox="71 0 137 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13890_text" class="text ">
- <p><span>人员ID</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13891" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13891.svg" id="u13891_img" class="img generatedImage" viewbox="208 0 137 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13891_text" class="text ">
- <p><span>姓名</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13892" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13892.svg" id="u13892_img" class="img generatedImage" viewbox="344 0 137 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13892_text" class="text ">
- <p><span>手机号码</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13893" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13893.svg" id="u13893_img" class="img generatedImage" viewbox="481 0 137 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13893_text" class="text ">
- <p><span>微信用户账号</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13894" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13894.svg" id="u13894_img" class="img generatedImage" viewbox="617 0 137 30">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13894_text" class="text ">
- <p><span>操作</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13895" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13895.svg" id="u13895_img" class="img generatedImage" viewbox="0 30 71 40">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13895_text" class="text ">
- <p><span>1</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13896" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13896.svg" id="u13896_img" class="img generatedImage" viewbox="71 30 137 40">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13896_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13897" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13897.svg" id="u13897_img" class="img generatedImage" viewbox="208 30 137 40">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13897_text" class="text ">
- <p><span>张三</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13898" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13898.svg" id="u13898_img" class="img generatedImage" viewbox="344 30 137 40">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13898_text" class="text ">
- <p><span>1508888888</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13899" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13899.svg" id="u13899_img" class="img generatedImage" viewbox="481 30 137 40">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13899_text" class="text ">
- <p><span style="font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;">用户</span><span style="font-family:'ArialMT', 'Arial', sans-serif;">ID</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13900" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13900.svg" id="u13900_img" class="img generatedImage" viewbox="617 30 137 40">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13900_text" class="text ">
- <p><span>解除</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13901" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13901.svg" id="u13901_img" class="img generatedImage" viewbox="0 70 71 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13901_text" class="text ">
- <p><span>2</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13902" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13902.svg" id="u13902_img" class="img generatedImage" viewbox="71 70 137 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13902_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13903" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13903.svg" id="u13903_img" class="img generatedImage" viewbox="208 70 137 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13903_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13904" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13904.svg" id="u13904_img" class="img generatedImage" viewbox="344 70 137 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13904_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13905" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13905.svg" id="u13905_img" class="img generatedImage" viewbox="481 70 137 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13905_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13906" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13906.svg" id="u13906_img" class="img generatedImage" viewbox="617 70 137 30">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13906_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13907" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13907.svg" id="u13907_img" class="img generatedImage" viewbox="0 100 71 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13907_text" class="text ">
- <p><span>3</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13908" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13908.svg" id="u13908_img" class="img generatedImage" viewbox="71 100 137 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13908_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13909" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13909.svg" id="u13909_img" class="img generatedImage" viewbox="208 100 137 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13909_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13910" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13910.svg" id="u13910_img" class="img generatedImage" viewbox="344 100 137 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13910_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13911" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13911.svg" id="u13911_img" class="img generatedImage" viewbox="481 100 137 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13911_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13912" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13912.svg" id="u13912_img" class="img generatedImage" viewbox="617 100 137 30">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13912_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13913" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13913.svg" id="u13913_img" class="img generatedImage" viewbox="0 130 71 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13913_text" class="text ">
- <p><span>4</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13914" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13914.svg" id="u13914_img" class="img generatedImage" viewbox="71 130 137 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13914_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13915" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13915.svg" id="u13915_img" class="img generatedImage" viewbox="208 130 137 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13915_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13916" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13916.svg" id="u13916_img" class="img generatedImage" viewbox="344 130 137 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13916_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13917" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13917.svg" id="u13917_img" class="img generatedImage" viewbox="481 130 137 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13917_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13918" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13918.svg" id="u13918_img" class="img generatedImage" viewbox="617 130 137 30">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13918_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13919" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13919.svg" id="u13919_img" class="img generatedImage" viewbox="0 160 71 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13919_text" class="text ">
- <p><span>5</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13920" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13920.svg" id="u13920_img" class="img generatedImage" viewbox="71 160 137 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13920_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13921" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13921.svg" id="u13921_img" class="img generatedImage" viewbox="208 160 137 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13921_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13922" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13922.svg" id="u13922_img" class="img generatedImage" viewbox="344 160 137 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13922_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13923" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13923.svg" id="u13923_img" class="img generatedImage" viewbox="481 160 137 30">
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13923_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13924" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13924.svg" id="u13924_img" class="img generatedImage" viewbox="617 160 137 30">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13924_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13925" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13925.svg" id="u13925_img" class="img generatedImage" viewbox="0 190 71 23">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13925_text" class="text ">
- <p><span>6</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13926" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13926.svg" id="u13926_img" class="img generatedImage" viewbox="71 190 137 23">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13926_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13927" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13927.svg" id="u13927_img" class="img generatedImage" viewbox="208 190 137 23">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13927_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13928" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13928.svg" id="u13928_img" class="img generatedImage" viewbox="344 190 137 23">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13928_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13929" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13929.svg" id="u13929_img" class="img generatedImage" viewbox="481 190 137 23">
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13929_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u13930" class="ax_default table_cell transition">
- <svg data="images/物业员工/u13930.svg" id="u13930_img" class="img generatedImage" viewbox="617 190 137 23">
- <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" />
- <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" />
- <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" />
- <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" />
- <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" />
- </svg>
- <div id="u13930_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13931" class="ax_default" data-left="1806" data-top="134" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13932" class="ax_default shape transition">
- <div id="u13932_div" class=""></div>
- <div id="u13932_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u13933" class="ax_default text_field transition" data-label="选项内容">
- <div id="u13933_div" class=""></div>
- <input id="u13933_input" type="text" value="" class="u13933_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13934" class="ax_default" data-left="1956" data-top="134" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13935" class="ax_default shape transition">
- <div id="u13935_div" class=""></div>
- <div id="u13935_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u13936" class="ax_default text_field transition" data-label="选项内容">
- <div id="u13936_div" class=""></div>
- <input id="u13936_input" type="text" value="" class="u13936_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13937" class="ax_default" data-left="2106" data-top="133" data-width="130" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13938" class="ax_default box_1 transition">
- <div id="u13938_div" class=""></div>
- <div id="u13938_text" class="text ">
- <p><span>搜索</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13939" class="ax_default box_1 transition">
- <div id="u13939_div" class=""></div>
- <div id="u13939_text" class="text ">
- <p><span>重置</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13940" class="ax_default" data-left="1656" data-top="134" data-width="140" data-height="30" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13941" class="ax_default shape transition">
- <div id="u13941_div" class=""></div>
- <div id="u13941_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u13942" class="ax_default text_field transition" data-label="选项内容">
- <div id="u13942_div" class=""></div>
- <input id="u13942_input" type="text" value="" class="u13942_input"/>
- </div>
- </div>
- </div>
- <!-- Unnamed (Connector) -->
- <div id="u13943" class="ax_default connector1">
- <img id="u13943_seg0" class="img " src="images/物业员工/u13943_seg0.svg" alt="u13943_seg0"/>
- <img id="u13943_seg1" class="img " src="images/物业员工/u13943_seg1.svg" alt="u13943_seg1"/>
- <img id="u13943_seg2" class="img " src="images/物业员工/u13943_seg2.svg" alt="u13943_seg2"/>
- <div id="u13943_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u13944" class="ax_default" data-left="1876" data-top="486" data-width="380" data-height="160" layer-opacity="1">
- <!-- Unnamed (Group) -->
- <div id="u13945" class="ax_default" data-left="1876" data-top="486" data-width="380" data-height="160" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u13946" class="ax_default shape transition">
- <div id="u13946_div" class=""></div>
- <div id="u13946_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13947" class="ax_default paragraph transition">
- <div id="u13947_div" class=""></div>
- <div id="u13947_text" class="text ">
- <p><span>确定解除绑定的微信用户?</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13948" class="ax_default shape transition">
- <div id="u13948_div" class=""></div>
- <div id="u13948_text" class="text ">
- <p><span>确定</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u13949" class="ax_default icon transition">
- <svg data="images/项目列表/u4798.svg" id="u13949_img" class="img generatedImage">
- <defs>
- <pattern id="u13949_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u13949_img_cl398">
- <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -1661 -842 )">
- <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="nonzero" fill="rgba(245, 154, 35, 1)" stroke="none" transform="matrix(1 0 0 1 1661 842 )" class="fill" />
- <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u13949_img_cl398)" />
- <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)" />
- <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)" />
- </g>
- </svg>
- <div id="u13949_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13950" class="ax_default paragraph transition">
- <div id="u13950_div" class=""></div>
- <div id="u13950_text" class="text ">
- <p><span>解除之后,该微信用户账号将移除相关通行权限,且解除与项目的关系。</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u13951" class="ax_default shape transition">
- <div id="u13951_div" class=""></div>
- <div id="u13951_text" class="text ">
- <p><span>取 消</span></p>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script src="resources/scripts/axure/ios.js"></script>
- </body>
- </html>
|