123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989 |
- <!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 (Rectangle) -->
- <div id="u22689" class="ax_default paragraph transition">
- <div id="u22689_div" class=""></div>
- <div id="u22689_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22690" class="ax_default paragraph transition">
- <div id="u22690_div" class=""></div>
- <div id="u22690_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22691" class="ax_default paragraph transition">
- <div id="u22691_div" class=""></div>
- <div id="u22691_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u22692" class="ax_default" data-left="1036" data-top="59" data-width="52" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u22693" class="ax_default paragraph transition">
- <div id="u22693_div" class=""></div>
- <div id="u22693_text" class="text ">
- <p><span>x</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u22694" class="ax_default icon1 transition">
- <svg data="images/设置/u4554.svg" id="u22694_img" class="img generatedImage">
- <defs>
- <pattern id="u22694_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u22694_img_cl2919">
- <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(#u22694_img_cl2919)" />
- <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(#u22694_img_cl2919)" />
- <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(#u22694_img_cl2919)" />
- </g>
- </svg>
- <div id="u22694_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u22695" class="ax_default" data-left="88" data-top="1253" data-width="1000" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u22696" class="ax_default paragraph transition">
- <div id="u22696_div" class=""></div>
- <div id="u22696_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22697" class="ax_default box_1 transition">
- <div id="u22697_div" class=""></div>
- <div id="u22697_text" class="text ">
- <p><span>提交验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22698" class="ax_default box_1 transition">
- <div id="u22698_div" class=""></div>
- <div id="u22698_text" class="text ">
- <p><span>取消</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Table) -->
- <div id="u22699" class="ax_default">
- <!-- Unnamed (Table cell) -->
- <div id="u22700" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22700.svg" id="u22700_img" class="img generatedImage" viewbox="0 0 102 30">
- <path d="M 1 1 L 102 1 L 102 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 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" />
- </svg>
- <div id="u22700_text" class="text ">
- <p><span>收费标准名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22701" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22701.svg" id="u22701_img" class="img generatedImage" viewbox="102 0 122 30">
- <path d="M 1 1 L 122 1 L 122 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 102 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 102 0 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 0 )" class="stroke" />
- </svg>
- <div id="u22701_text" class="text ">
- <p><span>计费方式</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22702" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22702.svg" id="u22702_img" class="img generatedImage" viewbox="224 0 122 30">
- <path d="M 1 1 L 122 1 L 122 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 224 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 224 0 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 0 )" class="stroke" />
- </svg>
- <div id="u22702_text" class="text ">
- <p><span>开始日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22703" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22703.svg" id="u22703_img" class="img generatedImage" viewbox="346 0 122 30">
- <path d="M 1 1 L 122 1 L 122 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 346 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 346 0 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 0 )" class="stroke" />
- </svg>
- <div id="u22703_text" class="text ">
- <p><span>结束日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22704" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22704.svg" id="u22704_img" class="img generatedImage" viewbox="468 0 104 30">
- <path d="M 1 1 L 104 1 L 104 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 468 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 468 0 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 0 )" class="stroke" />
- </svg>
- <div id="u22704_text" class="text ">
- <p><span>金额</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22705" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22705.svg" id="u22705_img" class="img generatedImage" viewbox="572 0 115 30">
- <path d="M 1 1 L 115 1 L 115 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 572 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 572 0 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 0 )" class="stroke" />
- </svg>
- <div id="u22705_text" class="text ">
- <p><span>收费对象类型</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22706" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22706.svg" id="u22706_img" class="img generatedImage" viewbox="687 0 115 30">
- <path d="M 1 1 L 115 1 L 115 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 687 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 687 0 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 0 )" class="stroke" />
- </svg>
- <div id="u22706_text" class="text ">
- <p><span>收费对象</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22707" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22707.svg" id="u22707_img" class="img generatedImage" viewbox="802 0 113 30">
- <path d="M 1 1 L 112 1 L 112 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 802 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 802 0 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 0 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 0 )" class="stroke" />
- </svg>
- <div id="u22707_text" class="text ">
- <p><span>收费状态</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22708" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22708.svg" id="u22708_img" class="img generatedImage" viewbox="0 30 102 30">
- <path d="M 1 1 L 102 1 L 102 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 30 )" 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 30 )" class="stroke" />
- <path d="M 0 0.5 L 102 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="u22708_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22709" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22709.svg" id="u22709_img" class="img generatedImage" viewbox="102 30 122 30">
- <path d="M 1 1 L 122 1 L 122 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 102 30 )" 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 102 30 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 30 )" class="stroke" />
- </svg>
- <div id="u22709_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22710" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22710.svg" id="u22710_img" class="img generatedImage" viewbox="224 30 122 30">
- <path d="M 1 1 L 122 1 L 122 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 224 30 )" 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 224 30 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 30 )" class="stroke" />
- </svg>
- <div id="u22710_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22711" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22711.svg" id="u22711_img" class="img generatedImage" viewbox="346 30 122 30">
- <path d="M 1 1 L 122 1 L 122 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 346 30 )" 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 346 30 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 30 )" class="stroke" />
- </svg>
- <div id="u22711_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22712" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22712.svg" id="u22712_img" class="img generatedImage" viewbox="468 30 104 30">
- <path d="M 1 1 L 104 1 L 104 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 468 30 )" 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 468 30 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 30 )" class="stroke" />
- </svg>
- <div id="u22712_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22713" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22713.svg" id="u22713_img" class="img generatedImage" viewbox="572 30 115 30">
- <path d="M 1 1 L 115 1 L 115 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 572 30 )" 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 572 30 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 30 )" class="stroke" />
- </svg>
- <div id="u22713_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22714" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22714.svg" id="u22714_img" class="img generatedImage" viewbox="687 30 115 30">
- <path d="M 1 1 L 115 1 L 115 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 687 30 )" 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 687 30 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 30 )" class="stroke" />
- </svg>
- <div id="u22714_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22715" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22715.svg" id="u22715_img" class="img generatedImage" viewbox="802 30 113 30">
- <path d="M 1 1 L 112 1 L 112 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 802 30 )" 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 802 30 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 30 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 30 )" class="stroke" />
- </svg>
- <div id="u22715_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22716" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22716.svg" id="u22716_img" class="img generatedImage" viewbox="0 60 102 30">
- <path d="M 1 1 L 102 1 L 102 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 60 )" 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 60 )" class="stroke" />
- <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 60 )" class="stroke" />
- </svg>
- <div id="u22716_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22717" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22717.svg" id="u22717_img" class="img generatedImage" viewbox="102 60 122 30">
- <path d="M 1 1 L 122 1 L 122 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 102 60 )" 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 102 60 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 60 )" class="stroke" />
- </svg>
- <div id="u22717_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22718" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22718.svg" id="u22718_img" class="img generatedImage" viewbox="224 60 122 30">
- <path d="M 1 1 L 122 1 L 122 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 224 60 )" 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 224 60 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 60 )" class="stroke" />
- </svg>
- <div id="u22718_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22719" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22719.svg" id="u22719_img" class="img generatedImage" viewbox="346 60 122 30">
- <path d="M 1 1 L 122 1 L 122 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 346 60 )" 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 346 60 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 60 )" class="stroke" />
- </svg>
- <div id="u22719_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22720" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22720.svg" id="u22720_img" class="img generatedImage" viewbox="468 60 104 30">
- <path d="M 1 1 L 104 1 L 104 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 468 60 )" 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 468 60 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 60 )" class="stroke" />
- </svg>
- <div id="u22720_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22721" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22721.svg" id="u22721_img" class="img generatedImage" viewbox="572 60 115 30">
- <path d="M 1 1 L 115 1 L 115 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 572 60 )" 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 572 60 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 60 )" class="stroke" />
- </svg>
- <div id="u22721_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22722" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22722.svg" id="u22722_img" class="img generatedImage" viewbox="687 60 115 30">
- <path d="M 1 1 L 115 1 L 115 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 687 60 )" 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 687 60 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 60 )" class="stroke" />
- </svg>
- <div id="u22722_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22723" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22723.svg" id="u22723_img" class="img generatedImage" viewbox="802 60 113 30">
- <path d="M 1 1 L 112 1 L 112 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 802 60 )" 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 802 60 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 60 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 60 )" class="stroke" />
- </svg>
- <div id="u22723_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22724" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22724.svg" id="u22724_img" class="img generatedImage" viewbox="0 90 102 30">
- <path d="M 1 1 L 102 1 L 102 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 90 )" 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 90 )" class="stroke" />
- <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 90 )" class="stroke" />
- </svg>
- <div id="u22724_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22725" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22725.svg" id="u22725_img" class="img generatedImage" viewbox="102 90 122 30">
- <path d="M 1 1 L 122 1 L 122 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 102 90 )" 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 102 90 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 90 )" class="stroke" />
- </svg>
- <div id="u22725_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22726" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22726.svg" id="u22726_img" class="img generatedImage" viewbox="224 90 122 30">
- <path d="M 1 1 L 122 1 L 122 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 224 90 )" 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 224 90 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 90 )" class="stroke" />
- </svg>
- <div id="u22726_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22727" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22727.svg" id="u22727_img" class="img generatedImage" viewbox="346 90 122 30">
- <path d="M 1 1 L 122 1 L 122 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 346 90 )" 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 346 90 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 90 )" class="stroke" />
- </svg>
- <div id="u22727_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22728" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22728.svg" id="u22728_img" class="img generatedImage" viewbox="468 90 104 30">
- <path d="M 1 1 L 104 1 L 104 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 468 90 )" 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 468 90 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 90 )" class="stroke" />
- </svg>
- <div id="u22728_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22729" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22729.svg" id="u22729_img" class="img generatedImage" viewbox="572 90 115 30">
- <path d="M 1 1 L 115 1 L 115 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 572 90 )" 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 572 90 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 90 )" class="stroke" />
- </svg>
- <div id="u22729_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22730" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22730.svg" id="u22730_img" class="img generatedImage" viewbox="687 90 115 30">
- <path d="M 1 1 L 115 1 L 115 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 687 90 )" 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 687 90 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 90 )" class="stroke" />
- </svg>
- <div id="u22730_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22731" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22731.svg" id="u22731_img" class="img generatedImage" viewbox="802 90 113 30">
- <path d="M 1 1 L 112 1 L 112 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 802 90 )" 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 802 90 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 90 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 90 )" class="stroke" />
- </svg>
- <div id="u22731_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22732" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22732.svg" id="u22732_img" class="img generatedImage" viewbox="0 120 102 30">
- <path d="M 1 1 L 102 1 L 102 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 120 )" 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 120 )" class="stroke" />
- <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 120 )" class="stroke" />
- </svg>
- <div id="u22732_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22733" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22733.svg" id="u22733_img" class="img generatedImage" viewbox="102 120 122 30">
- <path d="M 1 1 L 122 1 L 122 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 102 120 )" 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 102 120 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 120 )" class="stroke" />
- </svg>
- <div id="u22733_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22734" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22734.svg" id="u22734_img" class="img generatedImage" viewbox="224 120 122 30">
- <path d="M 1 1 L 122 1 L 122 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 224 120 )" 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 224 120 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 120 )" class="stroke" />
- </svg>
- <div id="u22734_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22735" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22735.svg" id="u22735_img" class="img generatedImage" viewbox="346 120 122 30">
- <path d="M 1 1 L 122 1 L 122 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 346 120 )" 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 346 120 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 120 )" class="stroke" />
- </svg>
- <div id="u22735_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22736" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22736.svg" id="u22736_img" class="img generatedImage" viewbox="468 120 104 30">
- <path d="M 1 1 L 104 1 L 104 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 468 120 )" 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 468 120 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 120 )" class="stroke" />
- </svg>
- <div id="u22736_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22737" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22737.svg" id="u22737_img" class="img generatedImage" viewbox="572 120 115 30">
- <path d="M 1 1 L 115 1 L 115 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 572 120 )" 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 572 120 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 120 )" class="stroke" />
- </svg>
- <div id="u22737_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22738" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22738.svg" id="u22738_img" class="img generatedImage" viewbox="687 120 115 30">
- <path d="M 1 1 L 115 1 L 115 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 687 120 )" 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 687 120 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 120 )" class="stroke" />
- </svg>
- <div id="u22738_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22739" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22739.svg" id="u22739_img" class="img generatedImage" viewbox="802 120 113 30">
- <path d="M 1 1 L 112 1 L 112 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 802 120 )" 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 802 120 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 120 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 120 )" class="stroke" />
- </svg>
- <div id="u22739_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22740" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22740.svg" id="u22740_img" class="img generatedImage" viewbox="0 150 102 30">
- <path d="M 1 1 L 102 1 L 102 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 0 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
- <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
- <path d="M 0 29.5 L 102 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
- </svg>
- <div id="u22740_text" class="text ">
- <p><span>总计</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22741" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22741.svg" id="u22741_img" class="img generatedImage" viewbox="102 150 122 30">
- <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 102 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
- <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
- </svg>
- <div id="u22741_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22742" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22742.svg" id="u22742_img" class="img generatedImage" viewbox="224 150 122 30">
- <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 224 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
- <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
- </svg>
- <div id="u22742_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22743" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22743.svg" id="u22743_img" class="img generatedImage" viewbox="346 150 122 30">
- <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 346 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
- <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
- </svg>
- <div id="u22743_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22744" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22744.svg" id="u22744_img" class="img generatedImage" viewbox="468 150 104 30">
- <path d="M 1 1 L 104 1 L 104 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 468 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
- <path d="M 0 29.5 L 104 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
- </svg>
- <div id="u22744_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22745" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22745.svg" id="u22745_img" class="img generatedImage" viewbox="572 150 115 30">
- <path d="M 1 1 L 115 1 L 115 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 572 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
- <path d="M 0 29.5 L 115 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
- </svg>
- <div id="u22745_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22746" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22746.svg" id="u22746_img" class="img generatedImage" viewbox="687 150 115 30">
- <path d="M 1 1 L 115 1 L 115 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 687 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
- <path d="M 0 29.5 L 115 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
- </svg>
- <div id="u22746_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22747" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22747.svg" id="u22747_img" class="img generatedImage" viewbox="802 150 113 30">
- <path d="M 1 1 L 112 1 L 112 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 802 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
- <path d="M 0 29.5 L 113 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
- </svg>
- <div id="u22747_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22748" class="ax_default paragraph transition">
- <div id="u22748_div" class=""></div>
- <div id="u22748_text" class="text ">
- <p><span>验收确认</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22749" class="ax_default paragraph transition">
- <div id="u22749_div" class=""></div>
- <div id="u22749_text" class="text ">
- <p><span>装修信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22750" class="ax_default paragraph transition">
- <div id="u22750_div" class=""></div>
- <div id="u22750_text" class="text ">
- <p><span>项目:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22751" class="ax_default paragraph transition">
- <div id="u22751_div" class=""></div>
- <div id="u22751_text" class="text ">
- <p><span>西安保利天汇社区</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22752" class="ax_default paragraph transition">
- <div id="u22752_div" class=""></div>
- <div id="u22752_text" class="text ">
- <p><span>房屋:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22753" class="ax_default paragraph transition">
- <div id="u22753_div" class=""></div>
- <div id="u22753_text" class="text ">
- <p><span>3栋A单元203</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22754" class="ax_default paragraph transition">
- <div id="u22754_div" class=""></div>
- <div id="u22754_text" class="text ">
- <p><span>建筑面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22755" class="ax_default paragraph transition">
- <div id="u22755_div" class=""></div>
- <div id="u22755_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22756" class="ax_default paragraph transition">
- <div id="u22756_div" class=""></div>
- <div id="u22756_text" class="text ">
- <p><span>套内面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22757" class="ax_default paragraph transition">
- <div id="u22757_div" class=""></div>
- <div id="u22757_text" class="text ">
- <p><span>225.08平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22758" class="ax_default paragraph transition">
- <div id="u22758_div" class=""></div>
- <div id="u22758_text" class="text ">
- <p><span>计费面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22759" class="ax_default paragraph transition">
- <div id="u22759_div" class=""></div>
- <div id="u22759_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22760" class="ax_default paragraph transition">
- <div id="u22760_div" class=""></div>
- <div id="u22760_text" class="text ">
- <p><span>业主名称:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22761" class="ax_default paragraph transition">
- <div id="u22761_div" class=""></div>
- <div id="u22761_text" class="text ">
- <p><span>张三</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22762" class="ax_default paragraph transition">
- <div id="u22762_div" class=""></div>
- <div id="u22762_text" class="text ">
- <p><span>开始时间;</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22763" class="ax_default paragraph transition">
- <div id="u22763_div" class=""></div>
- <div id="u22763_text" class="text ">
- <p><span>2025/07/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22764" class="ax_default paragraph transition">
- <div id="u22764_div" class=""></div>
- <div id="u22764_text" class="text ">
- <p><span>拟结束时间:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22765" class="ax_default paragraph transition">
- <div id="u22765_div" class=""></div>
- <div id="u22765_text" class="text ">
- <p><span>2025/09/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22766" class="ax_default paragraph transition">
- <div id="u22766_div" class=""></div>
- <div id="u22766_text" class="text ">
- <p><span>备注信息:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22767" class="ax_default paragraph transition">
- <div id="u22767_div" class=""></div>
- <div id="u22767_text" class="text ">
- <p><span>显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22768" class="ax_default paragraph transition">
- <div id="u22768_div" class=""></div>
- <div id="u22768_text" class="text ">
- <p><span>账单费用明细</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22769" class="ax_default paragraph transition">
- <div id="u22769_div" class=""></div>
- <div id="u22769_text" class="text ">
- <p><span>*是否退款:</span></p>
- </div>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u22770" class="ax_default radio_button selected">
- <label id="u22770_input_label" for="u22770_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u22770.svg" id="u22770_img" class="img " viewbox="215 765 12 12">
- <path d="M 221 765 C 224.36 765 227 767.64 227 771 C 227 774.36 224.36 777 221 777 C 217.64 777 215 774.36 215 771 C 215 767.64 217.64 765 221 765 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
- <path d="M 221 765.5 C 224.08 765.5 226.5 767.92 226.5 771 C 226.5 774.08 224.08 776.5 221 776.5 C 217.92 776.5 215.5 774.08 215.5 771 C 215.5 767.92 217.92 765.5 221 765.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
- <path d="M 221 774 C 219.32 774 218 772.68 218 771 C 218 769.32 219.32 768 221 768 C 222.68 768 224 769.32 224 771 C 224 772.68 222.68 774 221 774 " fill-rule="nonzero" fill="rgba(121, 121, 121, 1)" stroke="none" class="stroke btn_check" />
- </svg>
- <div id="u22770_text" class="text ">
- <p><span>是</span></p>
- </div>
- </label>
- <input id="u22770_input" type="radio" value="radio" name="u22770" checked/>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u22771" class="ax_default radio_button">
- <label id="u22771_input_label" for="u22771_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u22771.svg" id="u22771_img" class="img " viewbox="348 765 12 12">
- <path d="M 354 765 C 357.36 765 360 767.64 360 771 C 360 774.36 357.36 777 354 777 C 350.64 777 348 774.36 348 771 C 348 767.64 350.64 765 354 765 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
- <path d="M 354 765.5 C 357.08 765.5 359.5 767.92 359.5 771 C 359.5 774.08 357.08 776.5 354 776.5 C 350.92 776.5 348.5 774.08 348.5 771 C 348.5 767.92 350.92 765.5 354 765.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
- <path d="M 354 774 C 352.32 774 351 772.68 351 771 C 351 769.32 352.32 768 354 768 C 355.68 768 357 769.32 357 771 C 357 772.68 355.68 774 354 774 " fill-rule="nonzero" fill="rgba(121, 121, 121, 1)" stroke="none" class="stroke btn_check" />
- </svg>
- <div id="u22771_text" class="text ">
- <p><span>否</span></p>
- </div>
- </label>
- <input id="u22771_input" type="radio" value="radio" name="u22771"/>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22772" class="ax_default paragraph transition">
- <div id="u22772_div" class=""></div>
- <div id="u22772_text" class="text ">
- <p><span>完成验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22773" class="ax_default paragraph transition">
- <div id="u22773_div" class=""></div>
- <div id="u22773_text" class="text ">
- <p><span>验收说明:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u22774" class="ax_default" data-left="209" data-top="1010" data-width="795" data-height="80" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u22775" class="ax_default shape transition">
- <div id="u22775_div" class=""></div>
- <div id="u22775_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u22776" class="ax_default text_field transition" data-label="选项内容">
- <div id="u22776_div" class=""></div>
- <input id="u22776_input" type="text" value="" class="u22776_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22777" class="ax_default paragraph transition">
- <div id="u22777_div" class=""></div>
- <div id="u22777_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22778" class="ax_default paragraph transition">
- <div id="u22778_div" class=""></div>
- <div id="u22778_text" class="text ">
- <p><span>*退款方式:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u22779" class="ax_default" data-left="236" data-top="868" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u22780" class="ax_default box_1 transition">
- <div id="u22780_div" class=""></div>
- <div id="u22780_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u22781" class="ax_default droplist transition">
- <div id="u22781_div" class=""></div>
- <select id="u22781_input" class="u22781_input">
- <option class="u22781_input_option" value="选择付款方式">选择付款方式</option>
- <option class="u22781_input_option" selected value="转为预存款">转为预存款</option>
- <option class="u22781_input_option" value="线上原路返回">线上原路返回</option>
- <option class="u22781_input_option" value="线下银行卡转账">线下银行卡转账</option>
- <option class="u22781_input_option" value="线下第三方转账">线下第三方转账</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22782" class="ax_default paragraph transition">
- <div id="u22782_div" class=""></div>
- <div id="u22782_text" class="text ">
- <p><span>*退款项目:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u22783" class="ax_default" data-left="236" data-top="818" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u22784" class="ax_default box_1 transition">
- <div id="u22784_div" class=""></div>
- <div id="u22784_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u22785" class="ax_default droplist transition">
- <div id="u22785_div" class=""></div>
- <select id="u22785_input" class="u22785_input">
- <option class="u22785_input_option" value="室内清洁费">室内清洁费</option>
- <option class="u22785_input_option" value="小时计费">小时计费</option>
- <option class="u22785_input_option" value="指定">指定</option>
- <option class="u22785_input_option" value="合同-固定">合同-固定</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22786" class="ax_default paragraph transition">
- <div id="u22786_div" class=""></div>
- <div id="u22786_text" class="text ">
- <p><span>*退款金额:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u22787" class="ax_default" data-left="678" data-top="818" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u22788" class="ax_default shape transition">
- <div id="u22788_div" class=""></div>
- <div id="u22788_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u22789" class="ax_default text_field transition" data-label="选项内容">
- <div id="u22789_div" class=""></div>
- <input id="u22789_input" type="text" value="" class="u22789_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22790" class="ax_default paragraph transition">
- <div id="u22790_div" class=""></div>
- <div id="u22790_text" class="text ">
- <p><span>*退回账户:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u22791" class="ax_default" data-left="678" data-top="868" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u22792" class="ax_default box_1 transition">
- <div id="u22792_div" class=""></div>
- <div id="u22792_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u22793" class="ax_default droplist transition">
- <div id="u22793_div" class=""></div>
- <select id="u22793_input" class="u22793_input">
- <option class="u22793_input_option" value="请选择">请选择</option>
- <option class="u22793_input_option" value="通用预存账户">通用预存账户</option>
- <option class="u22793_input_option" value="物业服务账户">物业服务账户</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22794" class="ax_default paragraph transition">
- <div id="u22794_div" class=""></div>
- <div id="u22794_text" class="text ">
- <p><span>+添加</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u22795" class="ax_default icon transition">
- <svg data="images/完成验收/u22795.svg" id="u22795_img" class="img generatedImage">
- <defs>
- <pattern id="u22795_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u22795_img_cl3767">
- <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -986 -795 )">
- <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " fill-rule="nonzero" fill="rgba(0, 0, 0, 1)" stroke="none" transform="matrix(1 0 0 1 986 795 )" class="fill" />
- <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 986 795 )" class="stroke" mask="url(#u22795_img_cl3767)" />
- <path d="M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 986 795 )" class="stroke" mask="url(#u22795_img_cl3767)" />
- </g>
- </svg>
- <div id="u22795_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22796" class="ax_default paragraph transition">
- <div id="u22796_div" class=""></div>
- <div id="u22796_text" class="text ">
- <p><span>功能模块需求说明:</span></p><p><span>1、是否退款,是:需要添加退款信息;否,无需添加退款信息;</span></p><p><span>2、退款项目,单选;自动获取对应账单的退款金额,可修改;退款方式,支持转预存款,原路退回、线下转账处理;</span></p><p><span>3、线下缴费的方式,不支持原路退回;转预存款处理,退款金额转至该房源所选择的预存款账户。</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22797" class="ax_default paragraph transition">
- <div id="u22797_div" class=""></div>
- <div id="u22797_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22798" class="ax_default paragraph transition">
- <div id="u22798_div" class=""></div>
- <div id="u22798_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22799" class="ax_default paragraph transition">
- <div id="u22799_div" class=""></div>
- <div id="u22799_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u22800" class="ax_default" data-left="2056" data-top="59" data-width="52" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u22801" class="ax_default paragraph transition">
- <div id="u22801_div" class=""></div>
- <div id="u22801_text" class="text ">
- <p><span>x</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u22802" class="ax_default icon1 transition">
- <svg data="images/设置/u4554.svg" id="u22802_img" class="img generatedImage">
- <defs>
- <pattern id="u22802_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u22802_img_cl2919">
- <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(#u22802_img_cl2919)" />
- <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(#u22802_img_cl2919)" />
- <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(#u22802_img_cl2919)" />
- </g>
- </svg>
- <div id="u22802_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u22803" class="ax_default" data-left="1108" data-top="1253" data-width="1000" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u22804" class="ax_default paragraph transition">
- <div id="u22804_div" class=""></div>
- <div id="u22804_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22805" class="ax_default box_1 transition">
- <div id="u22805_div" class=""></div>
- <div id="u22805_text" class="text ">
- <p><span>提交验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22806" class="ax_default box_1 transition">
- <div id="u22806_div" class=""></div>
- <div id="u22806_text" class="text ">
- <p><span>取消</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Table) -->
- <div id="u22807" class="ax_default">
- <!-- Unnamed (Table cell) -->
- <div id="u22808" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22700.svg" id="u22808_img" class="img generatedImage" viewbox="0 0 102 30">
- <path d="M 1 1 L 102 1 L 102 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 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" />
- </svg>
- <div id="u22808_text" class="text ">
- <p><span>收费标准名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22809" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22701.svg" id="u22809_img" class="img generatedImage" viewbox="102 0 122 30">
- <path d="M 1 1 L 122 1 L 122 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 102 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 102 0 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 0 )" class="stroke" />
- </svg>
- <div id="u22809_text" class="text ">
- <p><span>计费方式</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22810" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22702.svg" id="u22810_img" class="img generatedImage" viewbox="224 0 122 30">
- <path d="M 1 1 L 122 1 L 122 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 224 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 224 0 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 0 )" class="stroke" />
- </svg>
- <div id="u22810_text" class="text ">
- <p><span>开始日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22811" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22703.svg" id="u22811_img" class="img generatedImage" viewbox="346 0 122 30">
- <path d="M 1 1 L 122 1 L 122 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 346 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 346 0 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 0 )" class="stroke" />
- </svg>
- <div id="u22811_text" class="text ">
- <p><span>结束日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22812" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22704.svg" id="u22812_img" class="img generatedImage" viewbox="468 0 104 30">
- <path d="M 1 1 L 104 1 L 104 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 468 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 468 0 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 0 )" class="stroke" />
- </svg>
- <div id="u22812_text" class="text ">
- <p><span>金额</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22813" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22705.svg" id="u22813_img" class="img generatedImage" viewbox="572 0 115 30">
- <path d="M 1 1 L 115 1 L 115 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 572 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 572 0 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 0 )" class="stroke" />
- </svg>
- <div id="u22813_text" class="text ">
- <p><span>收费对象类型</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22814" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22706.svg" id="u22814_img" class="img generatedImage" viewbox="687 0 115 30">
- <path d="M 1 1 L 115 1 L 115 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 687 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 687 0 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 0 )" class="stroke" />
- </svg>
- <div id="u22814_text" class="text ">
- <p><span>收费对象</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22815" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22707.svg" id="u22815_img" class="img generatedImage" viewbox="802 0 113 30">
- <path d="M 1 1 L 112 1 L 112 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 802 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 802 0 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 0 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 0 )" class="stroke" />
- </svg>
- <div id="u22815_text" class="text ">
- <p><span>收费状态</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22816" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22708.svg" id="u22816_img" class="img generatedImage" viewbox="0 30 102 30">
- <path d="M 1 1 L 102 1 L 102 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 30 )" 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 30 )" class="stroke" />
- <path d="M 0 0.5 L 102 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="u22816_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22817" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22709.svg" id="u22817_img" class="img generatedImage" viewbox="102 30 122 30">
- <path d="M 1 1 L 122 1 L 122 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 102 30 )" 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 102 30 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 30 )" class="stroke" />
- </svg>
- <div id="u22817_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22818" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22710.svg" id="u22818_img" class="img generatedImage" viewbox="224 30 122 30">
- <path d="M 1 1 L 122 1 L 122 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 224 30 )" 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 224 30 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 30 )" class="stroke" />
- </svg>
- <div id="u22818_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22819" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22711.svg" id="u22819_img" class="img generatedImage" viewbox="346 30 122 30">
- <path d="M 1 1 L 122 1 L 122 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 346 30 )" 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 346 30 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 30 )" class="stroke" />
- </svg>
- <div id="u22819_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22820" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22712.svg" id="u22820_img" class="img generatedImage" viewbox="468 30 104 30">
- <path d="M 1 1 L 104 1 L 104 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 468 30 )" 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 468 30 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 30 )" class="stroke" />
- </svg>
- <div id="u22820_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22821" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22713.svg" id="u22821_img" class="img generatedImage" viewbox="572 30 115 30">
- <path d="M 1 1 L 115 1 L 115 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 572 30 )" 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 572 30 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 30 )" class="stroke" />
- </svg>
- <div id="u22821_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22822" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22714.svg" id="u22822_img" class="img generatedImage" viewbox="687 30 115 30">
- <path d="M 1 1 L 115 1 L 115 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 687 30 )" 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 687 30 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 30 )" class="stroke" />
- </svg>
- <div id="u22822_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22823" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22715.svg" id="u22823_img" class="img generatedImage" viewbox="802 30 113 30">
- <path d="M 1 1 L 112 1 L 112 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 802 30 )" 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 802 30 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 30 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 30 )" class="stroke" />
- </svg>
- <div id="u22823_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22824" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22716.svg" id="u22824_img" class="img generatedImage" viewbox="0 60 102 30">
- <path d="M 1 1 L 102 1 L 102 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 60 )" 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 60 )" class="stroke" />
- <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 60 )" class="stroke" />
- </svg>
- <div id="u22824_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22825" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22717.svg" id="u22825_img" class="img generatedImage" viewbox="102 60 122 30">
- <path d="M 1 1 L 122 1 L 122 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 102 60 )" 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 102 60 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 60 )" class="stroke" />
- </svg>
- <div id="u22825_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22826" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22718.svg" id="u22826_img" class="img generatedImage" viewbox="224 60 122 30">
- <path d="M 1 1 L 122 1 L 122 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 224 60 )" 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 224 60 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 60 )" class="stroke" />
- </svg>
- <div id="u22826_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22827" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22719.svg" id="u22827_img" class="img generatedImage" viewbox="346 60 122 30">
- <path d="M 1 1 L 122 1 L 122 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 346 60 )" 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 346 60 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 60 )" class="stroke" />
- </svg>
- <div id="u22827_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22828" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22720.svg" id="u22828_img" class="img generatedImage" viewbox="468 60 104 30">
- <path d="M 1 1 L 104 1 L 104 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 468 60 )" 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 468 60 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 60 )" class="stroke" />
- </svg>
- <div id="u22828_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22829" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22721.svg" id="u22829_img" class="img generatedImage" viewbox="572 60 115 30">
- <path d="M 1 1 L 115 1 L 115 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 572 60 )" 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 572 60 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 60 )" class="stroke" />
- </svg>
- <div id="u22829_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22830" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22722.svg" id="u22830_img" class="img generatedImage" viewbox="687 60 115 30">
- <path d="M 1 1 L 115 1 L 115 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 687 60 )" 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 687 60 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 60 )" class="stroke" />
- </svg>
- <div id="u22830_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22831" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22723.svg" id="u22831_img" class="img generatedImage" viewbox="802 60 113 30">
- <path d="M 1 1 L 112 1 L 112 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 802 60 )" 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 802 60 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 60 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 60 )" class="stroke" />
- </svg>
- <div id="u22831_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22832" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22724.svg" id="u22832_img" class="img generatedImage" viewbox="0 90 102 30">
- <path d="M 1 1 L 102 1 L 102 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 90 )" 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 90 )" class="stroke" />
- <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 90 )" class="stroke" />
- </svg>
- <div id="u22832_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22833" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22725.svg" id="u22833_img" class="img generatedImage" viewbox="102 90 122 30">
- <path d="M 1 1 L 122 1 L 122 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 102 90 )" 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 102 90 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 90 )" class="stroke" />
- </svg>
- <div id="u22833_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22834" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22726.svg" id="u22834_img" class="img generatedImage" viewbox="224 90 122 30">
- <path d="M 1 1 L 122 1 L 122 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 224 90 )" 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 224 90 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 90 )" class="stroke" />
- </svg>
- <div id="u22834_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22835" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22727.svg" id="u22835_img" class="img generatedImage" viewbox="346 90 122 30">
- <path d="M 1 1 L 122 1 L 122 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 346 90 )" 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 346 90 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 90 )" class="stroke" />
- </svg>
- <div id="u22835_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22836" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22728.svg" id="u22836_img" class="img generatedImage" viewbox="468 90 104 30">
- <path d="M 1 1 L 104 1 L 104 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 468 90 )" 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 468 90 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 90 )" class="stroke" />
- </svg>
- <div id="u22836_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22837" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22729.svg" id="u22837_img" class="img generatedImage" viewbox="572 90 115 30">
- <path d="M 1 1 L 115 1 L 115 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 572 90 )" 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 572 90 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 90 )" class="stroke" />
- </svg>
- <div id="u22837_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22838" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22730.svg" id="u22838_img" class="img generatedImage" viewbox="687 90 115 30">
- <path d="M 1 1 L 115 1 L 115 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 687 90 )" 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 687 90 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 90 )" class="stroke" />
- </svg>
- <div id="u22838_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22839" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22731.svg" id="u22839_img" class="img generatedImage" viewbox="802 90 113 30">
- <path d="M 1 1 L 112 1 L 112 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 802 90 )" 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 802 90 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 90 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 90 )" class="stroke" />
- </svg>
- <div id="u22839_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22840" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22732.svg" id="u22840_img" class="img generatedImage" viewbox="0 120 102 30">
- <path d="M 1 1 L 102 1 L 102 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 120 )" 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 120 )" class="stroke" />
- <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 120 )" class="stroke" />
- </svg>
- <div id="u22840_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22841" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22733.svg" id="u22841_img" class="img generatedImage" viewbox="102 120 122 30">
- <path d="M 1 1 L 122 1 L 122 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 102 120 )" 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 102 120 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 120 )" class="stroke" />
- </svg>
- <div id="u22841_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22842" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22734.svg" id="u22842_img" class="img generatedImage" viewbox="224 120 122 30">
- <path d="M 1 1 L 122 1 L 122 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 224 120 )" 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 224 120 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 120 )" class="stroke" />
- </svg>
- <div id="u22842_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22843" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22735.svg" id="u22843_img" class="img generatedImage" viewbox="346 120 122 30">
- <path d="M 1 1 L 122 1 L 122 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 346 120 )" 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 346 120 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 120 )" class="stroke" />
- </svg>
- <div id="u22843_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22844" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22736.svg" id="u22844_img" class="img generatedImage" viewbox="468 120 104 30">
- <path d="M 1 1 L 104 1 L 104 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 468 120 )" 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 468 120 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 120 )" class="stroke" />
- </svg>
- <div id="u22844_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22845" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22737.svg" id="u22845_img" class="img generatedImage" viewbox="572 120 115 30">
- <path d="M 1 1 L 115 1 L 115 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 572 120 )" 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 572 120 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 120 )" class="stroke" />
- </svg>
- <div id="u22845_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22846" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22738.svg" id="u22846_img" class="img generatedImage" viewbox="687 120 115 30">
- <path d="M 1 1 L 115 1 L 115 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 687 120 )" 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 687 120 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 120 )" class="stroke" />
- </svg>
- <div id="u22846_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22847" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22739.svg" id="u22847_img" class="img generatedImage" viewbox="802 120 113 30">
- <path d="M 1 1 L 112 1 L 112 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 802 120 )" 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 802 120 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 120 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 120 )" class="stroke" />
- </svg>
- <div id="u22847_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22848" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22740.svg" id="u22848_img" class="img generatedImage" viewbox="0 150 102 30">
- <path d="M 1 1 L 102 1 L 102 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 0 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
- <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
- <path d="M 0 29.5 L 102 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
- </svg>
- <div id="u22848_text" class="text ">
- <p><span>总计</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22849" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22741.svg" id="u22849_img" class="img generatedImage" viewbox="102 150 122 30">
- <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 102 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
- <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
- </svg>
- <div id="u22849_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22850" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22742.svg" id="u22850_img" class="img generatedImage" viewbox="224 150 122 30">
- <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 224 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
- <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
- </svg>
- <div id="u22850_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22851" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22743.svg" id="u22851_img" class="img generatedImage" viewbox="346 150 122 30">
- <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 346 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
- <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
- </svg>
- <div id="u22851_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22852" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22744.svg" id="u22852_img" class="img generatedImage" viewbox="468 150 104 30">
- <path d="M 1 1 L 104 1 L 104 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 468 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
- <path d="M 0 29.5 L 104 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
- </svg>
- <div id="u22852_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22853" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22745.svg" id="u22853_img" class="img generatedImage" viewbox="572 150 115 30">
- <path d="M 1 1 L 115 1 L 115 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 572 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
- <path d="M 0 29.5 L 115 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
- </svg>
- <div id="u22853_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22854" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22746.svg" id="u22854_img" class="img generatedImage" viewbox="687 150 115 30">
- <path d="M 1 1 L 115 1 L 115 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 687 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
- <path d="M 0 29.5 L 115 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
- </svg>
- <div id="u22854_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22855" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22747.svg" id="u22855_img" class="img generatedImage" viewbox="802 150 113 30">
- <path d="M 1 1 L 112 1 L 112 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 802 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
- <path d="M 0 29.5 L 113 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
- </svg>
- <div id="u22855_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22856" class="ax_default paragraph transition">
- <div id="u22856_div" class=""></div>
- <div id="u22856_text" class="text ">
- <p><span>验收确认</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22857" class="ax_default paragraph transition">
- <div id="u22857_div" class=""></div>
- <div id="u22857_text" class="text ">
- <p><span>装修信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22858" class="ax_default paragraph transition">
- <div id="u22858_div" class=""></div>
- <div id="u22858_text" class="text ">
- <p><span>项目:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22859" class="ax_default paragraph transition">
- <div id="u22859_div" class=""></div>
- <div id="u22859_text" class="text ">
- <p><span>西安保利天汇社区</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22860" class="ax_default paragraph transition">
- <div id="u22860_div" class=""></div>
- <div id="u22860_text" class="text ">
- <p><span>房屋:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22861" class="ax_default paragraph transition">
- <div id="u22861_div" class=""></div>
- <div id="u22861_text" class="text ">
- <p><span>3栋A单元203</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22862" class="ax_default paragraph transition">
- <div id="u22862_div" class=""></div>
- <div id="u22862_text" class="text ">
- <p><span>建筑面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22863" class="ax_default paragraph transition">
- <div id="u22863_div" class=""></div>
- <div id="u22863_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22864" class="ax_default paragraph transition">
- <div id="u22864_div" class=""></div>
- <div id="u22864_text" class="text ">
- <p><span>套内面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22865" class="ax_default paragraph transition">
- <div id="u22865_div" class=""></div>
- <div id="u22865_text" class="text ">
- <p><span>225.08平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22866" class="ax_default paragraph transition">
- <div id="u22866_div" class=""></div>
- <div id="u22866_text" class="text ">
- <p><span>计费面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22867" class="ax_default paragraph transition">
- <div id="u22867_div" class=""></div>
- <div id="u22867_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22868" class="ax_default paragraph transition">
- <div id="u22868_div" class=""></div>
- <div id="u22868_text" class="text ">
- <p><span>业主名称:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22869" class="ax_default paragraph transition">
- <div id="u22869_div" class=""></div>
- <div id="u22869_text" class="text ">
- <p><span>张三</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22870" class="ax_default paragraph transition">
- <div id="u22870_div" class=""></div>
- <div id="u22870_text" class="text ">
- <p><span>开始时间;</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22871" class="ax_default paragraph transition">
- <div id="u22871_div" class=""></div>
- <div id="u22871_text" class="text ">
- <p><span>2025/07/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22872" class="ax_default paragraph transition">
- <div id="u22872_div" class=""></div>
- <div id="u22872_text" class="text ">
- <p><span>拟结束时间:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22873" class="ax_default paragraph transition">
- <div id="u22873_div" class=""></div>
- <div id="u22873_text" class="text ">
- <p><span>2025/09/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22874" class="ax_default paragraph transition">
- <div id="u22874_div" class=""></div>
- <div id="u22874_text" class="text ">
- <p><span>备注信息:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22875" class="ax_default paragraph transition">
- <div id="u22875_div" class=""></div>
- <div id="u22875_text" class="text ">
- <p><span>显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22876" class="ax_default paragraph transition">
- <div id="u22876_div" class=""></div>
- <div id="u22876_text" class="text ">
- <p><span>账单费用明细</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22877" class="ax_default paragraph transition">
- <div id="u22877_div" class=""></div>
- <div id="u22877_text" class="text ">
- <p><span>*是否退款:</span></p>
- </div>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u22878" class="ax_default radio_button selected">
- <label id="u22878_input_label" for="u22878_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u22878.svg" id="u22878_img" class="img " viewbox="1235 765 12 12">
- <path d="M 1241 765 C 1244.36 765 1247 767.64 1247 771 C 1247 774.36 1244.36 777 1241 777 C 1237.64 777 1235 774.36 1235 771 C 1235 767.64 1237.64 765 1241 765 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
- <path d="M 1241 765.5 C 1244.08 765.5 1246.5 767.92 1246.5 771 C 1246.5 774.08 1244.08 776.5 1241 776.5 C 1237.92 776.5 1235.5 774.08 1235.5 771 C 1235.5 767.92 1237.92 765.5 1241 765.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
- <path d="M 1241 774 C 1239.32 774 1238 772.68 1238 771 C 1238 769.32 1239.32 768 1241 768 C 1242.68 768 1244 769.32 1244 771 C 1244 772.68 1242.68 774 1241 774 " fill-rule="nonzero" fill="rgba(121, 121, 121, 1)" stroke="none" class="stroke btn_check" />
- </svg>
- <div id="u22878_text" class="text ">
- <p><span>是</span></p>
- </div>
- </label>
- <input id="u22878_input" type="radio" value="radio" name="u22878" checked/>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u22879" class="ax_default radio_button">
- <label id="u22879_input_label" for="u22879_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u22879.svg" id="u22879_img" class="img " viewbox="1368 765 12 12">
- <path d="M 1374 765 C 1377.36 765 1380 767.64 1380 771 C 1380 774.36 1377.36 777 1374 777 C 1370.64 777 1368 774.36 1368 771 C 1368 767.64 1370.64 765 1374 765 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
- <path d="M 1374 765.5 C 1377.08 765.5 1379.5 767.92 1379.5 771 C 1379.5 774.08 1377.08 776.5 1374 776.5 C 1370.92 776.5 1368.5 774.08 1368.5 771 C 1368.5 767.92 1370.92 765.5 1374 765.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
- <path d="M 1374 774 C 1372.32 774 1371 772.68 1371 771 C 1371 769.32 1372.32 768 1374 768 C 1375.68 768 1377 769.32 1377 771 C 1377 772.68 1375.68 774 1374 774 " fill-rule="nonzero" fill="rgba(121, 121, 121, 1)" stroke="none" class="stroke btn_check" />
- </svg>
- <div id="u22879_text" class="text ">
- <p><span>否</span></p>
- </div>
- </label>
- <input id="u22879_input" type="radio" value="radio" name="u22879"/>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22880" class="ax_default paragraph transition">
- <div id="u22880_div" class=""></div>
- <div id="u22880_text" class="text ">
- <p><span>完成验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22881" class="ax_default paragraph transition">
- <div id="u22881_div" class=""></div>
- <div id="u22881_text" class="text ">
- <p><span>验收说明:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u22882" class="ax_default" data-left="1229" data-top="1008" data-width="795" data-height="80" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u22883" class="ax_default shape transition">
- <div id="u22883_div" class=""></div>
- <div id="u22883_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u22884" class="ax_default text_field transition" data-label="选项内容">
- <div id="u22884_div" class=""></div>
- <input id="u22884_input" type="text" value="" class="u22884_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22885" class="ax_default paragraph transition">
- <div id="u22885_div" class=""></div>
- <div id="u22885_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22886" class="ax_default paragraph transition">
- <div id="u22886_div" class=""></div>
- <div id="u22886_text" class="text ">
- <p><span>+添加</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u22887" class="ax_default icon transition">
- <svg data="images/完成验收/u22795.svg" id="u22887_img" class="img generatedImage">
- <defs>
- <pattern id="u22887_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u22887_img_cl3767">
- <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -986 -795 )">
- <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " fill-rule="nonzero" fill="rgba(0, 0, 0, 1)" stroke="none" transform="matrix(1 0 0 1 986 795 )" class="fill" />
- <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 986 795 )" class="stroke" mask="url(#u22887_img_cl3767)" />
- <path d="M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 986 795 )" class="stroke" mask="url(#u22887_img_cl3767)" />
- </g>
- </svg>
- <div id="u22887_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22888" class="ax_default paragraph transition">
- <div id="u22888_div" class=""></div>
- <div id="u22888_text" class="text ">
- <p><span>*退款方式:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u22889" class="ax_default" data-left="1267" data-top="868" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u22890" class="ax_default box_1 transition">
- <div id="u22890_div" class=""></div>
- <div id="u22890_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u22891" class="ax_default droplist transition">
- <div id="u22891_div" class=""></div>
- <select id="u22891_input" class="u22891_input">
- <option class="u22891_input_option" value="选择付款方式">选择付款方式</option>
- <option class="u22891_input_option" value="转为预存款">转为预存款</option>
- <option class="u22891_input_option" selected value="线上原路返回">线上原路返回</option>
- <option class="u22891_input_option" value="线下银行卡转账">线下银行卡转账</option>
- <option class="u22891_input_option" value="线下第三方转账">线下第三方转账</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22892" class="ax_default paragraph transition">
- <div id="u22892_div" class=""></div>
- <div id="u22892_text" class="text ">
- <p><span>*退款项目:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u22893" class="ax_default" data-left="1267" data-top="818" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u22894" class="ax_default box_1 transition">
- <div id="u22894_div" class=""></div>
- <div id="u22894_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u22895" class="ax_default droplist transition">
- <div id="u22895_div" class=""></div>
- <select id="u22895_input" class="u22895_input">
- <option class="u22895_input_option" value="室内清洁费">室内清洁费</option>
- <option class="u22895_input_option" value="小时计费">小时计费</option>
- <option class="u22895_input_option" value="指定">指定</option>
- <option class="u22895_input_option" value="合同-固定">合同-固定</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22896" class="ax_default paragraph transition">
- <div id="u22896_div" class=""></div>
- <div id="u22896_text" class="text ">
- <p><span>*退款金额:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u22897" class="ax_default" data-left="1709" data-top="818" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u22898" class="ax_default shape transition">
- <div id="u22898_div" class=""></div>
- <div id="u22898_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u22899" class="ax_default text_field transition" data-label="选项内容">
- <div id="u22899_div" class=""></div>
- <input id="u22899_input" type="text" value="" class="u22899_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22900" class="ax_default paragraph transition">
- <div id="u22900_div" class=""></div>
- <div id="u22900_text" class="text ">
- <p><span>*退回账户:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u22901" class="ax_default" data-left="1709" data-top="868" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u22902" class="ax_default shape transition">
- <div id="u22902_div" class=""></div>
- <div id="u22902_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u22903" class="ax_default text_field transition" data-label="选项内容">
- <div id="u22903_div" class=""></div>
- <input id="u22903_input" type="text" value="微信支付" class="u22903_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22904" class="ax_default paragraph transition">
- <div id="u22904_div" class=""></div>
- <div id="u22904_text" class="text ">
- <p><span>非线上缴费,不支持线上原路返回</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22905" class="ax_default paragraph transition">
- <div id="u22905_div" class=""></div>
- <div id="u22905_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22906" class="ax_default paragraph transition">
- <div id="u22906_div" class=""></div>
- <div id="u22906_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22907" class="ax_default paragraph transition">
- <div id="u22907_div" class=""></div>
- <div id="u22907_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u22908" class="ax_default" data-left="3076" data-top="59" data-width="52" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u22909" class="ax_default paragraph transition">
- <div id="u22909_div" class=""></div>
- <div id="u22909_text" class="text ">
- <p><span>x</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u22910" class="ax_default icon1 transition">
- <svg data="images/设置/u4554.svg" id="u22910_img" class="img generatedImage">
- <defs>
- <pattern id="u22910_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u22910_img_cl2919">
- <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(#u22910_img_cl2919)" />
- <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(#u22910_img_cl2919)" />
- <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(#u22910_img_cl2919)" />
- </g>
- </svg>
- <div id="u22910_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u22911" class="ax_default" data-left="2128" data-top="1253" data-width="1000" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u22912" class="ax_default paragraph transition">
- <div id="u22912_div" class=""></div>
- <div id="u22912_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22913" class="ax_default box_1 transition">
- <div id="u22913_div" class=""></div>
- <div id="u22913_text" class="text ">
- <p><span>提交验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22914" class="ax_default box_1 transition">
- <div id="u22914_div" class=""></div>
- <div id="u22914_text" class="text ">
- <p><span>取消</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Table) -->
- <div id="u22915" class="ax_default">
- <!-- Unnamed (Table cell) -->
- <div id="u22916" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22700.svg" id="u22916_img" class="img generatedImage" viewbox="0 0 102 30">
- <path d="M 1 1 L 102 1 L 102 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 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" />
- </svg>
- <div id="u22916_text" class="text ">
- <p><span>收费标准名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22917" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22701.svg" id="u22917_img" class="img generatedImage" viewbox="102 0 122 30">
- <path d="M 1 1 L 122 1 L 122 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 102 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 102 0 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 0 )" class="stroke" />
- </svg>
- <div id="u22917_text" class="text ">
- <p><span>计费方式</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22918" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22702.svg" id="u22918_img" class="img generatedImage" viewbox="224 0 122 30">
- <path d="M 1 1 L 122 1 L 122 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 224 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 224 0 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 0 )" class="stroke" />
- </svg>
- <div id="u22918_text" class="text ">
- <p><span>开始日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22919" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22703.svg" id="u22919_img" class="img generatedImage" viewbox="346 0 122 30">
- <path d="M 1 1 L 122 1 L 122 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 346 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 346 0 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 0 )" class="stroke" />
- </svg>
- <div id="u22919_text" class="text ">
- <p><span>结束日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22920" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22704.svg" id="u22920_img" class="img generatedImage" viewbox="468 0 104 30">
- <path d="M 1 1 L 104 1 L 104 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 468 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 468 0 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 0 )" class="stroke" />
- </svg>
- <div id="u22920_text" class="text ">
- <p><span>金额</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22921" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22705.svg" id="u22921_img" class="img generatedImage" viewbox="572 0 115 30">
- <path d="M 1 1 L 115 1 L 115 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 572 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 572 0 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 0 )" class="stroke" />
- </svg>
- <div id="u22921_text" class="text ">
- <p><span>收费对象类型</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22922" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22706.svg" id="u22922_img" class="img generatedImage" viewbox="687 0 115 30">
- <path d="M 1 1 L 115 1 L 115 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 687 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 687 0 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 0 )" class="stroke" />
- </svg>
- <div id="u22922_text" class="text ">
- <p><span>收费对象</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22923" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22707.svg" id="u22923_img" class="img generatedImage" viewbox="802 0 113 30">
- <path d="M 1 1 L 112 1 L 112 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 802 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 802 0 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 0 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 0 )" class="stroke" />
- </svg>
- <div id="u22923_text" class="text ">
- <p><span>收费状态</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22924" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22708.svg" id="u22924_img" class="img generatedImage" viewbox="0 30 102 30">
- <path d="M 1 1 L 102 1 L 102 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 30 )" 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 30 )" class="stroke" />
- <path d="M 0 0.5 L 102 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="u22924_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22925" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22709.svg" id="u22925_img" class="img generatedImage" viewbox="102 30 122 30">
- <path d="M 1 1 L 122 1 L 122 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 102 30 )" 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 102 30 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 30 )" class="stroke" />
- </svg>
- <div id="u22925_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22926" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22710.svg" id="u22926_img" class="img generatedImage" viewbox="224 30 122 30">
- <path d="M 1 1 L 122 1 L 122 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 224 30 )" 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 224 30 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 30 )" class="stroke" />
- </svg>
- <div id="u22926_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22927" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22711.svg" id="u22927_img" class="img generatedImage" viewbox="346 30 122 30">
- <path d="M 1 1 L 122 1 L 122 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 346 30 )" 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 346 30 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 30 )" class="stroke" />
- </svg>
- <div id="u22927_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22928" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22712.svg" id="u22928_img" class="img generatedImage" viewbox="468 30 104 30">
- <path d="M 1 1 L 104 1 L 104 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 468 30 )" 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 468 30 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 30 )" class="stroke" />
- </svg>
- <div id="u22928_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22929" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22713.svg" id="u22929_img" class="img generatedImage" viewbox="572 30 115 30">
- <path d="M 1 1 L 115 1 L 115 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 572 30 )" 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 572 30 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 30 )" class="stroke" />
- </svg>
- <div id="u22929_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22930" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22714.svg" id="u22930_img" class="img generatedImage" viewbox="687 30 115 30">
- <path d="M 1 1 L 115 1 L 115 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 687 30 )" 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 687 30 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 30 )" class="stroke" />
- </svg>
- <div id="u22930_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22931" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22715.svg" id="u22931_img" class="img generatedImage" viewbox="802 30 113 30">
- <path d="M 1 1 L 112 1 L 112 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 802 30 )" 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 802 30 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 30 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 30 )" class="stroke" />
- </svg>
- <div id="u22931_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22932" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22716.svg" id="u22932_img" class="img generatedImage" viewbox="0 60 102 30">
- <path d="M 1 1 L 102 1 L 102 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 60 )" 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 60 )" class="stroke" />
- <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 60 )" class="stroke" />
- </svg>
- <div id="u22932_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22933" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22717.svg" id="u22933_img" class="img generatedImage" viewbox="102 60 122 30">
- <path d="M 1 1 L 122 1 L 122 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 102 60 )" 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 102 60 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 60 )" class="stroke" />
- </svg>
- <div id="u22933_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22934" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22718.svg" id="u22934_img" class="img generatedImage" viewbox="224 60 122 30">
- <path d="M 1 1 L 122 1 L 122 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 224 60 )" 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 224 60 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 60 )" class="stroke" />
- </svg>
- <div id="u22934_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22935" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22719.svg" id="u22935_img" class="img generatedImage" viewbox="346 60 122 30">
- <path d="M 1 1 L 122 1 L 122 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 346 60 )" 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 346 60 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 60 )" class="stroke" />
- </svg>
- <div id="u22935_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22936" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22720.svg" id="u22936_img" class="img generatedImage" viewbox="468 60 104 30">
- <path d="M 1 1 L 104 1 L 104 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 468 60 )" 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 468 60 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 60 )" class="stroke" />
- </svg>
- <div id="u22936_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22937" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22721.svg" id="u22937_img" class="img generatedImage" viewbox="572 60 115 30">
- <path d="M 1 1 L 115 1 L 115 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 572 60 )" 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 572 60 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 60 )" class="stroke" />
- </svg>
- <div id="u22937_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22938" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22722.svg" id="u22938_img" class="img generatedImage" viewbox="687 60 115 30">
- <path d="M 1 1 L 115 1 L 115 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 687 60 )" 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 687 60 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 60 )" class="stroke" />
- </svg>
- <div id="u22938_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22939" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22723.svg" id="u22939_img" class="img generatedImage" viewbox="802 60 113 30">
- <path d="M 1 1 L 112 1 L 112 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 802 60 )" 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 802 60 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 60 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 60 )" class="stroke" />
- </svg>
- <div id="u22939_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22940" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22724.svg" id="u22940_img" class="img generatedImage" viewbox="0 90 102 30">
- <path d="M 1 1 L 102 1 L 102 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 90 )" 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 90 )" class="stroke" />
- <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 90 )" class="stroke" />
- </svg>
- <div id="u22940_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22941" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22725.svg" id="u22941_img" class="img generatedImage" viewbox="102 90 122 30">
- <path d="M 1 1 L 122 1 L 122 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 102 90 )" 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 102 90 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 90 )" class="stroke" />
- </svg>
- <div id="u22941_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22942" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22726.svg" id="u22942_img" class="img generatedImage" viewbox="224 90 122 30">
- <path d="M 1 1 L 122 1 L 122 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 224 90 )" 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 224 90 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 90 )" class="stroke" />
- </svg>
- <div id="u22942_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22943" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22727.svg" id="u22943_img" class="img generatedImage" viewbox="346 90 122 30">
- <path d="M 1 1 L 122 1 L 122 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 346 90 )" 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 346 90 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 90 )" class="stroke" />
- </svg>
- <div id="u22943_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22944" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22728.svg" id="u22944_img" class="img generatedImage" viewbox="468 90 104 30">
- <path d="M 1 1 L 104 1 L 104 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 468 90 )" 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 468 90 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 90 )" class="stroke" />
- </svg>
- <div id="u22944_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22945" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22729.svg" id="u22945_img" class="img generatedImage" viewbox="572 90 115 30">
- <path d="M 1 1 L 115 1 L 115 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 572 90 )" 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 572 90 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 90 )" class="stroke" />
- </svg>
- <div id="u22945_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22946" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22730.svg" id="u22946_img" class="img generatedImage" viewbox="687 90 115 30">
- <path d="M 1 1 L 115 1 L 115 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 687 90 )" 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 687 90 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 90 )" class="stroke" />
- </svg>
- <div id="u22946_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22947" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22731.svg" id="u22947_img" class="img generatedImage" viewbox="802 90 113 30">
- <path d="M 1 1 L 112 1 L 112 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 802 90 )" 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 802 90 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 90 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 90 )" class="stroke" />
- </svg>
- <div id="u22947_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22948" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22732.svg" id="u22948_img" class="img generatedImage" viewbox="0 120 102 30">
- <path d="M 1 1 L 102 1 L 102 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 120 )" 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 120 )" class="stroke" />
- <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 120 )" class="stroke" />
- </svg>
- <div id="u22948_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22949" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22733.svg" id="u22949_img" class="img generatedImage" viewbox="102 120 122 30">
- <path d="M 1 1 L 122 1 L 122 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 102 120 )" 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 102 120 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 120 )" class="stroke" />
- </svg>
- <div id="u22949_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22950" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22734.svg" id="u22950_img" class="img generatedImage" viewbox="224 120 122 30">
- <path d="M 1 1 L 122 1 L 122 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 224 120 )" 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 224 120 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 120 )" class="stroke" />
- </svg>
- <div id="u22950_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22951" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22735.svg" id="u22951_img" class="img generatedImage" viewbox="346 120 122 30">
- <path d="M 1 1 L 122 1 L 122 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 346 120 )" 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 346 120 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 120 )" class="stroke" />
- </svg>
- <div id="u22951_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22952" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22736.svg" id="u22952_img" class="img generatedImage" viewbox="468 120 104 30">
- <path d="M 1 1 L 104 1 L 104 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 468 120 )" 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 468 120 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 120 )" class="stroke" />
- </svg>
- <div id="u22952_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22953" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22737.svg" id="u22953_img" class="img generatedImage" viewbox="572 120 115 30">
- <path d="M 1 1 L 115 1 L 115 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 572 120 )" 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 572 120 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 120 )" class="stroke" />
- </svg>
- <div id="u22953_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22954" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22738.svg" id="u22954_img" class="img generatedImage" viewbox="687 120 115 30">
- <path d="M 1 1 L 115 1 L 115 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 687 120 )" 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 687 120 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 120 )" class="stroke" />
- </svg>
- <div id="u22954_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22955" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22739.svg" id="u22955_img" class="img generatedImage" viewbox="802 120 113 30">
- <path d="M 1 1 L 112 1 L 112 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 802 120 )" 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 802 120 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 120 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 120 )" class="stroke" />
- </svg>
- <div id="u22955_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22956" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22740.svg" id="u22956_img" class="img generatedImage" viewbox="0 150 102 30">
- <path d="M 1 1 L 102 1 L 102 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 0 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
- <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
- <path d="M 0 29.5 L 102 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
- </svg>
- <div id="u22956_text" class="text ">
- <p><span>总计</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22957" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22741.svg" id="u22957_img" class="img generatedImage" viewbox="102 150 122 30">
- <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 102 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
- <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
- </svg>
- <div id="u22957_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22958" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22742.svg" id="u22958_img" class="img generatedImage" viewbox="224 150 122 30">
- <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 224 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
- <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
- </svg>
- <div id="u22958_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22959" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22743.svg" id="u22959_img" class="img generatedImage" viewbox="346 150 122 30">
- <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 346 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
- <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
- </svg>
- <div id="u22959_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22960" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22744.svg" id="u22960_img" class="img generatedImage" viewbox="468 150 104 30">
- <path d="M 1 1 L 104 1 L 104 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 468 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
- <path d="M 0 29.5 L 104 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
- </svg>
- <div id="u22960_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22961" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22745.svg" id="u22961_img" class="img generatedImage" viewbox="572 150 115 30">
- <path d="M 1 1 L 115 1 L 115 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 572 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
- <path d="M 0 29.5 L 115 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
- </svg>
- <div id="u22961_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22962" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22746.svg" id="u22962_img" class="img generatedImage" viewbox="687 150 115 30">
- <path d="M 1 1 L 115 1 L 115 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 687 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
- <path d="M 0 29.5 L 115 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
- </svg>
- <div id="u22962_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22963" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22747.svg" id="u22963_img" class="img generatedImage" viewbox="802 150 113 30">
- <path d="M 1 1 L 112 1 L 112 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 802 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
- <path d="M 0 29.5 L 113 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
- </svg>
- <div id="u22963_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22964" class="ax_default paragraph transition">
- <div id="u22964_div" class=""></div>
- <div id="u22964_text" class="text ">
- <p><span>验收确认</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22965" class="ax_default paragraph transition">
- <div id="u22965_div" class=""></div>
- <div id="u22965_text" class="text ">
- <p><span>装修信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22966" class="ax_default paragraph transition">
- <div id="u22966_div" class=""></div>
- <div id="u22966_text" class="text ">
- <p><span>社区:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22967" class="ax_default paragraph transition">
- <div id="u22967_div" class=""></div>
- <div id="u22967_text" class="text ">
- <p><span>西安保利天汇社区</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22968" class="ax_default paragraph transition">
- <div id="u22968_div" class=""></div>
- <div id="u22968_text" class="text ">
- <p><span>房屋:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22969" class="ax_default paragraph transition">
- <div id="u22969_div" class=""></div>
- <div id="u22969_text" class="text ">
- <p><span>3栋A单元203</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22970" class="ax_default paragraph transition">
- <div id="u22970_div" class=""></div>
- <div id="u22970_text" class="text ">
- <p><span>建筑面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22971" class="ax_default paragraph transition">
- <div id="u22971_div" class=""></div>
- <div id="u22971_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22972" class="ax_default paragraph transition">
- <div id="u22972_div" class=""></div>
- <div id="u22972_text" class="text ">
- <p><span>套内面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22973" class="ax_default paragraph transition">
- <div id="u22973_div" class=""></div>
- <div id="u22973_text" class="text ">
- <p><span>225.08平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22974" class="ax_default paragraph transition">
- <div id="u22974_div" class=""></div>
- <div id="u22974_text" class="text ">
- <p><span>计费面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22975" class="ax_default paragraph transition">
- <div id="u22975_div" class=""></div>
- <div id="u22975_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22976" class="ax_default paragraph transition">
- <div id="u22976_div" class=""></div>
- <div id="u22976_text" class="text ">
- <p><span>业主名称:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22977" class="ax_default paragraph transition">
- <div id="u22977_div" class=""></div>
- <div id="u22977_text" class="text ">
- <p><span>张三</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22978" class="ax_default paragraph transition">
- <div id="u22978_div" class=""></div>
- <div id="u22978_text" class="text ">
- <p><span>开始时间;</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22979" class="ax_default paragraph transition">
- <div id="u22979_div" class=""></div>
- <div id="u22979_text" class="text ">
- <p><span>2025/07/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22980" class="ax_default paragraph transition">
- <div id="u22980_div" class=""></div>
- <div id="u22980_text" class="text ">
- <p><span>拟结束时间:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22981" class="ax_default paragraph transition">
- <div id="u22981_div" class=""></div>
- <div id="u22981_text" class="text ">
- <p><span>2025/09/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22982" class="ax_default paragraph transition">
- <div id="u22982_div" class=""></div>
- <div id="u22982_text" class="text ">
- <p><span>备注信息:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22983" class="ax_default paragraph transition">
- <div id="u22983_div" class=""></div>
- <div id="u22983_text" class="text ">
- <p><span>显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22984" class="ax_default paragraph transition">
- <div id="u22984_div" class=""></div>
- <div id="u22984_text" class="text ">
- <p><span>账单费用明细</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22985" class="ax_default paragraph transition">
- <div id="u22985_div" class=""></div>
- <div id="u22985_text" class="text ">
- <p><span>*是否退款:</span></p>
- </div>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u22986" class="ax_default radio_button selected">
- <label id="u22986_input_label" for="u22986_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u22986.svg" id="u22986_img" class="img " viewbox="2255 765 12 12">
- <path d="M 2261 765 C 2264.36 765 2267 767.64 2267 771 C 2267 774.36 2264.36 777 2261 777 C 2257.64 777 2255 774.36 2255 771 C 2255 767.64 2257.64 765 2261 765 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
- <path d="M 2261 765.5 C 2264.08 765.5 2266.5 767.92 2266.5 771 C 2266.5 774.08 2264.08 776.5 2261 776.5 C 2257.92 776.5 2255.5 774.08 2255.5 771 C 2255.5 767.92 2257.92 765.5 2261 765.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
- <path d="M 2261 774 C 2259.32 774 2258 772.68 2258 771 C 2258 769.32 2259.32 768 2261 768 C 2262.68 768 2264 769.32 2264 771 C 2264 772.68 2262.68 774 2261 774 " fill-rule="nonzero" fill="rgba(121, 121, 121, 1)" stroke="none" class="stroke btn_check" />
- </svg>
- <div id="u22986_text" class="text ">
- <p><span>是</span></p>
- </div>
- </label>
- <input id="u22986_input" type="radio" value="radio" name="u22986" checked/>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u22987" class="ax_default radio_button">
- <label id="u22987_input_label" for="u22987_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u22987.svg" id="u22987_img" class="img " viewbox="2388 765 12 12">
- <path d="M 2394 765 C 2397.36 765 2400 767.64 2400 771 C 2400 774.36 2397.36 777 2394 777 C 2390.64 777 2388 774.36 2388 771 C 2388 767.64 2390.64 765 2394 765 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
- <path d="M 2394 765.5 C 2397.08 765.5 2399.5 767.92 2399.5 771 C 2399.5 774.08 2397.08 776.5 2394 776.5 C 2390.92 776.5 2388.5 774.08 2388.5 771 C 2388.5 767.92 2390.92 765.5 2394 765.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
- <path d="M 2394 774 C 2392.32 774 2391 772.68 2391 771 C 2391 769.32 2392.32 768 2394 768 C 2395.68 768 2397 769.32 2397 771 C 2397 772.68 2395.68 774 2394 774 " fill-rule="nonzero" fill="rgba(121, 121, 121, 1)" stroke="none" class="stroke btn_check" />
- </svg>
- <div id="u22987_text" class="text ">
- <p><span>否</span></p>
- </div>
- </label>
- <input id="u22987_input" type="radio" value="radio" name="u22987"/>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22988" class="ax_default paragraph transition">
- <div id="u22988_div" class=""></div>
- <div id="u22988_text" class="text ">
- <p><span>完成验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22989" class="ax_default paragraph transition">
- <div id="u22989_div" class=""></div>
- <div id="u22989_text" class="text ">
- <p><span>验收说明:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u22990" class="ax_default" data-left="2249" data-top="1138" data-width="795" data-height="80" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u22991" class="ax_default shape transition">
- <div id="u22991_div" class=""></div>
- <div id="u22991_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u22992" class="ax_default text_field transition" data-label="选项内容">
- <div id="u22992_div" class=""></div>
- <input id="u22992_input" type="text" value="" class="u22992_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22993" class="ax_default paragraph transition">
- <div id="u22993_div" class=""></div>
- <div id="u22993_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22994" class="ax_default paragraph transition">
- <div id="u22994_div" class=""></div>
- <div id="u22994_text" class="text ">
- <p><span>+添加</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u22995" class="ax_default icon transition">
- <svg data="images/完成验收/u22795.svg" id="u22995_img" class="img generatedImage">
- <defs>
- <pattern id="u22995_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u22995_img_cl3767">
- <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -986 -795 )">
- <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " fill-rule="nonzero" fill="rgba(0, 0, 0, 1)" stroke="none" transform="matrix(1 0 0 1 986 795 )" class="fill" />
- <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 986 795 )" class="stroke" mask="url(#u22995_img_cl3767)" />
- <path d="M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 986 795 )" class="stroke" mask="url(#u22995_img_cl3767)" />
- </g>
- </svg>
- <div id="u22995_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22996" class="ax_default paragraph transition">
- <div id="u22996_div" class=""></div>
- <div id="u22996_text" class="text ">
- <p><span>*退款方式:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u22997" class="ax_default" data-left="2279" data-top="868" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u22998" class="ax_default box_1 transition">
- <div id="u22998_div" class=""></div>
- <div id="u22998_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u22999" class="ax_default droplist transition">
- <div id="u22999_div" class=""></div>
- <select id="u22999_input" class="u22999_input">
- <option class="u22999_input_option" value="选择付款方式">选择付款方式</option>
- <option class="u22999_input_option" value="转为预存款">转为预存款</option>
- <option class="u22999_input_option" value="线上原路返回">线上原路返回</option>
- <option class="u22999_input_option" selected value="支付宝转账">支付宝转账</option>
- <option class="u22999_input_option" value="微信转账">微信转账</option>
- <option class="u22999_input_option" value="银行卡转账">银行卡转账</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23000" class="ax_default paragraph transition">
- <div id="u23000_div" class=""></div>
- <div id="u23000_text" class="text ">
- <p><span>*退款项目:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23001" class="ax_default" data-left="2279" data-top="818" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23002" class="ax_default box_1 transition">
- <div id="u23002_div" class=""></div>
- <div id="u23002_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23003" class="ax_default droplist transition">
- <div id="u23003_div" class=""></div>
- <select id="u23003_input" class="u23003_input">
- <option class="u23003_input_option" value="室内清洁费">室内清洁费</option>
- <option class="u23003_input_option" value="小时计费">小时计费</option>
- <option class="u23003_input_option" value="指定">指定</option>
- <option class="u23003_input_option" value="合同-固定">合同-固定</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23004" class="ax_default paragraph transition">
- <div id="u23004_div" class=""></div>
- <div id="u23004_text" class="text ">
- <p><span>*退款金额:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23005" class="ax_default" data-left="2721" data-top="818" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23006" class="ax_default shape transition">
- <div id="u23006_div" class=""></div>
- <div id="u23006_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23007" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23007_div" class=""></div>
- <input id="u23007_input" type="text" value="" class="u23007_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23008" class="ax_default paragraph transition">
- <div id="u23008_div" class=""></div>
- <div id="u23008_text" class="text ">
- <p><span>*支付宝账号:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23009" class="ax_default paragraph transition">
- <div id="u23009_div" class=""></div>
- <div id="u23009_text" class="text ">
- <p><span>退款备注:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23010" class="ax_default" data-left="2279" data-top="1017" data-width="300" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23011" class="ax_default shape transition">
- <div id="u23011_div" class=""></div>
- <div id="u23011_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23012" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23012_div" class=""></div>
- <input id="u23012_input" type="text" value="" class="u23012_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23013" class="ax_default" data-left="2721" data-top="868" data-width="299" data-height="38" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23014" class="ax_default box_1 transition">
- <div id="u23014_div" class=""></div>
- <div id="u23014_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23015" class="ax_default label transition">
- <div id="u23015_div" class=""></div>
- <div id="u23015_text" class="text ">
- <p><span>2023/10/01 10:33</span></p>
- </div>
- </div>
- <!-- Unnamed (Image) -->
- <div id="u23016" class="ax_default image transition">
- <img id="u23016_img" class="img " src="images/新增房屋/u6205.png"/>
- <div id="u23016_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23017" class="ax_default paragraph transition">
- <div id="u23017_div" class=""></div>
- <div id="u23017_text" class="text ">
- <p><span>*退款时间:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23018" class="ax_default paragraph transition">
- <div id="u23018_div" class=""></div>
- <div id="u23018_text" class="text ">
- <p><span>*收款方:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23019" class="ax_default" data-left="2722" data-top="918" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23020" class="ax_default shape transition">
- <div id="u23020_div" class=""></div>
- <div id="u23020_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23021" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23021_div" class=""></div>
- <input id="u23021_input" type="text" value="" class="u23021_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23022" class="ax_default paragraph transition">
- <div id="u23022_div" class=""></div>
- <div id="u23022_text" class="text ">
- <p><span>*收款账号:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23023" class="ax_default" data-left="2279" data-top="967" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23024" class="ax_default shape transition">
- <div id="u23024_div" class=""></div>
- <div id="u23024_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23025" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23025_div" class=""></div>
- <input id="u23025_input" type="text" value="" class="u23025_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23026" class="ax_default" data-left="2280" data-top="918" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23027" class="ax_default box_1 transition">
- <div id="u23027_div" class=""></div>
- <div id="u23027_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23028" class="ax_default droplist transition">
- <div id="u23028_div" class=""></div>
- <select id="u23028_input" class="u23028_input">
- <option class="u23028_input_option" value="支付宝转账">支付宝转账</option>
- <option class="u23028_input_option" value="微信转账">微信转账</option>
- <option class="u23028_input_option" value="银行卡转账">银行卡转账</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23029" class="ax_default paragraph transition">
- <div id="u23029_div" class=""></div>
- <div id="u23029_text" class="text ">
- <p><span>*交易凭证:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23030" class="ax_default" data-left="2723" data-top="968" data-width="108" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23031" class="ax_default shape transition">
- <div id="u23031_div" class=""></div>
- <div id="u23031_text" class="text ">
- <p><span>+</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23032" class="ax_default paragraph transition">
- <div id="u23032_div" class=""></div>
- <div id="u23032_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23033" class="ax_default paragraph transition">
- <div id="u23033_div" class=""></div>
- <div id="u23033_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23034" class="ax_default paragraph transition">
- <div id="u23034_div" class=""></div>
- <div id="u23034_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23035" class="ax_default" data-left="4096" data-top="59" data-width="52" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23036" class="ax_default paragraph transition">
- <div id="u23036_div" class=""></div>
- <div id="u23036_text" class="text ">
- <p><span>x</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u23037" class="ax_default icon1 transition">
- <svg data="images/设置/u4554.svg" id="u23037_img" class="img generatedImage">
- <defs>
- <pattern id="u23037_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23037_img_cl2919">
- <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(#u23037_img_cl2919)" />
- <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(#u23037_img_cl2919)" />
- <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(#u23037_img_cl2919)" />
- </g>
- </svg>
- <div id="u23037_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23038" class="ax_default" data-left="3148" data-top="1253" data-width="1000" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23039" class="ax_default paragraph transition">
- <div id="u23039_div" class=""></div>
- <div id="u23039_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23040" class="ax_default box_1 transition">
- <div id="u23040_div" class=""></div>
- <div id="u23040_text" class="text ">
- <p><span>提交验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23041" class="ax_default box_1 transition">
- <div id="u23041_div" class=""></div>
- <div id="u23041_text" class="text ">
- <p><span>取消</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Table) -->
- <div id="u23042" class="ax_default">
- <!-- Unnamed (Table cell) -->
- <div id="u23043" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22700.svg" id="u23043_img" class="img generatedImage" viewbox="0 0 102 30">
- <path d="M 1 1 L 102 1 L 102 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 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" />
- </svg>
- <div id="u23043_text" class="text ">
- <p><span>收费标准名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23044" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22701.svg" id="u23044_img" class="img generatedImage" viewbox="102 0 122 30">
- <path d="M 1 1 L 122 1 L 122 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 102 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 102 0 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 0 )" class="stroke" />
- </svg>
- <div id="u23044_text" class="text ">
- <p><span>计费方式</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23045" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22702.svg" id="u23045_img" class="img generatedImage" viewbox="224 0 122 30">
- <path d="M 1 1 L 122 1 L 122 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 224 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 224 0 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 0 )" class="stroke" />
- </svg>
- <div id="u23045_text" class="text ">
- <p><span>开始日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23046" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22703.svg" id="u23046_img" class="img generatedImage" viewbox="346 0 122 30">
- <path d="M 1 1 L 122 1 L 122 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 346 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 346 0 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 0 )" class="stroke" />
- </svg>
- <div id="u23046_text" class="text ">
- <p><span>结束日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23047" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22704.svg" id="u23047_img" class="img generatedImage" viewbox="468 0 104 30">
- <path d="M 1 1 L 104 1 L 104 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 468 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 468 0 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 0 )" class="stroke" />
- </svg>
- <div id="u23047_text" class="text ">
- <p><span>金额</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23048" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22705.svg" id="u23048_img" class="img generatedImage" viewbox="572 0 115 30">
- <path d="M 1 1 L 115 1 L 115 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 572 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 572 0 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 0 )" class="stroke" />
- </svg>
- <div id="u23048_text" class="text ">
- <p><span>收费对象类型</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23049" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22706.svg" id="u23049_img" class="img generatedImage" viewbox="687 0 115 30">
- <path d="M 1 1 L 115 1 L 115 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 687 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 687 0 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 0 )" class="stroke" />
- </svg>
- <div id="u23049_text" class="text ">
- <p><span>收费对象</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23050" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22707.svg" id="u23050_img" class="img generatedImage" viewbox="802 0 113 30">
- <path d="M 1 1 L 112 1 L 112 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 802 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 802 0 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 0 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 0 )" class="stroke" />
- </svg>
- <div id="u23050_text" class="text ">
- <p><span>收费状态</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23051" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22708.svg" id="u23051_img" class="img generatedImage" viewbox="0 30 102 30">
- <path d="M 1 1 L 102 1 L 102 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 30 )" 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 30 )" class="stroke" />
- <path d="M 0 0.5 L 102 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="u23051_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23052" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22709.svg" id="u23052_img" class="img generatedImage" viewbox="102 30 122 30">
- <path d="M 1 1 L 122 1 L 122 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 102 30 )" 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 102 30 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 30 )" class="stroke" />
- </svg>
- <div id="u23052_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23053" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22710.svg" id="u23053_img" class="img generatedImage" viewbox="224 30 122 30">
- <path d="M 1 1 L 122 1 L 122 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 224 30 )" 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 224 30 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 30 )" class="stroke" />
- </svg>
- <div id="u23053_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23054" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22711.svg" id="u23054_img" class="img generatedImage" viewbox="346 30 122 30">
- <path d="M 1 1 L 122 1 L 122 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 346 30 )" 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 346 30 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 30 )" class="stroke" />
- </svg>
- <div id="u23054_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23055" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22712.svg" id="u23055_img" class="img generatedImage" viewbox="468 30 104 30">
- <path d="M 1 1 L 104 1 L 104 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 468 30 )" 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 468 30 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 30 )" class="stroke" />
- </svg>
- <div id="u23055_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23056" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22713.svg" id="u23056_img" class="img generatedImage" viewbox="572 30 115 30">
- <path d="M 1 1 L 115 1 L 115 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 572 30 )" 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 572 30 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 30 )" class="stroke" />
- </svg>
- <div id="u23056_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23057" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22714.svg" id="u23057_img" class="img generatedImage" viewbox="687 30 115 30">
- <path d="M 1 1 L 115 1 L 115 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 687 30 )" 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 687 30 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 30 )" class="stroke" />
- </svg>
- <div id="u23057_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23058" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22715.svg" id="u23058_img" class="img generatedImage" viewbox="802 30 113 30">
- <path d="M 1 1 L 112 1 L 112 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 802 30 )" 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 802 30 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 30 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 30 )" class="stroke" />
- </svg>
- <div id="u23058_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23059" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22716.svg" id="u23059_img" class="img generatedImage" viewbox="0 60 102 30">
- <path d="M 1 1 L 102 1 L 102 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 60 )" 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 60 )" class="stroke" />
- <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 60 )" class="stroke" />
- </svg>
- <div id="u23059_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23060" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22717.svg" id="u23060_img" class="img generatedImage" viewbox="102 60 122 30">
- <path d="M 1 1 L 122 1 L 122 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 102 60 )" 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 102 60 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 60 )" class="stroke" />
- </svg>
- <div id="u23060_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23061" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22718.svg" id="u23061_img" class="img generatedImage" viewbox="224 60 122 30">
- <path d="M 1 1 L 122 1 L 122 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 224 60 )" 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 224 60 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 60 )" class="stroke" />
- </svg>
- <div id="u23061_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23062" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22719.svg" id="u23062_img" class="img generatedImage" viewbox="346 60 122 30">
- <path d="M 1 1 L 122 1 L 122 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 346 60 )" 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 346 60 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 60 )" class="stroke" />
- </svg>
- <div id="u23062_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23063" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22720.svg" id="u23063_img" class="img generatedImage" viewbox="468 60 104 30">
- <path d="M 1 1 L 104 1 L 104 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 468 60 )" 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 468 60 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 60 )" class="stroke" />
- </svg>
- <div id="u23063_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23064" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22721.svg" id="u23064_img" class="img generatedImage" viewbox="572 60 115 30">
- <path d="M 1 1 L 115 1 L 115 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 572 60 )" 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 572 60 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 60 )" class="stroke" />
- </svg>
- <div id="u23064_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23065" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22722.svg" id="u23065_img" class="img generatedImage" viewbox="687 60 115 30">
- <path d="M 1 1 L 115 1 L 115 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 687 60 )" 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 687 60 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 60 )" class="stroke" />
- </svg>
- <div id="u23065_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23066" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22723.svg" id="u23066_img" class="img generatedImage" viewbox="802 60 113 30">
- <path d="M 1 1 L 112 1 L 112 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 802 60 )" 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 802 60 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 60 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 60 )" class="stroke" />
- </svg>
- <div id="u23066_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23067" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22724.svg" id="u23067_img" class="img generatedImage" viewbox="0 90 102 30">
- <path d="M 1 1 L 102 1 L 102 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 90 )" 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 90 )" class="stroke" />
- <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 90 )" class="stroke" />
- </svg>
- <div id="u23067_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23068" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22725.svg" id="u23068_img" class="img generatedImage" viewbox="102 90 122 30">
- <path d="M 1 1 L 122 1 L 122 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 102 90 )" 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 102 90 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 90 )" class="stroke" />
- </svg>
- <div id="u23068_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23069" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22726.svg" id="u23069_img" class="img generatedImage" viewbox="224 90 122 30">
- <path d="M 1 1 L 122 1 L 122 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 224 90 )" 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 224 90 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 90 )" class="stroke" />
- </svg>
- <div id="u23069_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23070" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22727.svg" id="u23070_img" class="img generatedImage" viewbox="346 90 122 30">
- <path d="M 1 1 L 122 1 L 122 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 346 90 )" 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 346 90 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 90 )" class="stroke" />
- </svg>
- <div id="u23070_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23071" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22728.svg" id="u23071_img" class="img generatedImage" viewbox="468 90 104 30">
- <path d="M 1 1 L 104 1 L 104 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 468 90 )" 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 468 90 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 90 )" class="stroke" />
- </svg>
- <div id="u23071_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23072" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22729.svg" id="u23072_img" class="img generatedImage" viewbox="572 90 115 30">
- <path d="M 1 1 L 115 1 L 115 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 572 90 )" 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 572 90 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 90 )" class="stroke" />
- </svg>
- <div id="u23072_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23073" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22730.svg" id="u23073_img" class="img generatedImage" viewbox="687 90 115 30">
- <path d="M 1 1 L 115 1 L 115 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 687 90 )" 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 687 90 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 90 )" class="stroke" />
- </svg>
- <div id="u23073_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23074" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22731.svg" id="u23074_img" class="img generatedImage" viewbox="802 90 113 30">
- <path d="M 1 1 L 112 1 L 112 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 802 90 )" 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 802 90 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 90 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 90 )" class="stroke" />
- </svg>
- <div id="u23074_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23075" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22732.svg" id="u23075_img" class="img generatedImage" viewbox="0 120 102 30">
- <path d="M 1 1 L 102 1 L 102 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 120 )" 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 120 )" class="stroke" />
- <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 120 )" class="stroke" />
- </svg>
- <div id="u23075_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23076" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22733.svg" id="u23076_img" class="img generatedImage" viewbox="102 120 122 30">
- <path d="M 1 1 L 122 1 L 122 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 102 120 )" 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 102 120 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 120 )" class="stroke" />
- </svg>
- <div id="u23076_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23077" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22734.svg" id="u23077_img" class="img generatedImage" viewbox="224 120 122 30">
- <path d="M 1 1 L 122 1 L 122 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 224 120 )" 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 224 120 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 120 )" class="stroke" />
- </svg>
- <div id="u23077_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23078" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22735.svg" id="u23078_img" class="img generatedImage" viewbox="346 120 122 30">
- <path d="M 1 1 L 122 1 L 122 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 346 120 )" 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 346 120 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 120 )" class="stroke" />
- </svg>
- <div id="u23078_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23079" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22736.svg" id="u23079_img" class="img generatedImage" viewbox="468 120 104 30">
- <path d="M 1 1 L 104 1 L 104 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 468 120 )" 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 468 120 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 120 )" class="stroke" />
- </svg>
- <div id="u23079_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23080" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22737.svg" id="u23080_img" class="img generatedImage" viewbox="572 120 115 30">
- <path d="M 1 1 L 115 1 L 115 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 572 120 )" 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 572 120 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 120 )" class="stroke" />
- </svg>
- <div id="u23080_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23081" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22738.svg" id="u23081_img" class="img generatedImage" viewbox="687 120 115 30">
- <path d="M 1 1 L 115 1 L 115 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 687 120 )" 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 687 120 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 120 )" class="stroke" />
- </svg>
- <div id="u23081_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23082" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22739.svg" id="u23082_img" class="img generatedImage" viewbox="802 120 113 30">
- <path d="M 1 1 L 112 1 L 112 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 802 120 )" 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 802 120 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 120 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 30 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 120 )" class="stroke" />
- </svg>
- <div id="u23082_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23083" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22740.svg" id="u23083_img" class="img generatedImage" viewbox="0 150 102 30">
- <path d="M 1 1 L 102 1 L 102 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 0 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
- <path d="M 0 0.5 L 102 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
- <path d="M 0 29.5 L 102 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 0 150 )" class="stroke" />
- </svg>
- <div id="u23083_text" class="text ">
- <p><span>总计</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23084" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22741.svg" id="u23084_img" class="img generatedImage" viewbox="102 150 122 30">
- <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 102 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
- <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 102 150 )" class="stroke" />
- </svg>
- <div id="u23084_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23085" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22742.svg" id="u23085_img" class="img generatedImage" viewbox="224 150 122 30">
- <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 224 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
- <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 224 150 )" class="stroke" />
- </svg>
- <div id="u23085_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23086" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22743.svg" id="u23086_img" class="img generatedImage" viewbox="346 150 122 30">
- <path d="M 1 1 L 122 1 L 122 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 346 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
- <path d="M 0 0.5 L 122 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
- <path d="M 0 29.5 L 122 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 346 150 )" class="stroke" />
- </svg>
- <div id="u23086_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23087" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22744.svg" id="u23087_img" class="img generatedImage" viewbox="468 150 104 30">
- <path d="M 1 1 L 104 1 L 104 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 468 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
- <path d="M 0 0.5 L 104 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
- <path d="M 0 29.5 L 104 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 468 150 )" class="stroke" />
- </svg>
- <div id="u23087_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23088" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22745.svg" id="u23088_img" class="img generatedImage" viewbox="572 150 115 30">
- <path d="M 1 1 L 115 1 L 115 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 572 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
- <path d="M 0 29.5 L 115 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 572 150 )" class="stroke" />
- </svg>
- <div id="u23088_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23089" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22746.svg" id="u23089_img" class="img generatedImage" viewbox="687 150 115 30">
- <path d="M 1 1 L 115 1 L 115 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 687 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
- <path d="M 0 0.5 L 115 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
- <path d="M 0 29.5 L 115 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 687 150 )" class="stroke" />
- </svg>
- <div id="u23089_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23090" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22747.svg" id="u23090_img" class="img generatedImage" viewbox="802 150 113 30">
- <path d="M 1 1 L 112 1 L 112 29 L 1 29 L 1 1 Z " fill-rule="nonzero" fill="rgba(242, 242, 242, 1)" stroke="none" transform="matrix(1 0 0 1 802 150 )" class="fill" />
- <path d="M 0.5 1 L 0.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
- <path d="M 0 0.5 L 113 0.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
- <path d="M 112.5 1 L 112.5 29 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
- <path d="M 0 29.5 L 113 29.5 " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" transform="matrix(1 0 0 1 802 150 )" class="stroke" />
- </svg>
- <div id="u23090_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23091" class="ax_default paragraph transition">
- <div id="u23091_div" class=""></div>
- <div id="u23091_text" class="text ">
- <p><span>验收确认</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23092" class="ax_default paragraph transition">
- <div id="u23092_div" class=""></div>
- <div id="u23092_text" class="text ">
- <p><span>装修信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23093" class="ax_default paragraph transition">
- <div id="u23093_div" class=""></div>
- <div id="u23093_text" class="text ">
- <p><span>社区:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23094" class="ax_default paragraph transition">
- <div id="u23094_div" class=""></div>
- <div id="u23094_text" class="text ">
- <p><span>西安保利天汇社区</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23095" class="ax_default paragraph transition">
- <div id="u23095_div" class=""></div>
- <div id="u23095_text" class="text ">
- <p><span>房屋:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23096" class="ax_default paragraph transition">
- <div id="u23096_div" class=""></div>
- <div id="u23096_text" class="text ">
- <p><span>3栋A单元203</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23097" class="ax_default paragraph transition">
- <div id="u23097_div" class=""></div>
- <div id="u23097_text" class="text ">
- <p><span>建筑面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23098" class="ax_default paragraph transition">
- <div id="u23098_div" class=""></div>
- <div id="u23098_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23099" class="ax_default paragraph transition">
- <div id="u23099_div" class=""></div>
- <div id="u23099_text" class="text ">
- <p><span>套内面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23100" class="ax_default paragraph transition">
- <div id="u23100_div" class=""></div>
- <div id="u23100_text" class="text ">
- <p><span>225.08平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23101" class="ax_default paragraph transition">
- <div id="u23101_div" class=""></div>
- <div id="u23101_text" class="text ">
- <p><span>计费面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23102" class="ax_default paragraph transition">
- <div id="u23102_div" class=""></div>
- <div id="u23102_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23103" class="ax_default paragraph transition">
- <div id="u23103_div" class=""></div>
- <div id="u23103_text" class="text ">
- <p><span>业主名称:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23104" class="ax_default paragraph transition">
- <div id="u23104_div" class=""></div>
- <div id="u23104_text" class="text ">
- <p><span>张三</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23105" class="ax_default paragraph transition">
- <div id="u23105_div" class=""></div>
- <div id="u23105_text" class="text ">
- <p><span>开始时间;</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23106" class="ax_default paragraph transition">
- <div id="u23106_div" class=""></div>
- <div id="u23106_text" class="text ">
- <p><span>2025/07/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23107" class="ax_default paragraph transition">
- <div id="u23107_div" class=""></div>
- <div id="u23107_text" class="text ">
- <p><span>拟结束时间:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23108" class="ax_default paragraph transition">
- <div id="u23108_div" class=""></div>
- <div id="u23108_text" class="text ">
- <p><span>2025/09/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23109" class="ax_default paragraph transition">
- <div id="u23109_div" class=""></div>
- <div id="u23109_text" class="text ">
- <p><span>备注信息:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23110" class="ax_default paragraph transition">
- <div id="u23110_div" class=""></div>
- <div id="u23110_text" class="text ">
- <p><span>显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23111" class="ax_default paragraph transition">
- <div id="u23111_div" class=""></div>
- <div id="u23111_text" class="text ">
- <p><span>账单费用明细</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23112" class="ax_default paragraph transition">
- <div id="u23112_div" class=""></div>
- <div id="u23112_text" class="text ">
- <p><span>*是否退款:</span></p>
- </div>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u23113" class="ax_default radio_button selected">
- <label id="u23113_input_label" for="u23113_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u23113.svg" id="u23113_img" class="img " viewbox="3275 765 12 12">
- <path d="M 3281 765 C 3284.36 765 3287 767.64 3287 771 C 3287 774.36 3284.36 777 3281 777 C 3277.64 777 3275 774.36 3275 771 C 3275 767.64 3277.64 765 3281 765 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
- <path d="M 3281 765.5 C 3284.08 765.5 3286.5 767.92 3286.5 771 C 3286.5 774.08 3284.08 776.5 3281 776.5 C 3277.92 776.5 3275.5 774.08 3275.5 771 C 3275.5 767.92 3277.92 765.5 3281 765.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
- <path d="M 3281 774 C 3279.32 774 3278 772.68 3278 771 C 3278 769.32 3279.32 768 3281 768 C 3282.68 768 3284 769.32 3284 771 C 3284 772.68 3282.68 774 3281 774 " fill-rule="nonzero" fill="rgba(121, 121, 121, 1)" stroke="none" class="stroke btn_check" />
- </svg>
- <div id="u23113_text" class="text ">
- <p><span>是</span></p>
- </div>
- </label>
- <input id="u23113_input" type="radio" value="radio" name="u23113" checked/>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u23114" class="ax_default radio_button">
- <label id="u23114_input_label" for="u23114_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u23114.svg" id="u23114_img" class="img " viewbox="3408 765 12 12">
- <path d="M 3414 765 C 3417.36 765 3420 767.64 3420 771 C 3420 774.36 3417.36 777 3414 777 C 3410.64 777 3408 774.36 3408 771 C 3408 767.64 3410.64 765 3414 765 Z " fill-rule="nonzero" fill="rgba(255, 255, 255, 1)" stroke="none" class="fill" />
- <path d="M 3414 765.5 C 3417.08 765.5 3419.5 767.92 3419.5 771 C 3419.5 774.08 3417.08 776.5 3414 776.5 C 3410.92 776.5 3408.5 774.08 3408.5 771 C 3408.5 767.92 3410.92 765.5 3414 765.5 Z " stroke-width="1" stroke-dasharray="0" stroke="rgba(121, 121, 121, 1)" fill="none" class="stroke" stroke-dashoffset="0.5" />
- <path d="M 3414 774 C 3412.32 774 3411 772.68 3411 771 C 3411 769.32 3412.32 768 3414 768 C 3415.68 768 3417 769.32 3417 771 C 3417 772.68 3415.68 774 3414 774 " fill-rule="nonzero" fill="rgba(121, 121, 121, 1)" stroke="none" class="stroke btn_check" />
- </svg>
- <div id="u23114_text" class="text ">
- <p><span>否</span></p>
- </div>
- </label>
- <input id="u23114_input" type="radio" value="radio" name="u23114"/>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23115" class="ax_default paragraph transition">
- <div id="u23115_div" class=""></div>
- <div id="u23115_text" class="text ">
- <p><span>完成验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23116" class="ax_default paragraph transition">
- <div id="u23116_div" class=""></div>
- <div id="u23116_text" class="text ">
- <p><span>验收说明:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23117" class="ax_default" data-left="3269" data-top="1138" data-width="795" data-height="80" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23118" class="ax_default shape transition">
- <div id="u23118_div" class=""></div>
- <div id="u23118_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23119" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23119_div" class=""></div>
- <input id="u23119_input" type="text" value="" class="u23119_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23120" class="ax_default paragraph transition">
- <div id="u23120_div" class=""></div>
- <div id="u23120_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23121" class="ax_default paragraph transition">
- <div id="u23121_div" class=""></div>
- <div id="u23121_text" class="text ">
- <p><span>+添加</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u23122" class="ax_default icon transition">
- <svg data="images/完成验收/u22795.svg" id="u23122_img" class="img generatedImage">
- <defs>
- <pattern id="u23122_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23122_img_cl3767">
- <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -986 -795 )">
- <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " fill-rule="nonzero" fill="rgba(0, 0, 0, 1)" stroke="none" transform="matrix(1 0 0 1 986 795 )" class="fill" />
- <path d="M 17.923828125 13.132161458333336 C 18.11349826388889 12.942491319444443 18.208333333333332 12.717881944444443 18.208333333333332 12.458333333333336 L 18.208333333333332 10.541666666666668 C 18.208333333333332 10.282118055555554 18.11349826388889 10.057508680555554 17.923828125 9.867838541666668 C 17.734157986111114 9.678168402777779 17.509548611111114 9.583333333333332 17.25 10 L 5.75 10 C 5.490451388888889 9.583333333333332 5.265842013888889 9.678168402777779 5.076171875 9.867838541666668 C 4.886501736111112 10.057508680555554 4.791666666666667 10.282118055555554 4.791666666666667 10.541666666666668 L 4.791666666666667 12.458333333333336 C 4.791666666666667 12.717881944444443 4.886501736111112 12.942491319444443 5.076171875 13.132161458333336 C 5.265842013888889 13.321831597222221 5.490451388888889 13.416666666666664 5.75 13 L 17.25 13 C 17.509548611111114 13.416666666666664 17.734157986111114 13.321831597222221 17.923828125 13.132161458333336 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 986 795 )" class="stroke" mask="url(#u23122_img_cl3767)" />
- <path d="M 21.457682291666668 5.7275390625 C 22.485894097222218 7.489474826388887 23 9.41362847222222 23 11.5 C 23 13.586371527777779 22.485894097222218 15.510525173611109 21.457682291666668 17.2724609375 C 20.429470486111114 19.03439670138889 19.03439670138889 20.42947048611111 17.2724609375 21.457682291666668 C 15.510525173611114 22.485894097222225 13.586371527777779 23 11.5 23 C 9.413628472222223 23 7.489474826388889 22.485894097222225 5.7275390625 21.457682291666668 C 3.9656032986111116 20.42947048611111 2.5705295138888893 19.03439670138889 1.5423177083333335 17.2724609375 C 0.5141059027777777 15.510525173611109 0 13.586371527777779 0 11.5 C 0 9.41362847222222 0.5141059027777777 7.489474826388887 1.5423177083333335 5.7275390625 C 2.5705295138888893 3.9656032986111107 3.9656032986111116 2.5705295138888866 5.7275390625 1.5423177083333326 C 7.489474826388889 0.5141059027777758 9.413628472222223 0 11.5 0 C 13.586371527777779 0 15.510525173611114 0.5141059027777758 17.2724609375 1.5423177083333326 C 19.03439670138889 2.5705295138888866 20.429470486111114 3.9656032986111107 21.457682291666668 5.7275390625 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 986 795 )" class="stroke" mask="url(#u23122_img_cl3767)" />
- </g>
- </svg>
- <div id="u23122_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23123" class="ax_default paragraph transition">
- <div id="u23123_div" class=""></div>
- <div id="u23123_text" class="text ">
- <p><span>*退款方式:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23124" class="ax_default" data-left="3295" data-top="868" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23125" class="ax_default box_1 transition">
- <div id="u23125_div" class=""></div>
- <div id="u23125_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23126" class="ax_default droplist transition">
- <div id="u23126_div" class=""></div>
- <select id="u23126_input" class="u23126_input">
- <option class="u23126_input_option" value="选择付款方式">选择付款方式</option>
- <option class="u23126_input_option" value="转为预存款">转为预存款</option>
- <option class="u23126_input_option" value="线上原路返回">线上原路返回</option>
- <option class="u23126_input_option" selected value="线下银行卡转账">线下银行卡转账</option>
- <option class="u23126_input_option" value="线下第三方转账">线下第三方转账</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23127" class="ax_default paragraph transition">
- <div id="u23127_div" class=""></div>
- <div id="u23127_text" class="text ">
- <p><span>*退款项目:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23128" class="ax_default" data-left="3295" data-top="818" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23129" class="ax_default box_1 transition">
- <div id="u23129_div" class=""></div>
- <div id="u23129_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23130" class="ax_default droplist transition">
- <div id="u23130_div" class=""></div>
- <select id="u23130_input" class="u23130_input">
- <option class="u23130_input_option" value="室内清洁费">室内清洁费</option>
- <option class="u23130_input_option" value="小时计费">小时计费</option>
- <option class="u23130_input_option" value="指定">指定</option>
- <option class="u23130_input_option" value="合同-固定">合同-固定</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23131" class="ax_default paragraph transition">
- <div id="u23131_div" class=""></div>
- <div id="u23131_text" class="text ">
- <p><span>*退款金额:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23132" class="ax_default" data-left="3737" data-top="818" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23133" class="ax_default shape transition">
- <div id="u23133_div" class=""></div>
- <div id="u23133_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23134" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23134_div" class=""></div>
- <input id="u23134_input" type="text" value="" class="u23134_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23135" class="ax_default paragraph transition">
- <div id="u23135_div" class=""></div>
- <div id="u23135_text" class="text ">
- <p><span>*收款银行:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23136" class="ax_default paragraph transition">
- <div id="u23136_div" class=""></div>
- <div id="u23136_text" class="text ">
- <p><span>*退款账号:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23137" class="ax_default paragraph transition">
- <div id="u23137_div" class=""></div>
- <div id="u23137_text" class="text ">
- <p><span>退款备注:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23138" class="ax_default" data-left="3737" data-top="1017" data-width="300" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23139" class="ax_default shape transition">
- <div id="u23139_div" class=""></div>
- <div id="u23139_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23140" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23140_div" class=""></div>
- <input id="u23140_input" type="text" value="" class="u23140_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23141" class="ax_default" data-left="3737" data-top="868" data-width="299" data-height="38" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23142" class="ax_default box_1 transition">
- <div id="u23142_div" class=""></div>
- <div id="u23142_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23143" class="ax_default label transition">
- <div id="u23143_div" class=""></div>
- <div id="u23143_text" class="text ">
- <p><span>2023/10/01 10:33</span></p>
- </div>
- </div>
- <!-- Unnamed (Image) -->
- <div id="u23144" class="ax_default image transition">
- <img id="u23144_img" class="img " src="images/新增房屋/u6205.png"/>
- <div id="u23144_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23145" class="ax_default paragraph transition">
- <div id="u23145_div" class=""></div>
- <div id="u23145_text" class="text ">
- <p><span>*退款时间:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23146" class="ax_default paragraph transition">
- <div id="u23146_div" class=""></div>
- <div id="u23146_text" class="text ">
- <p><span>*收款方:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23147" class="ax_default" data-left="3295" data-top="967" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23148" class="ax_default shape transition">
- <div id="u23148_div" class=""></div>
- <div id="u23148_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23149" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23149_div" class=""></div>
- <input id="u23149_input" type="text" value="" class="u23149_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23150" class="ax_default paragraph transition">
- <div id="u23150_div" class=""></div>
- <div id="u23150_text" class="text ">
- <p><span>*收款账号:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23151" class="ax_default" data-left="3737" data-top="967" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23152" class="ax_default shape transition">
- <div id="u23152_div" class=""></div>
- <div id="u23152_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23153" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23153_div" class=""></div>
- <input id="u23153_input" type="text" value="" class="u23153_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23154" class="ax_default" data-left="3296" data-top="918" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23155" class="ax_default box_1 transition">
- <div id="u23155_div" class=""></div>
- <div id="u23155_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23156" class="ax_default droplist transition">
- <div id="u23156_div" class=""></div>
- <select id="u23156_input" class="u23156_input">
- <option class="u23156_input_option" value="请选择">请选择</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23157" class="ax_default paragraph transition">
- <div id="u23157_div" class=""></div>
- <div id="u23157_text" class="text ">
- <p><span>*交易凭证:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23158" class="ax_default" data-left="3295" data-top="1017" data-width="108" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23159" class="ax_default shape transition">
- <div id="u23159_div" class=""></div>
- <div id="u23159_text" class="text ">
- <p><span>+</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23160" class="ax_default" data-left="3738" data-top="918" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23161" class="ax_default box_1 transition">
- <div id="u23161_div" class=""></div>
- <div id="u23161_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23162" class="ax_default droplist transition">
- <div id="u23162_div" class=""></div>
- <select id="u23162_input" class="u23162_input">
- <option class="u23162_input_option" value="请选择">请选择</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23163" class="ax_default" data-left="689" data-top="908" data-width="380" data-height="164" layer-opacity="1">
- <!-- Unnamed (Group) -->
- <div id="u23164" class="ax_default" data-left="689" data-top="908" data-width="380" data-height="164" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23165" class="ax_default shape transition">
- <div id="u23165_div" class=""></div>
- <div id="u23165_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23166" class="ax_default paragraph transition">
- <div id="u23166_div" class=""></div>
- <div id="u23166_text" class="text ">
- <p><span>确定之后,房屋装修将结束,并根据设置自动完成退款处理。</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23167" class="ax_default paragraph transition">
- <div id="u23167_div" class=""></div>
- <div id="u23167_text" class="text ">
- <p><span>确定提交验收?</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23168" class="ax_default shape transition">
- <div id="u23168_div" class=""></div>
- <div id="u23168_text" class="text ">
- <p><span>确定</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23169" class="ax_default shape transition">
- <div id="u23169_div" class=""></div>
- <div id="u23169_text" class="text ">
- <p><span>取 消</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u23170" class="ax_default icon transition">
- <svg data="images/项目列表/u4791.svg" id="u23170_img" class="img generatedImage">
- <defs>
- <pattern id="u23170_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23170_img_cl2936">
- <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="evenodd" />
- </mask>
- </defs>
- <g transform="matrix(1 0 0 1 -1661 -842 )">
- <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " fill-rule="nonzero" fill="rgba(245, 154, 35, 1)" stroke="none" transform="matrix(1 0 0 1 1661 842 )" class="fill" />
- <path d="M 13.216145833333332 16.549479166666668 C 13.294270833333332 16.471354166666668 13.333333333333332 16.37152777777778 13.333333333333332 16.25 L 13.333333333333332 14.166666666666664 C 13.333333333333332 14.04513888888889 13.294270833333332 13.9453125 13.216145833333332 13.8671875 C 13.138020833333332 13.7890625 13.038194444444445 13.75 12.916666666666668 13.75 L 11.666666666666668 13.75 L 11.666666666666668 7.083333333333332 C 11.666666666666668 6.961805555555555 11.627604166666668 6.861979166666668 11.549479166666668 6.783854166666668 C 11.471354166666668 6.705729166666668 11.371527777777779 6.666666666666668 11.25 6.666666666666668 L 7.083333333333334 6.666666666666668 C 6.961805555555557 6.666666666666668 6.861979166666666 6.705729166666668 6.783854166666666 6.783854166666668 C 6.705729166666666 6.861979166666668 6.666666666666666 6.961805555555555 6.666666666666666 7.083333333333332 L 6.666666666666666 9.166666666666668 C 6.666666666666666 9.288194444444445 6.705729166666666 9.388020833333332 6.783854166666666 9.466145833333332 C 6.861979166666666 9.544270833333332 6.961805555555557 9.583333333333332 7.083333333333334 9.583333333333332 L 8.333333333333334 9.583333333333332 L 8.333333333333334 13.75 L 7.083333333333334 13.75 C 6.961805555555557 13.75 6.861979166666666 13.7890625 6.783854166666666 13.8671875 C 6.705729166666666 13.9453125 6.666666666666666 14.04513888888889 6.666666666666666 14.166666666666664 L 6.666666666666666 16.25 C 6.666666666666666 16.37152777777778 6.705729166666666 16.471354166666668 6.783854166666666 16.549479166666668 C 6.861979166666666 16.627604166666668 6.961805555555557 16.666666666666668 7.083333333333334 16.666666666666668 L 12.916666666666668 16.666666666666668 C 13.038194444444445 16.666666666666668 13.138020833333332 16.627604166666668 13.216145833333332 16.549479166666668 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u23170_img_cl2936)" />
- <path d="M 11.549479166666668 4.8828125 C 11.627604166666668 4.8046875 11.666666666666668 4.704861111111109 11.666666666666668 4.583333333333332 L 11.666666666666668 2.5 C 11.666666666666668 2.378472222222221 11.627604166666668 2.2786458333333326 11.549479166666668 2.2005208333333326 C 11.471354166666668 2.1223958333333326 11.371527777777779 2.0833333333333326 11.25 2.0833333333333326 L 8.75 2.0833333333333326 C 8.628472222222223 2.0833333333333326 8.528645833333334 2.1223958333333326 8.450520833333334 2.2005208333333326 C 8.372395833333334 2.2786458333333326 8.333333333333334 2.378472222222221 8.333333333333334 2.5 L 8.333333333333334 4.583333333333332 C 8.333333333333334 4.704861111111109 8.372395833333334 4.8046875 8.450520833333334 4.8828125 C 8.528645833333334 4.9609375 8.628472222222223 5 8.75 5 L 11.25 5 C 11.371527777777779 5 11.471354166666668 4.9609375 11.549479166666668 4.8828125 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u23170_img_cl2936)" />
- <path d="M 18.658854166666668 4.98046875 C 19.552951388888886 6.512586805555554 20 8.185763888888886 20 10 C 20 11.81423611111111 19.552951388888886 13.487413194444443 18.658854166666668 15.01953125 C 17.764756944444446 16.551649305555557 16.551649305555557 17.764756944444443 15.01953125 18.658854166666668 C 13.487413194444446 19.55295138888889 11.81423611111111 20 10 20 C 8.18576388888889 20 6.512586805555555 19.55295138888889 4.98046875 18.658854166666668 C 3.4483506944444446 17.764756944444443 2.235243055555556 16.551649305555557 1.3411458333333335 15.01953125 C 0.44704861111111105 13.487413194444443 0 11.81423611111111 0 10 C 0 8.185763888888886 0.44704861111111105 6.512586805555554 1.3411458333333335 4.98046875 C 2.235243055555556 3.448350694444444 3.4483506944444446 2.2352430555555536 4.98046875 1.3411458333333326 C 6.512586805555555 0.4470486111111094 8.18576388888889 0 10 0 C 11.81423611111111 0 13.487413194444446 0.4470486111111094 15.01953125 1.3411458333333326 C 16.551649305555557 2.2352430555555536 17.764756944444446 3.448350694444444 18.658854166666668 4.98046875 Z " stroke-width="0" stroke-dasharray="0" stroke="rgba(255, 255, 255, 0)" fill="none" transform="matrix(1 0 0 1 1661 842 )" class="stroke" mask="url(#u23170_img_cl2936)" />
- </g>
- </svg>
- <div id="u23170_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23171" class="ax_default paragraph transition">
- <div id="u23171_div" class=""></div>
- <div id="u23171_text" class="text ">
- <p><span>退款备注:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23172" class="ax_default" data-left="236" data-top="918" data-width="300" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23173" class="ax_default shape transition">
- <div id="u23173_div" class=""></div>
- <div id="u23173_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23174" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23174_div" class=""></div>
- <input id="u23174_input" type="text" value="" class="u23174_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23175" class="ax_default paragraph transition">
- <div id="u23175_div" class=""></div>
- <div id="u23175_text" class="text ">
- <p><span>退款备注:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23176" class="ax_default" data-left="1267" data-top="918" data-width="300" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23177" class="ax_default shape transition">
- <div id="u23177_div" class=""></div>
- <div id="u23177_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23178" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23178_div" class=""></div>
- <input id="u23178_input" type="text" value="" class="u23178_input"/>
- </div>
- </div>
- </div>
- <script src="resources/scripts/axure/ios.js"></script>
- </body>
- </html>
|