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="u22914" class="ax_default paragraph transition">
- <div id="u22914_div" class=""></div>
- <div id="u22914_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22915" class="ax_default paragraph transition">
- <div id="u22915_div" class=""></div>
- <div id="u22915_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22916" class="ax_default paragraph transition">
- <div id="u22916_div" class=""></div>
- <div id="u22916_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u22917" class="ax_default" data-left="1036" data-top="59" data-width="52" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u22918" class="ax_default paragraph transition">
- <div id="u22918_div" class=""></div>
- <div id="u22918_text" class="text ">
- <p><span>x</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u22919" class="ax_default icon1 transition">
- <svg data="images/设置/u4554.svg" id="u22919_img" class="img generatedImage">
- <defs>
- <pattern id="u22919_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u22919_img_cl394">
- <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(#u22919_img_cl394)" />
- <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(#u22919_img_cl394)" />
- <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(#u22919_img_cl394)" />
- </g>
- </svg>
- <div id="u22919_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u22920" class="ax_default" data-left="88" data-top="1253" data-width="1000" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u22921" class="ax_default paragraph transition">
- <div id="u22921_div" class=""></div>
- <div id="u22921_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22922" class="ax_default box_1 transition">
- <div id="u22922_div" class=""></div>
- <div id="u22922_text" class="text ">
- <p><span>提交验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22923" class="ax_default box_1 transition">
- <div id="u22923_div" class=""></div>
- <div id="u22923_text" class="text ">
- <p><span>取消</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Table) -->
- <div id="u22924" class="ax_default">
- <!-- Unnamed (Table cell) -->
- <div id="u22925" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22925.svg" id="u22925_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="u22925_text" class="text ">
- <p><span>收费标准名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22926" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22926.svg" id="u22926_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="u22926_text" class="text ">
- <p><span>计费方式</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22927" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22927.svg" id="u22927_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="u22927_text" class="text ">
- <p><span>开始日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22928" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22928.svg" id="u22928_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="u22928_text" class="text ">
- <p><span>结束日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22929" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22929.svg" id="u22929_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="u22929_text" class="text ">
- <p><span>金额</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22930" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22930.svg" id="u22930_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="u22930_text" class="text ">
- <p><span>收费对象类型</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22931" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22931.svg" id="u22931_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="u22931_text" class="text ">
- <p><span>收费对象</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22932" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22932.svg" id="u22932_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="u22932_text" class="text ">
- <p><span>收费状态</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22933" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22933.svg" id="u22933_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="u22933_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22934" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22934.svg" id="u22934_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="u22934_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22935" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22935.svg" id="u22935_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="u22935_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22936" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22936.svg" id="u22936_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="u22936_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22937" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22937.svg" id="u22937_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="u22937_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22938" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22938.svg" id="u22938_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="u22938_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22939" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22939.svg" id="u22939_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="u22939_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22940" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22940.svg" id="u22940_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="u22940_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22941" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22941.svg" id="u22941_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="u22941_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22942" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22942.svg" id="u22942_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="u22942_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22943" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22943.svg" id="u22943_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="u22943_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22944" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22944.svg" id="u22944_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="u22944_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22945" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22945.svg" id="u22945_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="u22945_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22946" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22946.svg" id="u22946_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="u22946_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22947" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22947.svg" id="u22947_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="u22947_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22948" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22948.svg" id="u22948_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="u22948_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22949" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22949.svg" id="u22949_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="u22949_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22950" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22950.svg" id="u22950_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="u22950_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22951" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22951.svg" id="u22951_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="u22951_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22952" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22952.svg" id="u22952_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="u22952_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22953" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22953.svg" id="u22953_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="u22953_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22954" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22954.svg" id="u22954_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="u22954_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22955" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22955.svg" id="u22955_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="u22955_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22956" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22956.svg" id="u22956_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="u22956_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22957" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22957.svg" id="u22957_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="u22957_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22958" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22958.svg" id="u22958_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="u22958_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22959" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22959.svg" id="u22959_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="u22959_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22960" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22960.svg" id="u22960_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="u22960_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22961" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22961.svg" id="u22961_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="u22961_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22962" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22962.svg" id="u22962_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="u22962_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22963" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22963.svg" id="u22963_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="u22963_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22964" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22964.svg" id="u22964_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="u22964_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22965" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22965.svg" id="u22965_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="u22965_text" class="text ">
- <p><span>总计</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22966" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22966.svg" id="u22966_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="u22966_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22967" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22967.svg" id="u22967_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="u22967_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22968" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22968.svg" id="u22968_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="u22968_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22969" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22969.svg" id="u22969_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="u22969_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22970" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22970.svg" id="u22970_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="u22970_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22971" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22971.svg" id="u22971_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="u22971_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u22972" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22972.svg" id="u22972_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="u22972_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22973" class="ax_default paragraph transition">
- <div id="u22973_div" class=""></div>
- <div id="u22973_text" class="text ">
- <p><span>验收确认</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22974" class="ax_default paragraph transition">
- <div id="u22974_div" class=""></div>
- <div id="u22974_text" class="text ">
- <p><span>装修信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22975" class="ax_default paragraph transition">
- <div id="u22975_div" class=""></div>
- <div id="u22975_text" class="text ">
- <p><span>项目:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22976" class="ax_default paragraph transition">
- <div id="u22976_div" class=""></div>
- <div id="u22976_text" class="text ">
- <p><span>西安保利天汇社区</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22977" class="ax_default paragraph transition">
- <div id="u22977_div" class=""></div>
- <div id="u22977_text" class="text ">
- <p><span>房屋:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22978" class="ax_default paragraph transition">
- <div id="u22978_div" class=""></div>
- <div id="u22978_text" class="text ">
- <p><span>3栋A单元203</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22979" class="ax_default paragraph transition">
- <div id="u22979_div" class=""></div>
- <div id="u22979_text" class="text ">
- <p><span>建筑面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22980" class="ax_default paragraph transition">
- <div id="u22980_div" class=""></div>
- <div id="u22980_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22981" class="ax_default paragraph transition">
- <div id="u22981_div" class=""></div>
- <div id="u22981_text" class="text ">
- <p><span>套内面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22982" class="ax_default paragraph transition">
- <div id="u22982_div" class=""></div>
- <div id="u22982_text" class="text ">
- <p><span>225.08平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22983" class="ax_default paragraph transition">
- <div id="u22983_div" class=""></div>
- <div id="u22983_text" class="text ">
- <p><span>计费面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22984" class="ax_default paragraph transition">
- <div id="u22984_div" class=""></div>
- <div id="u22984_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22985" class="ax_default paragraph transition">
- <div id="u22985_div" class=""></div>
- <div id="u22985_text" class="text ">
- <p><span>业主名称:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22986" class="ax_default paragraph transition">
- <div id="u22986_div" class=""></div>
- <div id="u22986_text" class="text ">
- <p><span>张三</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22987" class="ax_default paragraph transition">
- <div id="u22987_div" class=""></div>
- <div id="u22987_text" class="text ">
- <p><span>开始时间;</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22988" class="ax_default paragraph transition">
- <div id="u22988_div" class=""></div>
- <div id="u22988_text" class="text ">
- <p><span>2025/07/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22989" class="ax_default paragraph transition">
- <div id="u22989_div" class=""></div>
- <div id="u22989_text" class="text ">
- <p><span>拟结束时间:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22990" class="ax_default paragraph transition">
- <div id="u22990_div" class=""></div>
- <div id="u22990_text" class="text ">
- <p><span>2025/09/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22991" class="ax_default paragraph transition">
- <div id="u22991_div" class=""></div>
- <div id="u22991_text" class="text ">
- <p><span>备注信息:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22992" class="ax_default paragraph transition">
- <div id="u22992_div" class=""></div>
- <div id="u22992_text" class="text ">
- <p><span>显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22993" class="ax_default paragraph transition">
- <div id="u22993_div" class=""></div>
- <div id="u22993_text" class="text ">
- <p><span>账单费用明细</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22994" class="ax_default paragraph transition">
- <div id="u22994_div" class=""></div>
- <div id="u22994_text" class="text ">
- <p><span>*是否退款:</span></p>
- </div>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u22995" class="ax_default radio_button selected">
- <label id="u22995_input_label" for="u22995_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u22995.svg" id="u22995_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="u22995_text" class="text ">
- <p><span>是</span></p>
- </div>
- </label>
- <input id="u22995_input" type="radio" value="radio" name="u22995" checked/>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u22996" class="ax_default radio_button">
- <label id="u22996_input_label" for="u22996_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u22996.svg" id="u22996_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="u22996_text" class="text ">
- <p><span>否</span></p>
- </div>
- </label>
- <input id="u22996_input" type="radio" value="radio" name="u22996"/>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22997" class="ax_default paragraph transition">
- <div id="u22997_div" class=""></div>
- <div id="u22997_text" class="text ">
- <p><span>完成验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u22998" class="ax_default paragraph transition">
- <div id="u22998_div" class=""></div>
- <div id="u22998_text" class="text ">
- <p><span>验收说明:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u22999" class="ax_default" data-left="209" data-top="1010" data-width="795" data-height="80" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23000" class="ax_default shape transition">
- <div id="u23000_div" class=""></div>
- <div id="u23000_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23001" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23001_div" class=""></div>
- <input id="u23001_input" type="text" value="" class="u23001_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23002" class="ax_default paragraph transition">
- <div id="u23002_div" class=""></div>
- <div id="u23002_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23003" class="ax_default paragraph transition">
- <div id="u23003_div" class=""></div>
- <div id="u23003_text" class="text ">
- <p><span>*退款方式:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23004" class="ax_default" data-left="236" data-top="868" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23005" class="ax_default box_1 transition">
- <div id="u23005_div" class=""></div>
- <div id="u23005_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23006" class="ax_default droplist transition">
- <div id="u23006_div" class=""></div>
- <select id="u23006_input" class="u23006_input">
- <option class="u23006_input_option" value="选择付款方式">选择付款方式</option>
- <option class="u23006_input_option" selected value="转为预存款">转为预存款</option>
- <option class="u23006_input_option" value="线上原路返回">线上原路返回</option>
- <option class="u23006_input_option" value="线下银行卡转账">线下银行卡转账</option>
- <option class="u23006_input_option" value="线下第三方转账">线下第三方转账</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23007" class="ax_default paragraph transition">
- <div id="u23007_div" class=""></div>
- <div id="u23007_text" class="text ">
- <p><span>*退款项目:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23008" class="ax_default" data-left="236" data-top="818" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23009" class="ax_default box_1 transition">
- <div id="u23009_div" class=""></div>
- <div id="u23009_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23010" class="ax_default droplist transition">
- <div id="u23010_div" class=""></div>
- <select id="u23010_input" class="u23010_input">
- <option class="u23010_input_option" value="室内清洁费">室内清洁费</option>
- <option class="u23010_input_option" value="小时计费">小时计费</option>
- <option class="u23010_input_option" value="指定">指定</option>
- <option class="u23010_input_option" value="合同-固定">合同-固定</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23011" class="ax_default paragraph transition">
- <div id="u23011_div" class=""></div>
- <div id="u23011_text" class="text ">
- <p><span>*退款金额:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23012" class="ax_default" data-left="678" data-top="818" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23013" class="ax_default shape transition">
- <div id="u23013_div" class=""></div>
- <div id="u23013_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23014" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23014_div" class=""></div>
- <input id="u23014_input" type="text" value="" class="u23014_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23015" class="ax_default paragraph transition">
- <div id="u23015_div" class=""></div>
- <div id="u23015_text" class="text ">
- <p><span>*退回账户:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23016" class="ax_default" data-left="678" data-top="868" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23017" class="ax_default box_1 transition">
- <div id="u23017_div" class=""></div>
- <div id="u23017_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23018" class="ax_default droplist transition">
- <div id="u23018_div" class=""></div>
- <select id="u23018_input" class="u23018_input">
- <option class="u23018_input_option" value="请选择">请选择</option>
- <option class="u23018_input_option" value="通用预存账户">通用预存账户</option>
- <option class="u23018_input_option" value="物业服务账户">物业服务账户</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23019" class="ax_default paragraph transition">
- <div id="u23019_div" class=""></div>
- <div id="u23019_text" class="text ">
- <p><span>+添加</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u23020" class="ax_default icon transition">
- <svg data="images/完成验收/u23020.svg" id="u23020_img" class="img generatedImage">
- <defs>
- <pattern id="u23020_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23020_img_cl1255">
- <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(#u23020_img_cl1255)" />
- <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(#u23020_img_cl1255)" />
- </g>
- </svg>
- <div id="u23020_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23021" class="ax_default paragraph transition">
- <div id="u23021_div" class=""></div>
- <div id="u23021_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="u23022" class="ax_default paragraph transition">
- <div id="u23022_div" class=""></div>
- <div id="u23022_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23023" class="ax_default paragraph transition">
- <div id="u23023_div" class=""></div>
- <div id="u23023_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23024" class="ax_default paragraph transition">
- <div id="u23024_div" class=""></div>
- <div id="u23024_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23025" class="ax_default" data-left="2056" data-top="59" data-width="52" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23026" class="ax_default paragraph transition">
- <div id="u23026_div" class=""></div>
- <div id="u23026_text" class="text ">
- <p><span>x</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u23027" class="ax_default icon1 transition">
- <svg data="images/设置/u4554.svg" id="u23027_img" class="img generatedImage">
- <defs>
- <pattern id="u23027_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23027_img_cl394">
- <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(#u23027_img_cl394)" />
- <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(#u23027_img_cl394)" />
- <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(#u23027_img_cl394)" />
- </g>
- </svg>
- <div id="u23027_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23028" class="ax_default" data-left="1108" data-top="1253" data-width="1000" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23029" class="ax_default paragraph transition">
- <div id="u23029_div" class=""></div>
- <div id="u23029_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23030" class="ax_default box_1 transition">
- <div id="u23030_div" class=""></div>
- <div id="u23030_text" class="text ">
- <p><span>提交验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23031" class="ax_default box_1 transition">
- <div id="u23031_div" class=""></div>
- <div id="u23031_text" class="text ">
- <p><span>取消</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Table) -->
- <div id="u23032" class="ax_default">
- <!-- Unnamed (Table cell) -->
- <div id="u23033" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22925.svg" id="u23033_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="u23033_text" class="text ">
- <p><span>收费标准名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23034" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22926.svg" id="u23034_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="u23034_text" class="text ">
- <p><span>计费方式</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23035" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22927.svg" id="u23035_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="u23035_text" class="text ">
- <p><span>开始日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23036" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22928.svg" id="u23036_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="u23036_text" class="text ">
- <p><span>结束日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23037" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22929.svg" id="u23037_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="u23037_text" class="text ">
- <p><span>金额</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23038" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22930.svg" id="u23038_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="u23038_text" class="text ">
- <p><span>收费对象类型</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23039" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22931.svg" id="u23039_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="u23039_text" class="text ">
- <p><span>收费对象</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23040" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22932.svg" id="u23040_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="u23040_text" class="text ">
- <p><span>收费状态</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23041" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22933.svg" id="u23041_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="u23041_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23042" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22934.svg" id="u23042_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="u23042_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23043" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22935.svg" id="u23043_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="u23043_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23044" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22936.svg" id="u23044_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="u23044_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23045" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22937.svg" id="u23045_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="u23045_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23046" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22938.svg" id="u23046_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="u23046_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23047" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22939.svg" id="u23047_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="u23047_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23048" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22940.svg" id="u23048_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="u23048_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23049" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22941.svg" id="u23049_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="u23049_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23050" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22942.svg" id="u23050_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="u23050_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23051" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22943.svg" id="u23051_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="u23051_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23052" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22944.svg" id="u23052_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="u23052_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23053" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22945.svg" id="u23053_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="u23053_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23054" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22946.svg" id="u23054_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="u23054_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23055" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22947.svg" id="u23055_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="u23055_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23056" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22948.svg" id="u23056_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="u23056_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23057" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22949.svg" id="u23057_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="u23057_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23058" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22950.svg" id="u23058_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="u23058_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23059" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22951.svg" id="u23059_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="u23059_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23060" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22952.svg" id="u23060_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="u23060_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23061" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22953.svg" id="u23061_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="u23061_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23062" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22954.svg" id="u23062_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="u23062_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23063" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22955.svg" id="u23063_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="u23063_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23064" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22956.svg" id="u23064_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="u23064_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23065" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22957.svg" id="u23065_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="u23065_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23066" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22958.svg" id="u23066_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="u23066_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23067" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22959.svg" id="u23067_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="u23067_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23068" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22960.svg" id="u23068_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="u23068_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23069" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22961.svg" id="u23069_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="u23069_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23070" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22962.svg" id="u23070_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="u23070_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23071" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22963.svg" id="u23071_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="u23071_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23072" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22964.svg" id="u23072_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="u23072_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23073" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22965.svg" id="u23073_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="u23073_text" class="text ">
- <p><span>总计</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23074" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22966.svg" id="u23074_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="u23074_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23075" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22967.svg" id="u23075_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="u23075_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23076" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22968.svg" id="u23076_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="u23076_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23077" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22969.svg" id="u23077_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="u23077_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23078" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22970.svg" id="u23078_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="u23078_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23079" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22971.svg" id="u23079_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="u23079_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23080" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22972.svg" id="u23080_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="u23080_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23081" class="ax_default paragraph transition">
- <div id="u23081_div" class=""></div>
- <div id="u23081_text" class="text ">
- <p><span>验收确认</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23082" class="ax_default paragraph transition">
- <div id="u23082_div" class=""></div>
- <div id="u23082_text" class="text ">
- <p><span>装修信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23083" class="ax_default paragraph transition">
- <div id="u23083_div" class=""></div>
- <div id="u23083_text" class="text ">
- <p><span>项目:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23084" class="ax_default paragraph transition">
- <div id="u23084_div" class=""></div>
- <div id="u23084_text" class="text ">
- <p><span>西安保利天汇社区</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23085" class="ax_default paragraph transition">
- <div id="u23085_div" class=""></div>
- <div id="u23085_text" class="text ">
- <p><span>房屋:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23086" class="ax_default paragraph transition">
- <div id="u23086_div" class=""></div>
- <div id="u23086_text" class="text ">
- <p><span>3栋A单元203</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23087" class="ax_default paragraph transition">
- <div id="u23087_div" class=""></div>
- <div id="u23087_text" class="text ">
- <p><span>建筑面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23088" class="ax_default paragraph transition">
- <div id="u23088_div" class=""></div>
- <div id="u23088_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23089" class="ax_default paragraph transition">
- <div id="u23089_div" class=""></div>
- <div id="u23089_text" class="text ">
- <p><span>套内面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23090" class="ax_default paragraph transition">
- <div id="u23090_div" class=""></div>
- <div id="u23090_text" class="text ">
- <p><span>225.08平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23091" class="ax_default paragraph transition">
- <div id="u23091_div" class=""></div>
- <div id="u23091_text" class="text ">
- <p><span>计费面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23092" class="ax_default paragraph transition">
- <div id="u23092_div" class=""></div>
- <div id="u23092_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23093" class="ax_default paragraph transition">
- <div id="u23093_div" class=""></div>
- <div id="u23093_text" class="text ">
- <p><span>业主名称:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23094" class="ax_default paragraph transition">
- <div id="u23094_div" class=""></div>
- <div id="u23094_text" class="text ">
- <p><span>张三</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23095" class="ax_default paragraph transition">
- <div id="u23095_div" class=""></div>
- <div id="u23095_text" class="text ">
- <p><span>开始时间;</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23096" class="ax_default paragraph transition">
- <div id="u23096_div" class=""></div>
- <div id="u23096_text" class="text ">
- <p><span>2025/07/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23097" class="ax_default paragraph transition">
- <div id="u23097_div" class=""></div>
- <div id="u23097_text" class="text ">
- <p><span>拟结束时间:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23098" class="ax_default paragraph transition">
- <div id="u23098_div" class=""></div>
- <div id="u23098_text" class="text ">
- <p><span>2025/09/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23099" class="ax_default paragraph transition">
- <div id="u23099_div" class=""></div>
- <div id="u23099_text" class="text ">
- <p><span>备注信息:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23100" class="ax_default paragraph transition">
- <div id="u23100_div" class=""></div>
- <div id="u23100_text" class="text ">
- <p><span>显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23101" class="ax_default paragraph transition">
- <div id="u23101_div" class=""></div>
- <div id="u23101_text" class="text ">
- <p><span>账单费用明细</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23102" class="ax_default paragraph transition">
- <div id="u23102_div" class=""></div>
- <div id="u23102_text" class="text ">
- <p><span>*是否退款:</span></p>
- </div>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u23103" class="ax_default radio_button selected">
- <label id="u23103_input_label" for="u23103_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u23103.svg" id="u23103_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="u23103_text" class="text ">
- <p><span>是</span></p>
- </div>
- </label>
- <input id="u23103_input" type="radio" value="radio" name="u23103" checked/>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u23104" class="ax_default radio_button">
- <label id="u23104_input_label" for="u23104_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u23104.svg" id="u23104_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="u23104_text" class="text ">
- <p><span>否</span></p>
- </div>
- </label>
- <input id="u23104_input" type="radio" value="radio" name="u23104"/>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23105" class="ax_default paragraph transition">
- <div id="u23105_div" class=""></div>
- <div id="u23105_text" class="text ">
- <p><span>完成验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23106" class="ax_default paragraph transition">
- <div id="u23106_div" class=""></div>
- <div id="u23106_text" class="text ">
- <p><span>验收说明:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23107" class="ax_default" data-left="1229" data-top="1008" data-width="795" data-height="80" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23108" class="ax_default shape transition">
- <div id="u23108_div" class=""></div>
- <div id="u23108_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23109" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23109_div" class=""></div>
- <input id="u23109_input" type="text" value="" class="u23109_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23110" class="ax_default paragraph transition">
- <div id="u23110_div" class=""></div>
- <div id="u23110_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23111" class="ax_default paragraph transition">
- <div id="u23111_div" class=""></div>
- <div id="u23111_text" class="text ">
- <p><span>+添加</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u23112" class="ax_default icon transition">
- <svg data="images/完成验收/u23020.svg" id="u23112_img" class="img generatedImage">
- <defs>
- <pattern id="u23112_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23112_img_cl1255">
- <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(#u23112_img_cl1255)" />
- <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(#u23112_img_cl1255)" />
- </g>
- </svg>
- <div id="u23112_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23113" class="ax_default paragraph transition">
- <div id="u23113_div" class=""></div>
- <div id="u23113_text" class="text ">
- <p><span>*退款方式:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23114" class="ax_default" data-left="1267" data-top="868" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23115" class="ax_default box_1 transition">
- <div id="u23115_div" class=""></div>
- <div id="u23115_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23116" class="ax_default droplist transition">
- <div id="u23116_div" class=""></div>
- <select id="u23116_input" class="u23116_input">
- <option class="u23116_input_option" value="选择付款方式">选择付款方式</option>
- <option class="u23116_input_option" value="转为预存款">转为预存款</option>
- <option class="u23116_input_option" selected value="线上原路返回">线上原路返回</option>
- <option class="u23116_input_option" value="线下银行卡转账">线下银行卡转账</option>
- <option class="u23116_input_option" value="线下第三方转账">线下第三方转账</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23117" class="ax_default paragraph transition">
- <div id="u23117_div" class=""></div>
- <div id="u23117_text" class="text ">
- <p><span>*退款项目:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23118" class="ax_default" data-left="1267" data-top="818" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23119" class="ax_default box_1 transition">
- <div id="u23119_div" class=""></div>
- <div id="u23119_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23120" class="ax_default droplist transition">
- <div id="u23120_div" class=""></div>
- <select id="u23120_input" class="u23120_input">
- <option class="u23120_input_option" value="室内清洁费">室内清洁费</option>
- <option class="u23120_input_option" value="小时计费">小时计费</option>
- <option class="u23120_input_option" value="指定">指定</option>
- <option class="u23120_input_option" value="合同-固定">合同-固定</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23121" class="ax_default paragraph transition">
- <div id="u23121_div" class=""></div>
- <div id="u23121_text" class="text ">
- <p><span>*退款金额:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23122" class="ax_default" data-left="1709" data-top="818" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23123" class="ax_default shape transition">
- <div id="u23123_div" class=""></div>
- <div id="u23123_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23124" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23124_div" class=""></div>
- <input id="u23124_input" type="text" value="" class="u23124_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23125" class="ax_default paragraph transition">
- <div id="u23125_div" class=""></div>
- <div id="u23125_text" class="text ">
- <p><span>*退回账户:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23126" class="ax_default" data-left="1709" data-top="868" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23127" class="ax_default shape transition">
- <div id="u23127_div" class=""></div>
- <div id="u23127_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23128" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23128_div" class=""></div>
- <input id="u23128_input" type="text" value="微信支付" class="u23128_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23129" class="ax_default paragraph transition">
- <div id="u23129_div" class=""></div>
- <div id="u23129_text" class="text ">
- <p><span>非线上缴费,不支持线上原路返回</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23130" class="ax_default paragraph transition">
- <div id="u23130_div" class=""></div>
- <div id="u23130_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23131" class="ax_default paragraph transition">
- <div id="u23131_div" class=""></div>
- <div id="u23131_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23132" class="ax_default paragraph transition">
- <div id="u23132_div" class=""></div>
- <div id="u23132_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23133" class="ax_default" data-left="3076" data-top="59" data-width="52" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23134" class="ax_default paragraph transition">
- <div id="u23134_div" class=""></div>
- <div id="u23134_text" class="text ">
- <p><span>x</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u23135" class="ax_default icon1 transition">
- <svg data="images/设置/u4554.svg" id="u23135_img" class="img generatedImage">
- <defs>
- <pattern id="u23135_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23135_img_cl394">
- <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(#u23135_img_cl394)" />
- <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(#u23135_img_cl394)" />
- <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(#u23135_img_cl394)" />
- </g>
- </svg>
- <div id="u23135_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23136" class="ax_default" data-left="2128" data-top="1253" data-width="1000" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23137" class="ax_default paragraph transition">
- <div id="u23137_div" class=""></div>
- <div id="u23137_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23138" class="ax_default box_1 transition">
- <div id="u23138_div" class=""></div>
- <div id="u23138_text" class="text ">
- <p><span>提交验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23139" class="ax_default box_1 transition">
- <div id="u23139_div" class=""></div>
- <div id="u23139_text" class="text ">
- <p><span>取消</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Table) -->
- <div id="u23140" class="ax_default">
- <!-- Unnamed (Table cell) -->
- <div id="u23141" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22925.svg" id="u23141_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="u23141_text" class="text ">
- <p><span>收费标准名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23142" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22926.svg" id="u23142_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="u23142_text" class="text ">
- <p><span>计费方式</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23143" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22927.svg" id="u23143_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="u23143_text" class="text ">
- <p><span>开始日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23144" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22928.svg" id="u23144_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="u23144_text" class="text ">
- <p><span>结束日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23145" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22929.svg" id="u23145_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="u23145_text" class="text ">
- <p><span>金额</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23146" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22930.svg" id="u23146_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="u23146_text" class="text ">
- <p><span>收费对象类型</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23147" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22931.svg" id="u23147_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="u23147_text" class="text ">
- <p><span>收费对象</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23148" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22932.svg" id="u23148_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="u23148_text" class="text ">
- <p><span>收费状态</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23149" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22933.svg" id="u23149_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="u23149_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23150" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22934.svg" id="u23150_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="u23150_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23151" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22935.svg" id="u23151_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="u23151_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23152" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22936.svg" id="u23152_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="u23152_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23153" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22937.svg" id="u23153_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="u23153_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23154" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22938.svg" id="u23154_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="u23154_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23155" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22939.svg" id="u23155_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="u23155_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23156" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22940.svg" id="u23156_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="u23156_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23157" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22941.svg" id="u23157_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="u23157_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23158" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22942.svg" id="u23158_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="u23158_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23159" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22943.svg" id="u23159_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="u23159_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23160" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22944.svg" id="u23160_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="u23160_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23161" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22945.svg" id="u23161_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="u23161_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23162" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22946.svg" id="u23162_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="u23162_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23163" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22947.svg" id="u23163_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="u23163_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23164" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22948.svg" id="u23164_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="u23164_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23165" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22949.svg" id="u23165_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="u23165_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23166" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22950.svg" id="u23166_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="u23166_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23167" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22951.svg" id="u23167_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="u23167_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23168" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22952.svg" id="u23168_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="u23168_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23169" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22953.svg" id="u23169_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="u23169_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23170" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22954.svg" id="u23170_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="u23170_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23171" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22955.svg" id="u23171_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="u23171_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23172" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22956.svg" id="u23172_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="u23172_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23173" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22957.svg" id="u23173_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="u23173_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23174" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22958.svg" id="u23174_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="u23174_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23175" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22959.svg" id="u23175_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="u23175_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23176" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22960.svg" id="u23176_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="u23176_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23177" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22961.svg" id="u23177_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="u23177_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23178" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22962.svg" id="u23178_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="u23178_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23179" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22963.svg" id="u23179_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="u23179_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23180" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22964.svg" id="u23180_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="u23180_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23181" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22965.svg" id="u23181_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="u23181_text" class="text ">
- <p><span>总计</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23182" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22966.svg" id="u23182_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="u23182_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23183" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22967.svg" id="u23183_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="u23183_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23184" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22968.svg" id="u23184_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="u23184_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23185" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22969.svg" id="u23185_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="u23185_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23186" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22970.svg" id="u23186_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="u23186_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23187" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22971.svg" id="u23187_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="u23187_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23188" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22972.svg" id="u23188_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="u23188_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23189" class="ax_default paragraph transition">
- <div id="u23189_div" class=""></div>
- <div id="u23189_text" class="text ">
- <p><span>验收确认</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23190" class="ax_default paragraph transition">
- <div id="u23190_div" class=""></div>
- <div id="u23190_text" class="text ">
- <p><span>装修信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23191" class="ax_default paragraph transition">
- <div id="u23191_div" class=""></div>
- <div id="u23191_text" class="text ">
- <p><span>社区:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23192" class="ax_default paragraph transition">
- <div id="u23192_div" class=""></div>
- <div id="u23192_text" class="text ">
- <p><span>西安保利天汇社区</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23193" class="ax_default paragraph transition">
- <div id="u23193_div" class=""></div>
- <div id="u23193_text" class="text ">
- <p><span>房屋:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23194" class="ax_default paragraph transition">
- <div id="u23194_div" class=""></div>
- <div id="u23194_text" class="text ">
- <p><span>3栋A单元203</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23195" class="ax_default paragraph transition">
- <div id="u23195_div" class=""></div>
- <div id="u23195_text" class="text ">
- <p><span>建筑面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23196" class="ax_default paragraph transition">
- <div id="u23196_div" class=""></div>
- <div id="u23196_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23197" class="ax_default paragraph transition">
- <div id="u23197_div" class=""></div>
- <div id="u23197_text" class="text ">
- <p><span>套内面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23198" class="ax_default paragraph transition">
- <div id="u23198_div" class=""></div>
- <div id="u23198_text" class="text ">
- <p><span>225.08平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23199" class="ax_default paragraph transition">
- <div id="u23199_div" class=""></div>
- <div id="u23199_text" class="text ">
- <p><span>计费面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23200" class="ax_default paragraph transition">
- <div id="u23200_div" class=""></div>
- <div id="u23200_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23201" class="ax_default paragraph transition">
- <div id="u23201_div" class=""></div>
- <div id="u23201_text" class="text ">
- <p><span>业主名称:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23202" class="ax_default paragraph transition">
- <div id="u23202_div" class=""></div>
- <div id="u23202_text" class="text ">
- <p><span>张三</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23203" class="ax_default paragraph transition">
- <div id="u23203_div" class=""></div>
- <div id="u23203_text" class="text ">
- <p><span>开始时间;</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23204" class="ax_default paragraph transition">
- <div id="u23204_div" class=""></div>
- <div id="u23204_text" class="text ">
- <p><span>2025/07/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23205" class="ax_default paragraph transition">
- <div id="u23205_div" class=""></div>
- <div id="u23205_text" class="text ">
- <p><span>拟结束时间:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23206" class="ax_default paragraph transition">
- <div id="u23206_div" class=""></div>
- <div id="u23206_text" class="text ">
- <p><span>2025/09/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23207" class="ax_default paragraph transition">
- <div id="u23207_div" class=""></div>
- <div id="u23207_text" class="text ">
- <p><span>备注信息:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23208" class="ax_default paragraph transition">
- <div id="u23208_div" class=""></div>
- <div id="u23208_text" class="text ">
- <p><span>显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23209" class="ax_default paragraph transition">
- <div id="u23209_div" class=""></div>
- <div id="u23209_text" class="text ">
- <p><span>账单费用明细</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23210" class="ax_default paragraph transition">
- <div id="u23210_div" class=""></div>
- <div id="u23210_text" class="text ">
- <p><span>*是否退款:</span></p>
- </div>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u23211" class="ax_default radio_button selected">
- <label id="u23211_input_label" for="u23211_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u23211.svg" id="u23211_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="u23211_text" class="text ">
- <p><span>是</span></p>
- </div>
- </label>
- <input id="u23211_input" type="radio" value="radio" name="u23211" checked/>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u23212" class="ax_default radio_button">
- <label id="u23212_input_label" for="u23212_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u23212.svg" id="u23212_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="u23212_text" class="text ">
- <p><span>否</span></p>
- </div>
- </label>
- <input id="u23212_input" type="radio" value="radio" name="u23212"/>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23213" class="ax_default paragraph transition">
- <div id="u23213_div" class=""></div>
- <div id="u23213_text" class="text ">
- <p><span>完成验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23214" class="ax_default paragraph transition">
- <div id="u23214_div" class=""></div>
- <div id="u23214_text" class="text ">
- <p><span>验收说明:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23215" class="ax_default" data-left="2249" data-top="1138" data-width="795" data-height="80" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23216" class="ax_default shape transition">
- <div id="u23216_div" class=""></div>
- <div id="u23216_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23217" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23217_div" class=""></div>
- <input id="u23217_input" type="text" value="" class="u23217_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23218" class="ax_default paragraph transition">
- <div id="u23218_div" class=""></div>
- <div id="u23218_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23219" class="ax_default paragraph transition">
- <div id="u23219_div" class=""></div>
- <div id="u23219_text" class="text ">
- <p><span>+添加</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u23220" class="ax_default icon transition">
- <svg data="images/完成验收/u23020.svg" id="u23220_img" class="img generatedImage">
- <defs>
- <pattern id="u23220_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23220_img_cl1255">
- <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(#u23220_img_cl1255)" />
- <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(#u23220_img_cl1255)" />
- </g>
- </svg>
- <div id="u23220_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23221" class="ax_default paragraph transition">
- <div id="u23221_div" class=""></div>
- <div id="u23221_text" class="text ">
- <p><span>*退款方式:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23222" class="ax_default" data-left="2279" data-top="868" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23223" class="ax_default box_1 transition">
- <div id="u23223_div" class=""></div>
- <div id="u23223_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23224" class="ax_default droplist transition">
- <div id="u23224_div" class=""></div>
- <select id="u23224_input" class="u23224_input">
- <option class="u23224_input_option" value="选择付款方式">选择付款方式</option>
- <option class="u23224_input_option" value="转为预存款">转为预存款</option>
- <option class="u23224_input_option" value="线上原路返回">线上原路返回</option>
- <option class="u23224_input_option" selected value="支付宝转账">支付宝转账</option>
- <option class="u23224_input_option" value="微信转账">微信转账</option>
- <option class="u23224_input_option" value="银行卡转账">银行卡转账</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23225" class="ax_default paragraph transition">
- <div id="u23225_div" class=""></div>
- <div id="u23225_text" class="text ">
- <p><span>*退款项目:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23226" class="ax_default" data-left="2279" data-top="818" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23227" class="ax_default box_1 transition">
- <div id="u23227_div" class=""></div>
- <div id="u23227_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23228" class="ax_default droplist transition">
- <div id="u23228_div" class=""></div>
- <select id="u23228_input" class="u23228_input">
- <option class="u23228_input_option" value="室内清洁费">室内清洁费</option>
- <option class="u23228_input_option" value="小时计费">小时计费</option>
- <option class="u23228_input_option" value="指定">指定</option>
- <option class="u23228_input_option" value="合同-固定">合同-固定</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23229" class="ax_default paragraph transition">
- <div id="u23229_div" class=""></div>
- <div id="u23229_text" class="text ">
- <p><span>*退款金额:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23230" class="ax_default" data-left="2721" data-top="818" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23231" class="ax_default shape transition">
- <div id="u23231_div" class=""></div>
- <div id="u23231_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23232" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23232_div" class=""></div>
- <input id="u23232_input" type="text" value="" class="u23232_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23233" class="ax_default paragraph transition">
- <div id="u23233_div" class=""></div>
- <div id="u23233_text" class="text ">
- <p><span>*支付宝账号:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23234" class="ax_default paragraph transition">
- <div id="u23234_div" class=""></div>
- <div id="u23234_text" class="text ">
- <p><span>退款备注:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23235" class="ax_default" data-left="2279" data-top="1017" data-width="300" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23236" class="ax_default shape transition">
- <div id="u23236_div" class=""></div>
- <div id="u23236_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23237" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23237_div" class=""></div>
- <input id="u23237_input" type="text" value="" class="u23237_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23238" class="ax_default" data-left="2721" data-top="868" data-width="299" data-height="38" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23239" class="ax_default box_1 transition">
- <div id="u23239_div" class=""></div>
- <div id="u23239_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23240" class="ax_default label transition">
- <div id="u23240_div" class=""></div>
- <div id="u23240_text" class="text ">
- <p><span>2023/10/01 10:33</span></p>
- </div>
- </div>
- <!-- Unnamed (Image) -->
- <div id="u23241" class="ax_default image transition">
- <img id="u23241_img" class="img " src="images/新增房屋/u6205.png"/>
- <div id="u23241_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23242" class="ax_default paragraph transition">
- <div id="u23242_div" class=""></div>
- <div id="u23242_text" class="text ">
- <p><span>*退款时间:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23243" class="ax_default paragraph transition">
- <div id="u23243_div" class=""></div>
- <div id="u23243_text" class="text ">
- <p><span>*收款方:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23244" class="ax_default" data-left="2722" data-top="918" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23245" class="ax_default shape transition">
- <div id="u23245_div" class=""></div>
- <div id="u23245_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23246" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23246_div" class=""></div>
- <input id="u23246_input" type="text" value="" class="u23246_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23247" class="ax_default paragraph transition">
- <div id="u23247_div" class=""></div>
- <div id="u23247_text" class="text ">
- <p><span>*收款账号:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23248" class="ax_default" data-left="2279" data-top="967" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23249" class="ax_default shape transition">
- <div id="u23249_div" class=""></div>
- <div id="u23249_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23250" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23250_div" class=""></div>
- <input id="u23250_input" type="text" value="" class="u23250_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23251" class="ax_default" data-left="2280" data-top="918" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23252" class="ax_default box_1 transition">
- <div id="u23252_div" class=""></div>
- <div id="u23252_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23253" class="ax_default droplist transition">
- <div id="u23253_div" class=""></div>
- <select id="u23253_input" class="u23253_input">
- <option class="u23253_input_option" value="支付宝转账">支付宝转账</option>
- <option class="u23253_input_option" value="微信转账">微信转账</option>
- <option class="u23253_input_option" value="银行卡转账">银行卡转账</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23254" class="ax_default paragraph transition">
- <div id="u23254_div" class=""></div>
- <div id="u23254_text" class="text ">
- <p><span>*交易凭证:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23255" class="ax_default" data-left="2723" data-top="968" data-width="108" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23256" class="ax_default shape transition">
- <div id="u23256_div" class=""></div>
- <div id="u23256_text" class="text ">
- <p><span>+</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23257" class="ax_default paragraph transition">
- <div id="u23257_div" class=""></div>
- <div id="u23257_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23258" class="ax_default paragraph transition">
- <div id="u23258_div" class=""></div>
- <div id="u23258_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23259" class="ax_default paragraph transition">
- <div id="u23259_div" class=""></div>
- <div id="u23259_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23260" class="ax_default" data-left="4096" data-top="59" data-width="52" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23261" class="ax_default paragraph transition">
- <div id="u23261_div" class=""></div>
- <div id="u23261_text" class="text ">
- <p><span>x</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u23262" class="ax_default icon1 transition">
- <svg data="images/设置/u4554.svg" id="u23262_img" class="img generatedImage">
- <defs>
- <pattern id="u23262_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23262_img_cl394">
- <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(#u23262_img_cl394)" />
- <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(#u23262_img_cl394)" />
- <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(#u23262_img_cl394)" />
- </g>
- </svg>
- <div id="u23262_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23263" class="ax_default" data-left="3148" data-top="1253" data-width="1000" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23264" class="ax_default paragraph transition">
- <div id="u23264_div" class=""></div>
- <div id="u23264_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23265" class="ax_default box_1 transition">
- <div id="u23265_div" class=""></div>
- <div id="u23265_text" class="text ">
- <p><span>提交验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23266" class="ax_default box_1 transition">
- <div id="u23266_div" class=""></div>
- <div id="u23266_text" class="text ">
- <p><span>取消</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Table) -->
- <div id="u23267" class="ax_default">
- <!-- Unnamed (Table cell) -->
- <div id="u23268" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22925.svg" id="u23268_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="u23268_text" class="text ">
- <p><span>收费标准名称</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23269" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22926.svg" id="u23269_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="u23269_text" class="text ">
- <p><span>计费方式</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23270" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22927.svg" id="u23270_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="u23270_text" class="text ">
- <p><span>开始日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23271" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22928.svg" id="u23271_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="u23271_text" class="text ">
- <p><span>结束日期</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23272" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22929.svg" id="u23272_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="u23272_text" class="text ">
- <p><span>金额</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23273" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22930.svg" id="u23273_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="u23273_text" class="text ">
- <p><span>收费对象类型</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23274" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22931.svg" id="u23274_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="u23274_text" class="text ">
- <p><span>收费对象</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23275" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22932.svg" id="u23275_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="u23275_text" class="text ">
- <p><span>收费状态</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23276" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22933.svg" id="u23276_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="u23276_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23277" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22934.svg" id="u23277_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="u23277_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23278" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22935.svg" id="u23278_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="u23278_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23279" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22936.svg" id="u23279_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="u23279_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23280" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22937.svg" id="u23280_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="u23280_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23281" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22938.svg" id="u23281_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="u23281_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23282" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22939.svg" id="u23282_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="u23282_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23283" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22940.svg" id="u23283_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="u23283_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23284" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22941.svg" id="u23284_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="u23284_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23285" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22942.svg" id="u23285_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="u23285_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23286" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22943.svg" id="u23286_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="u23286_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23287" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22944.svg" id="u23287_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="u23287_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23288" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22945.svg" id="u23288_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="u23288_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23289" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22946.svg" id="u23289_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="u23289_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23290" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22947.svg" id="u23290_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="u23290_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23291" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22948.svg" id="u23291_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="u23291_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23292" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22949.svg" id="u23292_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="u23292_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23293" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22950.svg" id="u23293_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="u23293_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23294" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22951.svg" id="u23294_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="u23294_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23295" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22952.svg" id="u23295_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="u23295_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23296" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22953.svg" id="u23296_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="u23296_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23297" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22954.svg" id="u23297_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="u23297_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23298" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22955.svg" id="u23298_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="u23298_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23299" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22956.svg" id="u23299_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="u23299_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23300" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22957.svg" id="u23300_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="u23300_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23301" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22958.svg" id="u23301_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="u23301_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23302" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22959.svg" id="u23302_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="u23302_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23303" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22960.svg" id="u23303_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="u23303_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23304" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22961.svg" id="u23304_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="u23304_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23305" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22962.svg" id="u23305_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="u23305_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23306" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22963.svg" id="u23306_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="u23306_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23307" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22964.svg" id="u23307_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="u23307_text" class="text ">
- <p><span>已收费</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23308" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22965.svg" id="u23308_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="u23308_text" class="text ">
- <p><span>总计</span></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23309" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22966.svg" id="u23309_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="u23309_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23310" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22967.svg" id="u23310_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="u23310_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23311" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22968.svg" id="u23311_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="u23311_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23312" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22969.svg" id="u23312_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="u23312_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23313" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22970.svg" id="u23313_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="u23313_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23314" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22971.svg" id="u23314_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="u23314_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Table cell) -->
- <div id="u23315" class="ax_default table_cell transition">
- <svg data="images/完成验收/u22972.svg" id="u23315_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="u23315_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23316" class="ax_default paragraph transition">
- <div id="u23316_div" class=""></div>
- <div id="u23316_text" class="text ">
- <p><span>验收确认</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23317" class="ax_default paragraph transition">
- <div id="u23317_div" class=""></div>
- <div id="u23317_text" class="text ">
- <p><span>装修信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23318" class="ax_default paragraph transition">
- <div id="u23318_div" class=""></div>
- <div id="u23318_text" class="text ">
- <p><span>社区:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23319" class="ax_default paragraph transition">
- <div id="u23319_div" class=""></div>
- <div id="u23319_text" class="text ">
- <p><span>西安保利天汇社区</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23320" class="ax_default paragraph transition">
- <div id="u23320_div" class=""></div>
- <div id="u23320_text" class="text ">
- <p><span>房屋:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23321" class="ax_default paragraph transition">
- <div id="u23321_div" class=""></div>
- <div id="u23321_text" class="text ">
- <p><span>3栋A单元203</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23322" class="ax_default paragraph transition">
- <div id="u23322_div" class=""></div>
- <div id="u23322_text" class="text ">
- <p><span>建筑面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23323" class="ax_default paragraph transition">
- <div id="u23323_div" class=""></div>
- <div id="u23323_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23324" class="ax_default paragraph transition">
- <div id="u23324_div" class=""></div>
- <div id="u23324_text" class="text ">
- <p><span>套内面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23325" class="ax_default paragraph transition">
- <div id="u23325_div" class=""></div>
- <div id="u23325_text" class="text ">
- <p><span>225.08平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23326" class="ax_default paragraph transition">
- <div id="u23326_div" class=""></div>
- <div id="u23326_text" class="text ">
- <p><span>计费面积:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23327" class="ax_default paragraph transition">
- <div id="u23327_div" class=""></div>
- <div id="u23327_text" class="text ">
- <p><span>300.00平方米</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23328" class="ax_default paragraph transition">
- <div id="u23328_div" class=""></div>
- <div id="u23328_text" class="text ">
- <p><span>业主名称:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23329" class="ax_default paragraph transition">
- <div id="u23329_div" class=""></div>
- <div id="u23329_text" class="text ">
- <p><span>张三</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23330" class="ax_default paragraph transition">
- <div id="u23330_div" class=""></div>
- <div id="u23330_text" class="text ">
- <p><span>开始时间;</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23331" class="ax_default paragraph transition">
- <div id="u23331_div" class=""></div>
- <div id="u23331_text" class="text ">
- <p><span>2025/07/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23332" class="ax_default paragraph transition">
- <div id="u23332_div" class=""></div>
- <div id="u23332_text" class="text ">
- <p><span>拟结束时间:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23333" class="ax_default paragraph transition">
- <div id="u23333_div" class=""></div>
- <div id="u23333_text" class="text ">
- <p><span>2025/09/28</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23334" class="ax_default paragraph transition">
- <div id="u23334_div" class=""></div>
- <div id="u23334_text" class="text ">
- <p><span>备注信息:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23335" class="ax_default paragraph transition">
- <div id="u23335_div" class=""></div>
- <div id="u23335_text" class="text ">
- <p><span>显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息显示备注信息</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23336" class="ax_default paragraph transition">
- <div id="u23336_div" class=""></div>
- <div id="u23336_text" class="text ">
- <p><span>账单费用明细</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23337" class="ax_default paragraph transition">
- <div id="u23337_div" class=""></div>
- <div id="u23337_text" class="text ">
- <p><span>*是否退款:</span></p>
- </div>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u23338" class="ax_default radio_button selected">
- <label id="u23338_input_label" for="u23338_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u23338.svg" id="u23338_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="u23338_text" class="text ">
- <p><span>是</span></p>
- </div>
- </label>
- <input id="u23338_input" type="radio" value="radio" name="u23338" checked/>
- </div>
- <!-- Unnamed (Radio button) -->
- <div id="u23339" class="ax_default radio_button">
- <label id="u23339_input_label" for="u23339_input" style="position: absolute; left: 0px;">
- <svg data="images/完成验收/u23339.svg" id="u23339_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="u23339_text" class="text ">
- <p><span>否</span></p>
- </div>
- </label>
- <input id="u23339_input" type="radio" value="radio" name="u23339"/>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23340" class="ax_default paragraph transition">
- <div id="u23340_div" class=""></div>
- <div id="u23340_text" class="text ">
- <p><span>完成验收</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23341" class="ax_default paragraph transition">
- <div id="u23341_div" class=""></div>
- <div id="u23341_text" class="text ">
- <p><span>验收说明:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23342" class="ax_default" data-left="3269" data-top="1138" data-width="795" data-height="80" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23343" class="ax_default shape transition">
- <div id="u23343_div" class=""></div>
- <div id="u23343_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23344" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23344_div" class=""></div>
- <input id="u23344_input" type="text" value="" class="u23344_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23345" class="ax_default paragraph transition">
- <div id="u23345_div" class=""></div>
- <div id="u23345_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23346" class="ax_default paragraph transition">
- <div id="u23346_div" class=""></div>
- <div id="u23346_text" class="text ">
- <p><span>+添加</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u23347" class="ax_default icon transition">
- <svg data="images/完成验收/u23020.svg" id="u23347_img" class="img generatedImage">
- <defs>
- <pattern id="u23347_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23347_img_cl1255">
- <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(#u23347_img_cl1255)" />
- <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(#u23347_img_cl1255)" />
- </g>
- </svg>
- <div id="u23347_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23348" class="ax_default paragraph transition">
- <div id="u23348_div" class=""></div>
- <div id="u23348_text" class="text ">
- <p><span>*退款方式:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23349" class="ax_default" data-left="3295" data-top="868" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23350" class="ax_default box_1 transition">
- <div id="u23350_div" class=""></div>
- <div id="u23350_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23351" class="ax_default droplist transition">
- <div id="u23351_div" class=""></div>
- <select id="u23351_input" class="u23351_input">
- <option class="u23351_input_option" value="选择付款方式">选择付款方式</option>
- <option class="u23351_input_option" value="转为预存款">转为预存款</option>
- <option class="u23351_input_option" value="线上原路返回">线上原路返回</option>
- <option class="u23351_input_option" selected value="线下银行卡转账">线下银行卡转账</option>
- <option class="u23351_input_option" value="线下第三方转账">线下第三方转账</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23352" class="ax_default paragraph transition">
- <div id="u23352_div" class=""></div>
- <div id="u23352_text" class="text ">
- <p><span>*退款项目:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23353" class="ax_default" data-left="3295" data-top="818" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23354" class="ax_default box_1 transition">
- <div id="u23354_div" class=""></div>
- <div id="u23354_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23355" class="ax_default droplist transition">
- <div id="u23355_div" class=""></div>
- <select id="u23355_input" class="u23355_input">
- <option class="u23355_input_option" value="室内清洁费">室内清洁费</option>
- <option class="u23355_input_option" value="小时计费">小时计费</option>
- <option class="u23355_input_option" value="指定">指定</option>
- <option class="u23355_input_option" value="合同-固定">合同-固定</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23356" class="ax_default paragraph transition">
- <div id="u23356_div" class=""></div>
- <div id="u23356_text" class="text ">
- <p><span>*退款金额:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23357" class="ax_default" data-left="3737" data-top="818" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23358" class="ax_default shape transition">
- <div id="u23358_div" class=""></div>
- <div id="u23358_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23359" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23359_div" class=""></div>
- <input id="u23359_input" type="text" value="" class="u23359_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23360" class="ax_default paragraph transition">
- <div id="u23360_div" class=""></div>
- <div id="u23360_text" class="text ">
- <p><span>*收款银行:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23361" class="ax_default paragraph transition">
- <div id="u23361_div" class=""></div>
- <div id="u23361_text" class="text ">
- <p><span>*退款账号:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23362" class="ax_default paragraph transition">
- <div id="u23362_div" class=""></div>
- <div id="u23362_text" class="text ">
- <p><span>退款备注:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23363" class="ax_default" data-left="3737" data-top="1017" data-width="300" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23364" class="ax_default shape transition">
- <div id="u23364_div" class=""></div>
- <div id="u23364_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23365" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23365_div" class=""></div>
- <input id="u23365_input" type="text" value="" class="u23365_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23366" class="ax_default" data-left="3737" data-top="868" data-width="299" data-height="38" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23367" class="ax_default box_1 transition">
- <div id="u23367_div" class=""></div>
- <div id="u23367_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23368" class="ax_default label transition">
- <div id="u23368_div" class=""></div>
- <div id="u23368_text" class="text ">
- <p><span>2023/10/01 10:33</span></p>
- </div>
- </div>
- <!-- Unnamed (Image) -->
- <div id="u23369" class="ax_default image transition">
- <img id="u23369_img" class="img " src="images/新增房屋/u6205.png"/>
- <div id="u23369_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23370" class="ax_default paragraph transition">
- <div id="u23370_div" class=""></div>
- <div id="u23370_text" class="text ">
- <p><span>*退款时间:</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23371" class="ax_default paragraph transition">
- <div id="u23371_div" class=""></div>
- <div id="u23371_text" class="text ">
- <p><span>*收款方:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23372" class="ax_default" data-left="3295" data-top="967" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23373" class="ax_default shape transition">
- <div id="u23373_div" class=""></div>
- <div id="u23373_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23374" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23374_div" class=""></div>
- <input id="u23374_input" type="text" value="" class="u23374_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23375" class="ax_default paragraph transition">
- <div id="u23375_div" class=""></div>
- <div id="u23375_text" class="text ">
- <p><span>*收款账号:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23376" class="ax_default" data-left="3737" data-top="967" data-width="300" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23377" class="ax_default shape transition">
- <div id="u23377_div" class=""></div>
- <div id="u23377_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23378" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23378_div" class=""></div>
- <input id="u23378_input" type="text" value="" class="u23378_input"/>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23379" class="ax_default" data-left="3296" data-top="918" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23380" class="ax_default box_1 transition">
- <div id="u23380_div" class=""></div>
- <div id="u23380_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23381" class="ax_default droplist transition">
- <div id="u23381_div" class=""></div>
- <select id="u23381_input" class="u23381_input">
- <option class="u23381_input_option" value="请选择">请选择</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23382" class="ax_default paragraph transition">
- <div id="u23382_div" class=""></div>
- <div id="u23382_text" class="text ">
- <p><span>*交易凭证:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23383" class="ax_default" data-left="3295" data-top="1017" data-width="108" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23384" class="ax_default shape transition">
- <div id="u23384_div" class=""></div>
- <div id="u23384_text" class="text ">
- <p><span>+</span></p>
- </div>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23385" class="ax_default" data-left="3738" data-top="918" data-width="299" data-height="40" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23386" class="ax_default box_1 transition">
- <div id="u23386_div" class=""></div>
- <div id="u23386_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Droplist) -->
- <div id="u23387" class="ax_default droplist transition">
- <div id="u23387_div" class=""></div>
- <select id="u23387_input" class="u23387_input">
- <option class="u23387_input_option" value="请选择">请选择</option>
- </select>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23388" class="ax_default" data-left="689" data-top="908" data-width="380" data-height="164" layer-opacity="1">
- <!-- Unnamed (Group) -->
- <div id="u23389" class="ax_default" data-left="689" data-top="908" data-width="380" data-height="164" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23390" class="ax_default shape transition">
- <div id="u23390_div" class=""></div>
- <div id="u23390_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23391" class="ax_default paragraph transition">
- <div id="u23391_div" class=""></div>
- <div id="u23391_text" class="text ">
- <p><span>确定之后,房屋装修将结束,并根据设置自动完成退款处理。</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23392" class="ax_default paragraph transition">
- <div id="u23392_div" class=""></div>
- <div id="u23392_text" class="text ">
- <p><span>确定提交验收?</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23393" class="ax_default shape transition">
- <div id="u23393_div" class=""></div>
- <div id="u23393_text" class="text ">
- <p><span>确定</span></p>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23394" class="ax_default shape transition">
- <div id="u23394_div" class=""></div>
- <div id="u23394_text" class="text ">
- <p><span>取 消</span></p>
- </div>
- </div>
- <!-- Unnamed (Shape) -->
- <div id="u23395" class="ax_default icon transition">
- <svg data="images/项目列表/u4791.svg" id="u23395_img" class="img generatedImage">
- <defs>
- <pattern id="u23395_img_bgp" patternUnits="userSpaceOnUse" alignment="0 0" imageRepeat="None" />
- <mask fill="white" id="u23395_img_cl411">
- <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(#u23395_img_cl411)" />
- <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(#u23395_img_cl411)" />
- <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(#u23395_img_cl411)" />
- </g>
- </svg>
- <div id="u23395_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23396" class="ax_default paragraph transition">
- <div id="u23396_div" class=""></div>
- <div id="u23396_text" class="text ">
- <p><span>退款备注:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23397" class="ax_default" data-left="236" data-top="918" data-width="300" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23398" class="ax_default shape transition">
- <div id="u23398_div" class=""></div>
- <div id="u23398_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23399" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23399_div" class=""></div>
- <input id="u23399_input" type="text" value="" class="u23399_input"/>
- </div>
- </div>
- <!-- Unnamed (Rectangle) -->
- <div id="u23400" class="ax_default paragraph transition">
- <div id="u23400_div" class=""></div>
- <div id="u23400_text" class="text ">
- <p><span>退款备注:</span></p>
- </div>
- </div>
- <!-- Unnamed (Group) -->
- <div id="u23401" class="ax_default" data-left="1267" data-top="918" data-width="300" data-height="60" layer-opacity="1">
- <!-- Unnamed (Rectangle) -->
- <div id="u23402" class="ax_default shape transition">
- <div id="u23402_div" class=""></div>
- <div id="u23402_text" class="text " style="display:none; visibility: hidden">
- <p></p>
- </div>
- </div>
- <!-- 选项内容 (Text field) -->
- <div id="u23403" class="ax_default text_field transition" data-label="选项内容">
- <div id="u23403_div" class=""></div>
- <input id="u23403_input" type="text" value="" class="u23403_input"/>
- </div>
- </div>
- </div>
- <script src="resources/scripts/axure/ios.js"></script>
- </body>
- </html>
|