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="u23853" class="ax_default paragraph transition">
- <div id="u23853_div" class=""></div>
- <div id="u23853_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23854" class="ax_default paragraph transition">
- <div id="u23854_div" class=""></div>
- <div id="u23854_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23855" class="ax_default paragraph transition">
- <div id="u23855_div" class=""></div>
- <div id="u23855_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23856" class="ax_default" data-left="1036" data-top="59" data-width="52" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23857" class="ax_default paragraph transition">
- <div id="u23857_div" class=""></div>
- <div id="u23857_text" class="text ">
- <p><span>x</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u23858" class="ax_default icon1 transition">
- <svg data="images/设置/u4683.svg" id="u23858_img" class="img generatedImage">
- <defs>
- <pattern id="u23858_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23858_img_cl5482">
- <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(#u23858_img_cl5482)" />
- <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(#u23858_img_cl5482)" />
- <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(#u23858_img_cl5482)" />
- </g>
- </svg>
- <div id="u23858_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23859" class="ax_default" data-left="88" data-top="1253" data-width="1000" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23860" class="ax_default paragraph transition">
- <div id="u23860_div" class=""></div>
- <div id="u23860_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23861" class="ax_default box_1 transition">
- <div id="u23861_div" class=""></div>
- <div id="u23861_text" class="text ">
- <p><span>提交验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23862" class="ax_default box_1 transition">
- <div id="u23862_div" class=""></div>
- <div id="u23862_text" class="text ">
- <p><span>取消</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Table) -->
- <div id="u23863" class="ax_default">
- <!-- Unnamed (Table cell) -->
- <div id="u23864" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23864.svg" id="u23864_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="u23864_text" class="text ">
- <p><span>收费标准名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23865" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23865.svg" id="u23865_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="u23865_text" class="text ">
- <p><span>计费方式</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23866" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23866.svg" id="u23866_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="u23866_text" class="text ">
- <p><span>开始日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23867" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23867.svg" id="u23867_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="u23867_text" class="text ">
- <p><span>结束日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23868" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23868.svg" id="u23868_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="u23868_text" class="text ">
- <p><span>金额</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23869" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23869.svg" id="u23869_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="u23869_text" class="text ">
- <p><span>收费对象类型</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23870" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23870.svg" id="u23870_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="u23870_text" class="text ">
- <p><span>收费对象</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23871" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23871.svg" id="u23871_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="u23871_text" class="text ">
- <p><span>收费状态</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23872" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23872.svg" id="u23872_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="u23872_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23873" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23873.svg" id="u23873_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="u23873_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23874" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23874.svg" id="u23874_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="u23874_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23875" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23875.svg" id="u23875_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="u23875_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23876" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23876.svg" id="u23876_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="u23876_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23877" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23877.svg" id="u23877_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="u23877_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23878" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23878.svg" id="u23878_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="u23878_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23879" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23879.svg" id="u23879_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="u23879_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23880" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23880.svg" id="u23880_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="u23880_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23881" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23881.svg" id="u23881_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="u23881_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23882" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23882.svg" id="u23882_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="u23882_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23883" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23883.svg" id="u23883_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="u23883_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23884" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23884.svg" id="u23884_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="u23884_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23885" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23885.svg" id="u23885_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="u23885_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23886" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23886.svg" id="u23886_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="u23886_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23887" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23887.svg" id="u23887_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="u23887_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23888" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23888.svg" id="u23888_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="u23888_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23889" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23889.svg" id="u23889_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="u23889_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23890" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23890.svg" id="u23890_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="u23890_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23891" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23891.svg" id="u23891_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="u23891_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23892" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23892.svg" id="u23892_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="u23892_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23893" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23893.svg" id="u23893_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="u23893_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23894" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23894.svg" id="u23894_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="u23894_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23895" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23895.svg" id="u23895_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="u23895_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23896" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23896.svg" id="u23896_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="u23896_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23897" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23897.svg" id="u23897_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="u23897_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23898" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23898.svg" id="u23898_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="u23898_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23899" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23899.svg" id="u23899_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="u23899_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23900" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23900.svg" id="u23900_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="u23900_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23901" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23901.svg" id="u23901_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="u23901_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23902" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23902.svg" id="u23902_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="u23902_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23903" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23903.svg" id="u23903_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="u23903_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23904" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23904.svg" id="u23904_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="u23904_text" class="text ">
- <p><span>总计</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23905" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23905.svg" id="u23905_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="u23905_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23906" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23906.svg" id="u23906_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="u23906_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23907" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23907.svg" id="u23907_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="u23907_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23908" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23908.svg" id="u23908_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="u23908_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23909" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23909.svg" id="u23909_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="u23909_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23910" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23910.svg" id="u23910_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="u23910_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23911" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23911.svg" id="u23911_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="u23911_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23912" class="ax_default paragraph transition">
- <div id="u23912_div" class=""></div>
- <div id="u23912_text" class="text ">
- <p><span>验收确认</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23913" class="ax_default paragraph transition">
- <div id="u23913_div" class=""></div>
- <div id="u23913_text" class="text ">
- <p><span>装修信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23914" class="ax_default paragraph transition">
- <div id="u23914_div" class=""></div>
- <div id="u23914_text" class="text ">
- <p><span>项目:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23915" class="ax_default paragraph transition">
- <div id="u23915_div" class=""></div>
- <div id="u23915_text" class="text ">
- <p><span>西安保利天汇社区</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23916" class="ax_default paragraph transition">
- <div id="u23916_div" class=""></div>
- <div id="u23916_text" class="text ">
- <p><span>房屋:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23917" class="ax_default paragraph transition">
- <div id="u23917_div" class=""></div>
- <div id="u23917_text" class="text ">
- <p><span>3栋A单元203</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23918" class="ax_default paragraph transition">
- <div id="u23918_div" class=""></div>
- <div id="u23918_text" class="text ">
- <p><span>建筑面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23919" class="ax_default paragraph transition">
- <div id="u23919_div" class=""></div>
- <div id="u23919_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23920" class="ax_default paragraph transition">
- <div id="u23920_div" class=""></div>
- <div id="u23920_text" class="text ">
- <p><span>套内面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23921" class="ax_default paragraph transition">
- <div id="u23921_div" class=""></div>
- <div id="u23921_text" class="text ">
- <p><span>225.08平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23922" class="ax_default paragraph transition">
- <div id="u23922_div" class=""></div>
- <div id="u23922_text" class="text ">
- <p><span>计费面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23923" class="ax_default paragraph transition">
- <div id="u23923_div" class=""></div>
- <div id="u23923_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23924" class="ax_default paragraph transition">
- <div id="u23924_div" class=""></div>
- <div id="u23924_text" class="text ">
- <p><span>业主名称:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23925" class="ax_default paragraph transition">
- <div id="u23925_div" class=""></div>
- <div id="u23925_text" class="text ">
- <p><span>张三</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23926" class="ax_default paragraph transition">
- <div id="u23926_div" class=""></div>
- <div id="u23926_text" class="text ">
- <p><span>开始时间;</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23927" class="ax_default paragraph transition">
- <div id="u23927_div" class=""></div>
- <div id="u23927_text" class="text ">
- <p><span>2025/07/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23928" class="ax_default paragraph transition">
- <div id="u23928_div" class=""></div>
- <div id="u23928_text" class="text ">
- <p><span>拟结束时间:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23929" class="ax_default paragraph transition">
- <div id="u23929_div" class=""></div>
- <div id="u23929_text" class="text ">
- <p><span>2025/09/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23930" class="ax_default paragraph transition">
- <div id="u23930_div" class=""></div>
- <div id="u23930_text" class="text ">
- <p><span>备注信息:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23931" class="ax_default paragraph transition">
- <div id="u23931_div" class=""></div>
- <div id="u23931_text" class="text ">
- <p><span>显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23932" class="ax_default paragraph transition">
- <div id="u23932_div" class=""></div>
- <div id="u23932_text" class="text ">
- <p><span>账单费用明细</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23933" class="ax_default paragraph transition">
- <div id="u23933_div" class=""></div>
- <div id="u23933_text" class="text ">
- <p><span>*是否退款:</span></p>
- </div>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u23934" class="ax_default radio_button selected">
- <label id="u23934_input_label" for="u23934_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u23934.svg" id="u23934_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="u23934_text" class="text ">
- <p><span>是</span></p>
- </div>
- </label>
- <input id="u23934_input" type="radio" value="radio" name="u23934" checked/>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u23935" class="ax_default radio_button">
- <label id="u23935_input_label" for="u23935_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u23935.svg" id="u23935_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="u23935_text" class="text ">
- <p><span>否</span></p>
- </div>
- </label>
- <input id="u23935_input" type="radio" value="radio" name="u23935"/>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23936" class="ax_default paragraph transition">
- <div id="u23936_div" class=""></div>
- <div id="u23936_text" class="text ">
- <p><span>完成验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23937" class="ax_default paragraph transition">
- <div id="u23937_div" class=""></div>
- <div id="u23937_text" class="text ">
- <p><span>验收说明:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23938" class="ax_default" data-left="209" data-top="1010" data-width="795" data-height="80" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23939" class="ax_default shape transition">
- <div id="u23939_div" class=""></div>
- <div id="u23939_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23940" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23940_div" class=""></div>
- <input id="u23940_input" type="text" value="" class="u23940_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23941" class="ax_default paragraph transition">
- <div id="u23941_div" class=""></div>
- <div id="u23941_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23942" class="ax_default paragraph transition">
- <div id="u23942_div" class=""></div>
- <div id="u23942_text" class="text ">
- <p><span>*退款方式:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23943" class="ax_default" data-left="236" data-top="868" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23944" class="ax_default box_1 transition">
- <div id="u23944_div" class=""></div>
- <div id="u23944_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23945" class="ax_default droplist transition">
- <div id="u23945_div" class=""></div>
- <select id="u23945_input" class="u23945_input">
- <option class="u23945_input_option" value="选择付款方式">选择付款方式</option>
- <option class="u23945_input_option" selected value="转为预存款">转为预存款</option>
- <option class="u23945_input_option" value="线上原路返回">线上原路返回</option>
- <option class="u23945_input_option" value="线下银行卡转账">线下银行卡转账</option>
- <option class="u23945_input_option" value="线下第三方转账">线下第三方转账</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23946" class="ax_default paragraph transition">
- <div id="u23946_div" class=""></div>
- <div id="u23946_text" class="text ">
- <p><span>*退款项目:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23947" class="ax_default" data-left="236" data-top="818" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23948" class="ax_default box_1 transition">
- <div id="u23948_div" class=""></div>
- <div id="u23948_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23949" class="ax_default droplist transition">
- <div id="u23949_div" class=""></div>
- <select id="u23949_input" class="u23949_input">
- <option class="u23949_input_option" value="室内清洁费">室内清洁费</option>
- <option class="u23949_input_option" value="小时计费">小时计费</option>
- <option class="u23949_input_option" value="指定">指定</option>
- <option class="u23949_input_option" value="合同-固定">合同-固定</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23950" class="ax_default paragraph transition">
- <div id="u23950_div" class=""></div>
- <div id="u23950_text" class="text ">
- <p><span>*退款金额:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23951" class="ax_default" data-left="678" data-top="818" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23952" class="ax_default shape transition">
- <div id="u23952_div" class=""></div>
- <div id="u23952_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23953" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23953_div" class=""></div>
- <input id="u23953_input" type="text" value="" class="u23953_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23954" class="ax_default paragraph transition">
- <div id="u23954_div" class=""></div>
- <div id="u23954_text" class="text ">
- <p><span>*退回账户:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23955" class="ax_default" data-left="678" data-top="868" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23956" class="ax_default box_1 transition">
- <div id="u23956_div" class=""></div>
- <div id="u23956_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23957" class="ax_default droplist transition">
- <div id="u23957_div" class=""></div>
- <select id="u23957_input" class="u23957_input">
- <option class="u23957_input_option" value="请选择">请选择</option>
- <option class="u23957_input_option" value="通用预存账户">通用预存账户</option>
- <option class="u23957_input_option" value="物业服务账户">物业服务账户</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23958" class="ax_default paragraph transition">
- <div id="u23958_div" class=""></div>
- <div id="u23958_text" class="text ">
- <p><span>+添加</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u23959" class="ax_default icon transition">
- <svg data="images/完成验收/u23959.svg" id="u23959_img" class="img generatedImage">
- <defs>
- <pattern id="u23959_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23959_img_cl6383">
- <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(#u23959_img_cl6383)" />
- <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(#u23959_img_cl6383)" />
- </g>
- </svg>
- <div id="u23959_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23960" class="ax_default paragraph transition">
- <div id="u23960_div" class=""></div>
- <div id="u23960_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="u23961" class="ax_default paragraph transition">
- <div id="u23961_div" class=""></div>
- <div id="u23961_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23962" class="ax_default paragraph transition">
- <div id="u23962_div" class=""></div>
- <div id="u23962_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23963" class="ax_default paragraph transition">
- <div id="u23963_div" class=""></div>
- <div id="u23963_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23964" class="ax_default" data-left="2056" data-top="59" data-width="52" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23965" class="ax_default paragraph transition">
- <div id="u23965_div" class=""></div>
- <div id="u23965_text" class="text ">
- <p><span>x</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u23966" class="ax_default icon1 transition">
- <svg data="images/设置/u4683.svg" id="u23966_img" class="img generatedImage">
- <defs>
- <pattern id="u23966_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23966_img_cl5482">
- <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(#u23966_img_cl5482)" />
- <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(#u23966_img_cl5482)" />
- <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(#u23966_img_cl5482)" />
- </g>
- </svg>
- <div id="u23966_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23967" class="ax_default" data-left="1108" data-top="1253" data-width="1000" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23968" class="ax_default paragraph transition">
- <div id="u23968_div" class=""></div>
- <div id="u23968_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23969" class="ax_default box_1 transition">
- <div id="u23969_div" class=""></div>
- <div id="u23969_text" class="text ">
- <p><span>提交验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23970" class="ax_default box_1 transition">
- <div id="u23970_div" class=""></div>
- <div id="u23970_text" class="text ">
- <p><span>取消</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Table) -->
- <div id="u23971" class="ax_default">
- <!-- Unnamed (Table cell) -->
- <div id="u23972" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23864.svg" id="u23972_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="u23972_text" class="text ">
- <p><span>收费标准名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23973" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23865.svg" id="u23973_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="u23973_text" class="text ">
- <p><span>计费方式</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23974" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23866.svg" id="u23974_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="u23974_text" class="text ">
- <p><span>开始日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23975" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23867.svg" id="u23975_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="u23975_text" class="text ">
- <p><span>结束日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23976" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23868.svg" id="u23976_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="u23976_text" class="text ">
- <p><span>金额</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23977" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23869.svg" id="u23977_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="u23977_text" class="text ">
- <p><span>收费对象类型</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23978" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23870.svg" id="u23978_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="u23978_text" class="text ">
- <p><span>收费对象</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23979" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23871.svg" id="u23979_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="u23979_text" class="text ">
- <p><span>收费状态</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23980" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23872.svg" id="u23980_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="u23980_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23981" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23873.svg" id="u23981_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="u23981_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23982" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23874.svg" id="u23982_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="u23982_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23983" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23875.svg" id="u23983_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="u23983_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23984" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23876.svg" id="u23984_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="u23984_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23985" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23877.svg" id="u23985_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="u23985_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23986" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23878.svg" id="u23986_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="u23986_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23987" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23879.svg" id="u23987_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="u23987_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23988" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23880.svg" id="u23988_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="u23988_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23989" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23881.svg" id="u23989_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="u23989_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23990" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23882.svg" id="u23990_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="u23990_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23991" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23883.svg" id="u23991_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="u23991_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23992" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23884.svg" id="u23992_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="u23992_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23993" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23885.svg" id="u23993_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="u23993_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23994" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23886.svg" id="u23994_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="u23994_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23995" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23887.svg" id="u23995_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="u23995_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23996" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23888.svg" id="u23996_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="u23996_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23997" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23889.svg" id="u23997_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="u23997_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23998" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23890.svg" id="u23998_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="u23998_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23999" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23891.svg" id="u23999_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="u23999_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24000" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23892.svg" id="u24000_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="u24000_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24001" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23893.svg" id="u24001_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="u24001_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24002" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23894.svg" id="u24002_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="u24002_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24003" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23895.svg" id="u24003_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="u24003_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24004" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23896.svg" id="u24004_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="u24004_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24005" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23897.svg" id="u24005_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="u24005_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24006" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23898.svg" id="u24006_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="u24006_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24007" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23899.svg" id="u24007_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="u24007_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24008" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23900.svg" id="u24008_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="u24008_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24009" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23901.svg" id="u24009_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="u24009_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24010" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23902.svg" id="u24010_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="u24010_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24011" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23903.svg" id="u24011_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="u24011_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24012" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23904.svg" id="u24012_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="u24012_text" class="text ">
- <p><span>总计</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24013" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23905.svg" id="u24013_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="u24013_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24014" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23906.svg" id="u24014_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="u24014_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24015" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23907.svg" id="u24015_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="u24015_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24016" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23908.svg" id="u24016_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="u24016_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24017" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23909.svg" id="u24017_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="u24017_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24018" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23910.svg" id="u24018_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="u24018_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24019" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23911.svg" id="u24019_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="u24019_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24020" class="ax_default paragraph transition">
- <div id="u24020_div" class=""></div>
- <div id="u24020_text" class="text ">
- <p><span>验收确认</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24021" class="ax_default paragraph transition">
- <div id="u24021_div" class=""></div>
- <div id="u24021_text" class="text ">
- <p><span>装修信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24022" class="ax_default paragraph transition">
- <div id="u24022_div" class=""></div>
- <div id="u24022_text" class="text ">
- <p><span>项目:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24023" class="ax_default paragraph transition">
- <div id="u24023_div" class=""></div>
- <div id="u24023_text" class="text ">
- <p><span>西安保利天汇社区</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24024" class="ax_default paragraph transition">
- <div id="u24024_div" class=""></div>
- <div id="u24024_text" class="text ">
- <p><span>房屋:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24025" class="ax_default paragraph transition">
- <div id="u24025_div" class=""></div>
- <div id="u24025_text" class="text ">
- <p><span>3栋A单元203</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24026" class="ax_default paragraph transition">
- <div id="u24026_div" class=""></div>
- <div id="u24026_text" class="text ">
- <p><span>建筑面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24027" class="ax_default paragraph transition">
- <div id="u24027_div" class=""></div>
- <div id="u24027_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24028" class="ax_default paragraph transition">
- <div id="u24028_div" class=""></div>
- <div id="u24028_text" class="text ">
- <p><span>套内面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24029" class="ax_default paragraph transition">
- <div id="u24029_div" class=""></div>
- <div id="u24029_text" class="text ">
- <p><span>225.08平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24030" class="ax_default paragraph transition">
- <div id="u24030_div" class=""></div>
- <div id="u24030_text" class="text ">
- <p><span>计费面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24031" class="ax_default paragraph transition">
- <div id="u24031_div" class=""></div>
- <div id="u24031_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24032" class="ax_default paragraph transition">
- <div id="u24032_div" class=""></div>
- <div id="u24032_text" class="text ">
- <p><span>业主名称:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24033" class="ax_default paragraph transition">
- <div id="u24033_div" class=""></div>
- <div id="u24033_text" class="text ">
- <p><span>张三</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24034" class="ax_default paragraph transition">
- <div id="u24034_div" class=""></div>
- <div id="u24034_text" class="text ">
- <p><span>开始时间;</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24035" class="ax_default paragraph transition">
- <div id="u24035_div" class=""></div>
- <div id="u24035_text" class="text ">
- <p><span>2025/07/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24036" class="ax_default paragraph transition">
- <div id="u24036_div" class=""></div>
- <div id="u24036_text" class="text ">
- <p><span>拟结束时间:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24037" class="ax_default paragraph transition">
- <div id="u24037_div" class=""></div>
- <div id="u24037_text" class="text ">
- <p><span>2025/09/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24038" class="ax_default paragraph transition">
- <div id="u24038_div" class=""></div>
- <div id="u24038_text" class="text ">
- <p><span>备注信息:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24039" class="ax_default paragraph transition">
- <div id="u24039_div" class=""></div>
- <div id="u24039_text" class="text ">
- <p><span>显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24040" class="ax_default paragraph transition">
- <div id="u24040_div" class=""></div>
- <div id="u24040_text" class="text ">
- <p><span>账单费用明细</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24041" class="ax_default paragraph transition">
- <div id="u24041_div" class=""></div>
- <div id="u24041_text" class="text ">
- <p><span>*是否退款:</span></p>
- </div>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u24042" class="ax_default radio_button selected">
- <label id="u24042_input_label" for="u24042_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u24042.svg" id="u24042_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="u24042_text" class="text ">
- <p><span>是</span></p>
- </div>
- </label>
- <input id="u24042_input" type="radio" value="radio" name="u24042" checked/>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u24043" class="ax_default radio_button">
- <label id="u24043_input_label" for="u24043_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u24043.svg" id="u24043_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="u24043_text" class="text ">
- <p><span>否</span></p>
- </div>
- </label>
- <input id="u24043_input" type="radio" value="radio" name="u24043"/>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24044" class="ax_default paragraph transition">
- <div id="u24044_div" class=""></div>
- <div id="u24044_text" class="text ">
- <p><span>完成验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24045" class="ax_default paragraph transition">
- <div id="u24045_div" class=""></div>
- <div id="u24045_text" class="text ">
- <p><span>验收说明:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24046" class="ax_default" data-left="1229" data-top="1008" data-width="795" data-height="80" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24047" class="ax_default shape transition">
- <div id="u24047_div" class=""></div>
- <div id="u24047_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u24048" class="ax_default text_field transition" data-label="选项内容">
- <div id="u24048_div" class=""></div>
- <input id="u24048_input" type="text" value="" class="u24048_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24049" class="ax_default paragraph transition">
- <div id="u24049_div" class=""></div>
- <div id="u24049_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24050" class="ax_default paragraph transition">
- <div id="u24050_div" class=""></div>
- <div id="u24050_text" class="text ">
- <p><span>+添加</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u24051" class="ax_default icon transition">
- <svg data="images/完成验收/u23959.svg" id="u24051_img" class="img generatedImage">
- <defs>
- <pattern id="u24051_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u24051_img_cl6383">
- <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(#u24051_img_cl6383)" />
- <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(#u24051_img_cl6383)" />
- </g>
- </svg>
- <div id="u24051_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24052" class="ax_default paragraph transition">
- <div id="u24052_div" class=""></div>
- <div id="u24052_text" class="text ">
- <p><span>*退款方式:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24053" class="ax_default" data-left="1267" data-top="868" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24054" class="ax_default box_1 transition">
- <div id="u24054_div" class=""></div>
- <div id="u24054_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u24055" class="ax_default droplist transition">
- <div id="u24055_div" class=""></div>
- <select id="u24055_input" class="u24055_input">
- <option class="u24055_input_option" value="选择付款方式">选择付款方式</option>
- <option class="u24055_input_option" value="转为预存款">转为预存款</option>
- <option class="u24055_input_option" selected value="线上原路返回">线上原路返回</option>
- <option class="u24055_input_option" value="线下银行卡转账">线下银行卡转账</option>
- <option class="u24055_input_option" value="线下第三方转账">线下第三方转账</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24056" class="ax_default paragraph transition">
- <div id="u24056_div" class=""></div>
- <div id="u24056_text" class="text ">
- <p><span>*退款项目:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24057" class="ax_default" data-left="1267" data-top="818" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24058" class="ax_default box_1 transition">
- <div id="u24058_div" class=""></div>
- <div id="u24058_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u24059" class="ax_default droplist transition">
- <div id="u24059_div" class=""></div>
- <select id="u24059_input" class="u24059_input">
- <option class="u24059_input_option" value="室内清洁费">室内清洁费</option>
- <option class="u24059_input_option" value="小时计费">小时计费</option>
- <option class="u24059_input_option" value="指定">指定</option>
- <option class="u24059_input_option" value="合同-固定">合同-固定</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24060" class="ax_default paragraph transition">
- <div id="u24060_div" class=""></div>
- <div id="u24060_text" class="text ">
- <p><span>*退款金额:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24061" class="ax_default" data-left="1709" data-top="818" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24062" class="ax_default shape transition">
- <div id="u24062_div" class=""></div>
- <div id="u24062_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u24063" class="ax_default text_field transition" data-label="选项内容">
- <div id="u24063_div" class=""></div>
- <input id="u24063_input" type="text" value="" class="u24063_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24064" class="ax_default paragraph transition">
- <div id="u24064_div" class=""></div>
- <div id="u24064_text" class="text ">
- <p><span>*退回账户:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24065" class="ax_default" data-left="1709" data-top="868" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24066" class="ax_default shape transition">
- <div id="u24066_div" class=""></div>
- <div id="u24066_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u24067" class="ax_default text_field transition" data-label="选项内容">
- <div id="u24067_div" class=""></div>
- <input id="u24067_input" type="text" value="微信支付" class="u24067_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24068" class="ax_default paragraph transition">
- <div id="u24068_div" class=""></div>
- <div id="u24068_text" class="text ">
- <p><span>非线上缴费,不支持线上原路返回</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24069" class="ax_default paragraph transition">
- <div id="u24069_div" class=""></div>
- <div id="u24069_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24070" class="ax_default paragraph transition">
- <div id="u24070_div" class=""></div>
- <div id="u24070_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24071" class="ax_default paragraph transition">
- <div id="u24071_div" class=""></div>
- <div id="u24071_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24072" class="ax_default" data-left="3076" data-top="59" data-width="52" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24073" class="ax_default paragraph transition">
- <div id="u24073_div" class=""></div>
- <div id="u24073_text" class="text ">
- <p><span>x</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u24074" class="ax_default icon1 transition">
- <svg data="images/设置/u4683.svg" id="u24074_img" class="img generatedImage">
- <defs>
- <pattern id="u24074_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u24074_img_cl5482">
- <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(#u24074_img_cl5482)" />
- <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(#u24074_img_cl5482)" />
- <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(#u24074_img_cl5482)" />
- </g>
- </svg>
- <div id="u24074_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24075" class="ax_default" data-left="2128" data-top="1253" data-width="1000" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24076" class="ax_default paragraph transition">
- <div id="u24076_div" class=""></div>
- <div id="u24076_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24077" class="ax_default box_1 transition">
- <div id="u24077_div" class=""></div>
- <div id="u24077_text" class="text ">
- <p><span>提交验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24078" class="ax_default box_1 transition">
- <div id="u24078_div" class=""></div>
- <div id="u24078_text" class="text ">
- <p><span>取消</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Table) -->
- <div id="u24079" class="ax_default">
- <!-- Unnamed (Table cell) -->
- <div id="u24080" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23864.svg" id="u24080_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="u24080_text" class="text ">
- <p><span>收费标准名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24081" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23865.svg" id="u24081_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="u24081_text" class="text ">
- <p><span>计费方式</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24082" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23866.svg" id="u24082_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="u24082_text" class="text ">
- <p><span>开始日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24083" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23867.svg" id="u24083_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="u24083_text" class="text ">
- <p><span>结束日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24084" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23868.svg" id="u24084_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="u24084_text" class="text ">
- <p><span>金额</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24085" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23869.svg" id="u24085_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="u24085_text" class="text ">
- <p><span>收费对象类型</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24086" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23870.svg" id="u24086_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="u24086_text" class="text ">
- <p><span>收费对象</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24087" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23871.svg" id="u24087_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="u24087_text" class="text ">
- <p><span>收费状态</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24088" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23872.svg" id="u24088_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="u24088_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24089" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23873.svg" id="u24089_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="u24089_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24090" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23874.svg" id="u24090_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="u24090_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24091" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23875.svg" id="u24091_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="u24091_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24092" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23876.svg" id="u24092_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="u24092_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24093" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23877.svg" id="u24093_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="u24093_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24094" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23878.svg" id="u24094_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="u24094_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24095" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23879.svg" id="u24095_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="u24095_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24096" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23880.svg" id="u24096_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="u24096_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24097" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23881.svg" id="u24097_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="u24097_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24098" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23882.svg" id="u24098_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="u24098_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24099" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23883.svg" id="u24099_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="u24099_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24100" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23884.svg" id="u24100_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="u24100_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24101" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23885.svg" id="u24101_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="u24101_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24102" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23886.svg" id="u24102_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="u24102_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24103" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23887.svg" id="u24103_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="u24103_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24104" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23888.svg" id="u24104_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="u24104_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24105" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23889.svg" id="u24105_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="u24105_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24106" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23890.svg" id="u24106_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="u24106_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24107" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23891.svg" id="u24107_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="u24107_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24108" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23892.svg" id="u24108_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="u24108_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24109" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23893.svg" id="u24109_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="u24109_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24110" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23894.svg" id="u24110_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="u24110_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24111" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23895.svg" id="u24111_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="u24111_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24112" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23896.svg" id="u24112_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="u24112_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24113" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23897.svg" id="u24113_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="u24113_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24114" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23898.svg" id="u24114_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="u24114_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24115" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23899.svg" id="u24115_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="u24115_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24116" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23900.svg" id="u24116_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="u24116_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24117" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23901.svg" id="u24117_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="u24117_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24118" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23902.svg" id="u24118_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="u24118_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24119" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23903.svg" id="u24119_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="u24119_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24120" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23904.svg" id="u24120_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="u24120_text" class="text ">
- <p><span>总计</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24121" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23905.svg" id="u24121_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="u24121_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24122" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23906.svg" id="u24122_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="u24122_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24123" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23907.svg" id="u24123_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="u24123_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24124" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23908.svg" id="u24124_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="u24124_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24125" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23909.svg" id="u24125_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="u24125_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24126" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23910.svg" id="u24126_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="u24126_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24127" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23911.svg" id="u24127_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="u24127_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24128" class="ax_default paragraph transition">
- <div id="u24128_div" class=""></div>
- <div id="u24128_text" class="text ">
- <p><span>验收确认</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24129" class="ax_default paragraph transition">
- <div id="u24129_div" class=""></div>
- <div id="u24129_text" class="text ">
- <p><span>装修信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24130" class="ax_default paragraph transition">
- <div id="u24130_div" class=""></div>
- <div id="u24130_text" class="text ">
- <p><span>社区:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24131" class="ax_default paragraph transition">
- <div id="u24131_div" class=""></div>
- <div id="u24131_text" class="text ">
- <p><span>西安保利天汇社区</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24132" class="ax_default paragraph transition">
- <div id="u24132_div" class=""></div>
- <div id="u24132_text" class="text ">
- <p><span>房屋:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24133" class="ax_default paragraph transition">
- <div id="u24133_div" class=""></div>
- <div id="u24133_text" class="text ">
- <p><span>3栋A单元203</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24134" class="ax_default paragraph transition">
- <div id="u24134_div" class=""></div>
- <div id="u24134_text" class="text ">
- <p><span>建筑面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24135" class="ax_default paragraph transition">
- <div id="u24135_div" class=""></div>
- <div id="u24135_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24136" class="ax_default paragraph transition">
- <div id="u24136_div" class=""></div>
- <div id="u24136_text" class="text ">
- <p><span>套内面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24137" class="ax_default paragraph transition">
- <div id="u24137_div" class=""></div>
- <div id="u24137_text" class="text ">
- <p><span>225.08平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24138" class="ax_default paragraph transition">
- <div id="u24138_div" class=""></div>
- <div id="u24138_text" class="text ">
- <p><span>计费面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24139" class="ax_default paragraph transition">
- <div id="u24139_div" class=""></div>
- <div id="u24139_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24140" class="ax_default paragraph transition">
- <div id="u24140_div" class=""></div>
- <div id="u24140_text" class="text ">
- <p><span>业主名称:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24141" class="ax_default paragraph transition">
- <div id="u24141_div" class=""></div>
- <div id="u24141_text" class="text ">
- <p><span>张三</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24142" class="ax_default paragraph transition">
- <div id="u24142_div" class=""></div>
- <div id="u24142_text" class="text ">
- <p><span>开始时间;</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24143" class="ax_default paragraph transition">
- <div id="u24143_div" class=""></div>
- <div id="u24143_text" class="text ">
- <p><span>2025/07/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24144" class="ax_default paragraph transition">
- <div id="u24144_div" class=""></div>
- <div id="u24144_text" class="text ">
- <p><span>拟结束时间:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24145" class="ax_default paragraph transition">
- <div id="u24145_div" class=""></div>
- <div id="u24145_text" class="text ">
- <p><span>2025/09/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24146" class="ax_default paragraph transition">
- <div id="u24146_div" class=""></div>
- <div id="u24146_text" class="text ">
- <p><span>备注信息:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24147" class="ax_default paragraph transition">
- <div id="u24147_div" class=""></div>
- <div id="u24147_text" class="text ">
- <p><span>显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24148" class="ax_default paragraph transition">
- <div id="u24148_div" class=""></div>
- <div id="u24148_text" class="text ">
- <p><span>账单费用明细</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24149" class="ax_default paragraph transition">
- <div id="u24149_div" class=""></div>
- <div id="u24149_text" class="text ">
- <p><span>*是否退款:</span></p>
- </div>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u24150" class="ax_default radio_button selected">
- <label id="u24150_input_label" for="u24150_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u24150.svg" id="u24150_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="u24150_text" class="text ">
- <p><span>是</span></p>
- </div>
- </label>
- <input id="u24150_input" type="radio" value="radio" name="u24150" checked/>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u24151" class="ax_default radio_button">
- <label id="u24151_input_label" for="u24151_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u24151.svg" id="u24151_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="u24151_text" class="text ">
- <p><span>否</span></p>
- </div>
- </label>
- <input id="u24151_input" type="radio" value="radio" name="u24151"/>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24152" class="ax_default paragraph transition">
- <div id="u24152_div" class=""></div>
- <div id="u24152_text" class="text ">
- <p><span>完成验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24153" class="ax_default paragraph transition">
- <div id="u24153_div" class=""></div>
- <div id="u24153_text" class="text ">
- <p><span>验收说明:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24154" class="ax_default" data-left="2249" data-top="1138" data-width="795" data-height="80" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24155" class="ax_default shape transition">
- <div id="u24155_div" class=""></div>
- <div id="u24155_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u24156" class="ax_default text_field transition" data-label="选项内容">
- <div id="u24156_div" class=""></div>
- <input id="u24156_input" type="text" value="" class="u24156_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24157" class="ax_default paragraph transition">
- <div id="u24157_div" class=""></div>
- <div id="u24157_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24158" class="ax_default paragraph transition">
- <div id="u24158_div" class=""></div>
- <div id="u24158_text" class="text ">
- <p><span>+添加</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u24159" class="ax_default icon transition">
- <svg data="images/完成验收/u23959.svg" id="u24159_img" class="img generatedImage">
- <defs>
- <pattern id="u24159_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u24159_img_cl6383">
- <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(#u24159_img_cl6383)" />
- <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(#u24159_img_cl6383)" />
- </g>
- </svg>
- <div id="u24159_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24160" class="ax_default paragraph transition">
- <div id="u24160_div" class=""></div>
- <div id="u24160_text" class="text ">
- <p><span>*退款方式:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24161" class="ax_default" data-left="2279" data-top="868" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24162" class="ax_default box_1 transition">
- <div id="u24162_div" class=""></div>
- <div id="u24162_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u24163" class="ax_default droplist transition">
- <div id="u24163_div" class=""></div>
- <select id="u24163_input" class="u24163_input">
- <option class="u24163_input_option" value="选择付款方式">选择付款方式</option>
- <option class="u24163_input_option" value="转为预存款">转为预存款</option>
- <option class="u24163_input_option" value="线上原路返回">线上原路返回</option>
- <option class="u24163_input_option" selected value="支付宝转账">支付宝转账</option>
- <option class="u24163_input_option" value="微信转账">微信转账</option>
- <option class="u24163_input_option" value="银行卡转账">银行卡转账</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24164" class="ax_default paragraph transition">
- <div id="u24164_div" class=""></div>
- <div id="u24164_text" class="text ">
- <p><span>*退款项目:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24165" class="ax_default" data-left="2279" data-top="818" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24166" class="ax_default box_1 transition">
- <div id="u24166_div" class=""></div>
- <div id="u24166_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u24167" class="ax_default droplist transition">
- <div id="u24167_div" class=""></div>
- <select id="u24167_input" class="u24167_input">
- <option class="u24167_input_option" value="室内清洁费">室内清洁费</option>
- <option class="u24167_input_option" value="小时计费">小时计费</option>
- <option class="u24167_input_option" value="指定">指定</option>
- <option class="u24167_input_option" value="合同-固定">合同-固定</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24168" class="ax_default paragraph transition">
- <div id="u24168_div" class=""></div>
- <div id="u24168_text" class="text ">
- <p><span>*退款金额:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24169" class="ax_default" data-left="2721" data-top="818" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24170" class="ax_default shape transition">
- <div id="u24170_div" class=""></div>
- <div id="u24170_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u24171" class="ax_default text_field transition" data-label="选项内容">
- <div id="u24171_div" class=""></div>
- <input id="u24171_input" type="text" value="" class="u24171_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24172" class="ax_default paragraph transition">
- <div id="u24172_div" class=""></div>
- <div id="u24172_text" class="text ">
- <p><span>*支付宝账号:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24173" class="ax_default paragraph transition">
- <div id="u24173_div" class=""></div>
- <div id="u24173_text" class="text ">
- <p><span>退款备注:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24174" class="ax_default" data-left="2279" data-top="1017" data-width="300" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24175" class="ax_default shape transition">
- <div id="u24175_div" class=""></div>
- <div id="u24175_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u24176" class="ax_default text_field transition" data-label="选项内容">
- <div id="u24176_div" class=""></div>
- <input id="u24176_input" type="text" value="" class="u24176_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24177" class="ax_default" data-left="2721" data-top="868" data-width="299" data-height="38" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24178" class="ax_default box_1 transition">
- <div id="u24178_div" class=""></div>
- <div id="u24178_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24179" class="ax_default label transition">
- <div id="u24179_div" class=""></div>
- <div id="u24179_text" class="text ">
- <p><span>2023/10/01 10:33</span></p>
- </div>
- </div>
- <!-- Unnamed (Image) -->
- <div id="u24180" class="ax_default image transition">
- <img id="u24180_img" class="img " src="images/新增房屋/u6434.png"/>
- <div id="u24180_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24181" class="ax_default paragraph transition">
- <div id="u24181_div" class=""></div>
- <div id="u24181_text" class="text ">
- <p><span>*退款时间:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24182" class="ax_default paragraph transition">
- <div id="u24182_div" class=""></div>
- <div id="u24182_text" class="text ">
- <p><span>*收款方:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24183" class="ax_default" data-left="2722" data-top="918" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24184" class="ax_default shape transition">
- <div id="u24184_div" class=""></div>
- <div id="u24184_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u24185" class="ax_default text_field transition" data-label="选项内容">
- <div id="u24185_div" class=""></div>
- <input id="u24185_input" type="text" value="" class="u24185_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24186" class="ax_default paragraph transition">
- <div id="u24186_div" class=""></div>
- <div id="u24186_text" class="text ">
- <p><span>*收款账号:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24187" class="ax_default" data-left="2279" data-top="967" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24188" class="ax_default shape transition">
- <div id="u24188_div" class=""></div>
- <div id="u24188_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u24189" class="ax_default text_field transition" data-label="选项内容">
- <div id="u24189_div" class=""></div>
- <input id="u24189_input" type="text" value="" class="u24189_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24190" class="ax_default" data-left="2280" data-top="918" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24191" class="ax_default box_1 transition">
- <div id="u24191_div" class=""></div>
- <div id="u24191_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u24192" class="ax_default droplist transition">
- <div id="u24192_div" class=""></div>
- <select id="u24192_input" class="u24192_input">
- <option class="u24192_input_option" value="支付宝转账">支付宝转账</option>
- <option class="u24192_input_option" value="微信转账">微信转账</option>
- <option class="u24192_input_option" value="银行卡转账">银行卡转账</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24193" class="ax_default paragraph transition">
- <div id="u24193_div" class=""></div>
- <div id="u24193_text" class="text ">
- <p><span>*交易凭证:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24194" class="ax_default" data-left="2723" data-top="968" data-width="108" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24195" class="ax_default shape transition">
- <div id="u24195_div" class=""></div>
- <div id="u24195_text" class="text ">
- <p><span>+</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24196" class="ax_default paragraph transition">
- <div id="u24196_div" class=""></div>
- <div id="u24196_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24197" class="ax_default paragraph transition">
- <div id="u24197_div" class=""></div>
- <div id="u24197_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24198" class="ax_default paragraph transition">
- <div id="u24198_div" class=""></div>
- <div id="u24198_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24199" class="ax_default" data-left="4096" data-top="59" data-width="52" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24200" class="ax_default paragraph transition">
- <div id="u24200_div" class=""></div>
- <div id="u24200_text" class="text ">
- <p><span>x</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u24201" class="ax_default icon1 transition">
- <svg data="images/设置/u4683.svg" id="u24201_img" class="img generatedImage">
- <defs>
- <pattern id="u24201_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u24201_img_cl5482">
- <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(#u24201_img_cl5482)" />
- <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(#u24201_img_cl5482)" />
- <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(#u24201_img_cl5482)" />
- </g>
- </svg>
- <div id="u24201_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24202" class="ax_default" data-left="3148" data-top="1253" data-width="1000" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24203" class="ax_default paragraph transition">
- <div id="u24203_div" class=""></div>
- <div id="u24203_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24204" class="ax_default box_1 transition">
- <div id="u24204_div" class=""></div>
- <div id="u24204_text" class="text ">
- <p><span>提交验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24205" class="ax_default box_1 transition">
- <div id="u24205_div" class=""></div>
- <div id="u24205_text" class="text ">
- <p><span>取消</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Table) -->
- <div id="u24206" class="ax_default">
- <!-- Unnamed (Table cell) -->
- <div id="u24207" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23864.svg" id="u24207_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="u24207_text" class="text ">
- <p><span>收费标准名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24208" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23865.svg" id="u24208_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="u24208_text" class="text ">
- <p><span>计费方式</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24209" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23866.svg" id="u24209_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="u24209_text" class="text ">
- <p><span>开始日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24210" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23867.svg" id="u24210_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="u24210_text" class="text ">
- <p><span>结束日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24211" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23868.svg" id="u24211_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="u24211_text" class="text ">
- <p><span>金额</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24212" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23869.svg" id="u24212_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="u24212_text" class="text ">
- <p><span>收费对象类型</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24213" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23870.svg" id="u24213_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="u24213_text" class="text ">
- <p><span>收费对象</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24214" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23871.svg" id="u24214_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="u24214_text" class="text ">
- <p><span>收费状态</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24215" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23872.svg" id="u24215_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="u24215_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24216" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23873.svg" id="u24216_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="u24216_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24217" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23874.svg" id="u24217_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="u24217_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24218" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23875.svg" id="u24218_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="u24218_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24219" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23876.svg" id="u24219_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="u24219_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24220" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23877.svg" id="u24220_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="u24220_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24221" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23878.svg" id="u24221_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="u24221_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24222" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23879.svg" id="u24222_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="u24222_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24223" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23880.svg" id="u24223_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="u24223_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24224" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23881.svg" id="u24224_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="u24224_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24225" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23882.svg" id="u24225_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="u24225_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24226" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23883.svg" id="u24226_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="u24226_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24227" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23884.svg" id="u24227_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="u24227_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24228" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23885.svg" id="u24228_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="u24228_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24229" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23886.svg" id="u24229_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="u24229_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24230" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23887.svg" id="u24230_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="u24230_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24231" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23888.svg" id="u24231_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="u24231_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24232" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23889.svg" id="u24232_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="u24232_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24233" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23890.svg" id="u24233_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="u24233_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24234" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23891.svg" id="u24234_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="u24234_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24235" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23892.svg" id="u24235_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="u24235_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24236" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23893.svg" id="u24236_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="u24236_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24237" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23894.svg" id="u24237_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="u24237_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24238" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23895.svg" id="u24238_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="u24238_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24239" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23896.svg" id="u24239_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="u24239_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24240" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23897.svg" id="u24240_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="u24240_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24241" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23898.svg" id="u24241_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="u24241_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24242" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23899.svg" id="u24242_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="u24242_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24243" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23900.svg" id="u24243_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="u24243_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24244" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23901.svg" id="u24244_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="u24244_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24245" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23902.svg" id="u24245_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="u24245_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24246" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23903.svg" id="u24246_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="u24246_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24247" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23904.svg" id="u24247_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="u24247_text" class="text ">
- <p><span>总计</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24248" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23905.svg" id="u24248_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="u24248_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24249" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23906.svg" id="u24249_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="u24249_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24250" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23907.svg" id="u24250_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="u24250_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24251" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23908.svg" id="u24251_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="u24251_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24252" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23909.svg" id="u24252_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="u24252_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24253" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23910.svg" id="u24253_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="u24253_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u24254" class="ax_default table_cell transition">
- <svg data="images/完成验收/u23911.svg" id="u24254_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="u24254_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24255" class="ax_default paragraph transition">
- <div id="u24255_div" class=""></div>
- <div id="u24255_text" class="text ">
- <p><span>验收确认</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24256" class="ax_default paragraph transition">
- <div id="u24256_div" class=""></div>
- <div id="u24256_text" class="text ">
- <p><span>装修信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24257" class="ax_default paragraph transition">
- <div id="u24257_div" class=""></div>
- <div id="u24257_text" class="text ">
- <p><span>社区:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24258" class="ax_default paragraph transition">
- <div id="u24258_div" class=""></div>
- <div id="u24258_text" class="text ">
- <p><span>西安保利天汇社区</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24259" class="ax_default paragraph transition">
- <div id="u24259_div" class=""></div>
- <div id="u24259_text" class="text ">
- <p><span>房屋:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24260" class="ax_default paragraph transition">
- <div id="u24260_div" class=""></div>
- <div id="u24260_text" class="text ">
- <p><span>3栋A单元203</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24261" class="ax_default paragraph transition">
- <div id="u24261_div" class=""></div>
- <div id="u24261_text" class="text ">
- <p><span>建筑面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24262" class="ax_default paragraph transition">
- <div id="u24262_div" class=""></div>
- <div id="u24262_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24263" class="ax_default paragraph transition">
- <div id="u24263_div" class=""></div>
- <div id="u24263_text" class="text ">
- <p><span>套内面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24264" class="ax_default paragraph transition">
- <div id="u24264_div" class=""></div>
- <div id="u24264_text" class="text ">
- <p><span>225.08平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24265" class="ax_default paragraph transition">
- <div id="u24265_div" class=""></div>
- <div id="u24265_text" class="text ">
- <p><span>计费面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24266" class="ax_default paragraph transition">
- <div id="u24266_div" class=""></div>
- <div id="u24266_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24267" class="ax_default paragraph transition">
- <div id="u24267_div" class=""></div>
- <div id="u24267_text" class="text ">
- <p><span>业主名称:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24268" class="ax_default paragraph transition">
- <div id="u24268_div" class=""></div>
- <div id="u24268_text" class="text ">
- <p><span>张三</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24269" class="ax_default paragraph transition">
- <div id="u24269_div" class=""></div>
- <div id="u24269_text" class="text ">
- <p><span>开始时间;</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24270" class="ax_default paragraph transition">
- <div id="u24270_div" class=""></div>
- <div id="u24270_text" class="text ">
- <p><span>2025/07/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24271" class="ax_default paragraph transition">
- <div id="u24271_div" class=""></div>
- <div id="u24271_text" class="text ">
- <p><span>拟结束时间:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24272" class="ax_default paragraph transition">
- <div id="u24272_div" class=""></div>
- <div id="u24272_text" class="text ">
- <p><span>2025/09/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24273" class="ax_default paragraph transition">
- <div id="u24273_div" class=""></div>
- <div id="u24273_text" class="text ">
- <p><span>备注信息:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24274" class="ax_default paragraph transition">
- <div id="u24274_div" class=""></div>
- <div id="u24274_text" class="text ">
- <p><span>显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24275" class="ax_default paragraph transition">
- <div id="u24275_div" class=""></div>
- <div id="u24275_text" class="text ">
- <p><span>账单费用明细</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24276" class="ax_default paragraph transition">
- <div id="u24276_div" class=""></div>
- <div id="u24276_text" class="text ">
- <p><span>*是否退款:</span></p>
- </div>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u24277" class="ax_default radio_button selected">
- <label id="u24277_input_label" for="u24277_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u24277.svg" id="u24277_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="u24277_text" class="text ">
- <p><span>是</span></p>
- </div>
- </label>
- <input id="u24277_input" type="radio" value="radio" name="u24277" checked/>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u24278" class="ax_default radio_button">
- <label id="u24278_input_label" for="u24278_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u24278.svg" id="u24278_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="u24278_text" class="text ">
- <p><span>否</span></p>
- </div>
- </label>
- <input id="u24278_input" type="radio" value="radio" name="u24278"/>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24279" class="ax_default paragraph transition">
- <div id="u24279_div" class=""></div>
- <div id="u24279_text" class="text ">
- <p><span>完成验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24280" class="ax_default paragraph transition">
- <div id="u24280_div" class=""></div>
- <div id="u24280_text" class="text ">
- <p><span>验收说明:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24281" class="ax_default" data-left="3269" data-top="1138" data-width="795" data-height="80" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24282" class="ax_default shape transition">
- <div id="u24282_div" class=""></div>
- <div id="u24282_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u24283" class="ax_default text_field transition" data-label="选项内容">
- <div id="u24283_div" class=""></div>
- <input id="u24283_input" type="text" value="" class="u24283_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24284" class="ax_default paragraph transition">
- <div id="u24284_div" class=""></div>
- <div id="u24284_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24285" class="ax_default paragraph transition">
- <div id="u24285_div" class=""></div>
- <div id="u24285_text" class="text ">
- <p><span>+添加</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u24286" class="ax_default icon transition">
- <svg data="images/完成验收/u23959.svg" id="u24286_img" class="img generatedImage">
- <defs>
- <pattern id="u24286_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u24286_img_cl6383">
- <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(#u24286_img_cl6383)" />
- <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(#u24286_img_cl6383)" />
- </g>
- </svg>
- <div id="u24286_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24287" class="ax_default paragraph transition">
- <div id="u24287_div" class=""></div>
- <div id="u24287_text" class="text ">
- <p><span>*退款方式:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24288" class="ax_default" data-left="3295" data-top="868" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24289" class="ax_default box_1 transition">
- <div id="u24289_div" class=""></div>
- <div id="u24289_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u24290" class="ax_default droplist transition">
- <div id="u24290_div" class=""></div>
- <select id="u24290_input" class="u24290_input">
- <option class="u24290_input_option" value="选择付款方式">选择付款方式</option>
- <option class="u24290_input_option" value="转为预存款">转为预存款</option>
- <option class="u24290_input_option" value="线上原路返回">线上原路返回</option>
- <option class="u24290_input_option" selected value="线下银行卡转账">线下银行卡转账</option>
- <option class="u24290_input_option" value="线下第三方转账">线下第三方转账</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24291" class="ax_default paragraph transition">
- <div id="u24291_div" class=""></div>
- <div id="u24291_text" class="text ">
- <p><span>*退款项目:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24292" class="ax_default" data-left="3295" data-top="818" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24293" class="ax_default box_1 transition">
- <div id="u24293_div" class=""></div>
- <div id="u24293_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u24294" class="ax_default droplist transition">
- <div id="u24294_div" class=""></div>
- <select id="u24294_input" class="u24294_input">
- <option class="u24294_input_option" value="室内清洁费">室内清洁费</option>
- <option class="u24294_input_option" value="小时计费">小时计费</option>
- <option class="u24294_input_option" value="指定">指定</option>
- <option class="u24294_input_option" value="合同-固定">合同-固定</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24295" class="ax_default paragraph transition">
- <div id="u24295_div" class=""></div>
- <div id="u24295_text" class="text ">
- <p><span>*退款金额:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24296" class="ax_default" data-left="3737" data-top="818" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24297" class="ax_default shape transition">
- <div id="u24297_div" class=""></div>
- <div id="u24297_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u24298" class="ax_default text_field transition" data-label="选项内容">
- <div id="u24298_div" class=""></div>
- <input id="u24298_input" type="text" value="" class="u24298_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24299" class="ax_default paragraph transition">
- <div id="u24299_div" class=""></div>
- <div id="u24299_text" class="text ">
- <p><span>*收款银行:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24300" class="ax_default paragraph transition">
- <div id="u24300_div" class=""></div>
- <div id="u24300_text" class="text ">
- <p><span>*退款账号:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24301" class="ax_default paragraph transition">
- <div id="u24301_div" class=""></div>
- <div id="u24301_text" class="text ">
- <p><span>退款备注:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24302" class="ax_default" data-left="3737" data-top="1017" data-width="300" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24303" class="ax_default shape transition">
- <div id="u24303_div" class=""></div>
- <div id="u24303_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u24304" class="ax_default text_field transition" data-label="选项内容">
- <div id="u24304_div" class=""></div>
- <input id="u24304_input" type="text" value="" class="u24304_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24305" class="ax_default" data-left="3737" data-top="868" data-width="299" data-height="38" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24306" class="ax_default box_1 transition">
- <div id="u24306_div" class=""></div>
- <div id="u24306_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24307" class="ax_default label transition">
- <div id="u24307_div" class=""></div>
- <div id="u24307_text" class="text ">
- <p><span>2023/10/01 10:33</span></p>
- </div>
- </div>
- <!-- Unnamed (Image) -->
- <div id="u24308" class="ax_default image transition">
- <img id="u24308_img" class="img " src="images/新增房屋/u6434.png"/>
- <div id="u24308_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24309" class="ax_default paragraph transition">
- <div id="u24309_div" class=""></div>
- <div id="u24309_text" class="text ">
- <p><span>*退款时间:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24310" class="ax_default paragraph transition">
- <div id="u24310_div" class=""></div>
- <div id="u24310_text" class="text ">
- <p><span>*收款方:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24311" class="ax_default" data-left="3295" data-top="967" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24312" class="ax_default shape transition">
- <div id="u24312_div" class=""></div>
- <div id="u24312_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u24313" class="ax_default text_field transition" data-label="选项内容">
- <div id="u24313_div" class=""></div>
- <input id="u24313_input" type="text" value="" class="u24313_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24314" class="ax_default paragraph transition">
- <div id="u24314_div" class=""></div>
- <div id="u24314_text" class="text ">
- <p><span>*收款账号:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24315" class="ax_default" data-left="3737" data-top="967" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24316" class="ax_default shape transition">
- <div id="u24316_div" class=""></div>
- <div id="u24316_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u24317" class="ax_default text_field transition" data-label="选项内容">
- <div id="u24317_div" class=""></div>
- <input id="u24317_input" type="text" value="" class="u24317_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24318" class="ax_default" data-left="3296" data-top="918" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24319" class="ax_default box_1 transition">
- <div id="u24319_div" class=""></div>
- <div id="u24319_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u24320" class="ax_default droplist transition">
- <div id="u24320_div" class=""></div>
- <select id="u24320_input" class="u24320_input">
- <option class="u24320_input_option" value="请选择">请选择</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24321" class="ax_default paragraph transition">
- <div id="u24321_div" class=""></div>
- <div id="u24321_text" class="text ">
- <p><span>*交易凭证:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24322" class="ax_default" data-left="3295" data-top="1017" data-width="108" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24323" class="ax_default shape transition">
- <div id="u24323_div" class=""></div>
- <div id="u24323_text" class="text ">
- <p><span>+</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24324" class="ax_default" data-left="3738" data-top="918" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24325" class="ax_default box_1 transition">
- <div id="u24325_div" class=""></div>
- <div id="u24325_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u24326" class="ax_default droplist transition">
- <div id="u24326_div" class=""></div>
- <select id="u24326_input" class="u24326_input">
- <option class="u24326_input_option" value="请选择">请选择</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24327" class="ax_default" data-left="689" data-top="908" data-width="380" data-height="164" layer-opacity="1">
- <!-- Unnamed (Group) -->
- <div id="u24328" class="ax_default" data-left="689" data-top="908" data-width="380" data-height="164" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24329" class="ax_default shape transition">
- <div id="u24329_div" class=""></div>
- <div id="u24329_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24330" class="ax_default paragraph transition">
- <div id="u24330_div" class=""></div>
- <div id="u24330_text" class="text ">
- <p><span>确定之后,房屋装修将结束,并根据设置自动完成退款处理。</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24331" class="ax_default paragraph transition">
- <div id="u24331_div" class=""></div>
- <div id="u24331_text" class="text ">
- <p><span>确定提交验收?</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24332" class="ax_default shape transition">
- <div id="u24332_div" class=""></div>
- <div id="u24332_text" class="text ">
- <p><span>确定</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24333" class="ax_default shape transition">
- <div id="u24333_div" class=""></div>
- <div id="u24333_text" class="text ">
- <p><span>取 消</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u24334" class="ax_default icon transition">
- <svg data="images/项目列表/u4920.svg" id="u24334_img" class="img generatedImage">
- <defs>
- <pattern id="u24334_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u24334_img_cl5499">
- <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(#u24334_img_cl5499)" />
- <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(#u24334_img_cl5499)" />
- <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(#u24334_img_cl5499)" />
- </g>
- </svg>
- <div id="u24334_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24335" class="ax_default paragraph transition">
- <div id="u24335_div" class=""></div>
- <div id="u24335_text" class="text ">
- <p><span>退款备注:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24336" class="ax_default" data-left="236" data-top="918" data-width="300" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24337" class="ax_default shape transition">
- <div id="u24337_div" class=""></div>
- <div id="u24337_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u24338" class="ax_default text_field transition" data-label="选项内容">
- <div id="u24338_div" class=""></div>
- <input id="u24338_input" type="text" value="" class="u24338_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u24339" class="ax_default paragraph transition">
- <div id="u24339_div" class=""></div>
- <div id="u24339_text" class="text ">
- <p><span>退款备注:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u24340" class="ax_default" data-left="1267" data-top="918" data-width="300" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u24341" class="ax_default shape transition">
- <div id="u24341_div" class=""></div>
- <div id="u24341_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u24342" class="ax_default text_field transition" data-label="选项内容">
- <div id="u24342_div" class=""></div>
- <input id="u24342_input" type="text" value="" class="u24342_input"/>
- </div>
- </div>
- </div>
- <script src="resources/scripts/axure/ios.js"></script>
- </body>
- </html>
|