ADmultiPanel.prefab 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "ADmultiPanel",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 8
  25. }
  26. ],
  27. "_active": true,
  28. "_components": [
  29. {
  30. "__id__": 166
  31. }
  32. ],
  33. "_prefab": {
  34. "__id__": 167
  35. },
  36. "_opacity": 255,
  37. "_color": {
  38. "__type__": "cc.Color",
  39. "r": 255,
  40. "g": 255,
  41. "b": 255,
  42. "a": 255
  43. },
  44. "_contentSize": {
  45. "__type__": "cc.Size",
  46. "width": 750,
  47. "height": 1334
  48. },
  49. "_anchorPoint": {
  50. "__type__": "cc.Vec2",
  51. "x": 0.5,
  52. "y": 0.5
  53. },
  54. "_trs": {
  55. "__type__": "TypedArray",
  56. "ctor": "Float64Array",
  57. "array": [
  58. 0,
  59. 0,
  60. 0,
  61. 0,
  62. 0,
  63. 0,
  64. 1,
  65. 1,
  66. 1,
  67. 1
  68. ]
  69. },
  70. "_eulerAngles": {
  71. "__type__": "cc.Vec3",
  72. "x": 0,
  73. "y": 0,
  74. "z": 0
  75. },
  76. "_skewX": 0,
  77. "_skewY": 0,
  78. "_is3DNode": false,
  79. "_groupIndex": 0,
  80. "groupIndex": 0,
  81. "_id": ""
  82. },
  83. {
  84. "__type__": "cc.Node",
  85. "_name": "btn_version",
  86. "_objFlags": 0,
  87. "_parent": {
  88. "__id__": 1
  89. },
  90. "_children": [
  91. {
  92. "__id__": 3
  93. }
  94. ],
  95. "_active": true,
  96. "_components": [],
  97. "_prefab": {
  98. "__id__": 7
  99. },
  100. "_opacity": 255,
  101. "_color": {
  102. "__type__": "cc.Color",
  103. "r": 0,
  104. "g": 0,
  105. "b": 0,
  106. "a": 255
  107. },
  108. "_contentSize": {
  109. "__type__": "cc.Size",
  110. "width": 150,
  111. "height": 80
  112. },
  113. "_anchorPoint": {
  114. "__type__": "cc.Vec2",
  115. "x": 0.5,
  116. "y": 0.5
  117. },
  118. "_trs": {
  119. "__type__": "TypedArray",
  120. "ctor": "Float64Array",
  121. "array": [
  122. 0,
  123. -550,
  124. 0,
  125. 0,
  126. 0,
  127. 0,
  128. 1,
  129. 1,
  130. 1,
  131. 1
  132. ]
  133. },
  134. "_eulerAngles": {
  135. "__type__": "cc.Vec3",
  136. "x": 0,
  137. "y": 0,
  138. "z": 0
  139. },
  140. "_skewX": 0,
  141. "_skewY": 0,
  142. "_is3DNode": false,
  143. "_groupIndex": 0,
  144. "groupIndex": 0,
  145. "_id": ""
  146. },
  147. {
  148. "__type__": "cc.Node",
  149. "_name": "label",
  150. "_objFlags": 0,
  151. "_parent": {
  152. "__id__": 2
  153. },
  154. "_children": [],
  155. "_active": true,
  156. "_components": [
  157. {
  158. "__id__": 4
  159. },
  160. {
  161. "__id__": 5
  162. }
  163. ],
  164. "_prefab": {
  165. "__id__": 6
  166. },
  167. "_opacity": 255,
  168. "_color": {
  169. "__type__": "cc.Color",
  170. "r": 255,
  171. "g": 255,
  172. "b": 255,
  173. "a": 255
  174. },
  175. "_contentSize": {
  176. "__type__": "cc.Size",
  177. "width": 98.52,
  178. "height": 56.4
  179. },
  180. "_anchorPoint": {
  181. "__type__": "cc.Vec2",
  182. "x": 0.5,
  183. "y": 0.5
  184. },
  185. "_trs": {
  186. "__type__": "TypedArray",
  187. "ctor": "Float64Array",
  188. "array": [
  189. 0,
  190. 0,
  191. 0,
  192. 0,
  193. 0,
  194. 0,
  195. 1,
  196. 1,
  197. 1,
  198. 1
  199. ]
  200. },
  201. "_eulerAngles": {
  202. "__type__": "cc.Vec3",
  203. "x": 0,
  204. "y": 0,
  205. "z": 0
  206. },
  207. "_skewX": 0,
  208. "_skewY": 0,
  209. "_is3DNode": false,
  210. "_groupIndex": 0,
  211. "groupIndex": 0,
  212. "_id": ""
  213. },
  214. {
  215. "__type__": "cc.Label",
  216. "_name": "",
  217. "_objFlags": 0,
  218. "node": {
  219. "__id__": 3
  220. },
  221. "_enabled": true,
  222. "_materials": [
  223. {
  224. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  225. }
  226. ],
  227. "_srcBlendFactor": 770,
  228. "_dstBlendFactor": 771,
  229. "_string": "V1.0.0",
  230. "_N$string": "V1.0.0",
  231. "_fontSize": 32,
  232. "_lineHeight": 40,
  233. "_enableWrapText": true,
  234. "_N$file": null,
  235. "_isSystemFontUsed": true,
  236. "_spacingX": 0,
  237. "_batchAsBitmap": false,
  238. "_styleFlags": 0,
  239. "_underlineHeight": 0,
  240. "_N$horizontalAlign": 1,
  241. "_N$verticalAlign": 1,
  242. "_N$fontFamily": "Arial",
  243. "_N$overflow": 0,
  244. "_N$cacheMode": 0,
  245. "_id": ""
  246. },
  247. {
  248. "__type__": "cc.LabelOutline",
  249. "_name": "",
  250. "_objFlags": 0,
  251. "node": {
  252. "__id__": 3
  253. },
  254. "_enabled": true,
  255. "_color": {
  256. "__type__": "cc.Color",
  257. "r": 0,
  258. "g": 0,
  259. "b": 0,
  260. "a": 255
  261. },
  262. "_width": 3,
  263. "_id": ""
  264. },
  265. {
  266. "__type__": "cc.PrefabInfo",
  267. "root": {
  268. "__id__": 1
  269. },
  270. "asset": {
  271. "__id__": 0
  272. },
  273. "fileId": "735Ydx6E5DiqZq3uCiVPVX",
  274. "sync": false
  275. },
  276. {
  277. "__type__": "cc.PrefabInfo",
  278. "root": {
  279. "__id__": 1
  280. },
  281. "asset": {
  282. "__id__": 0
  283. },
  284. "fileId": "35obeI1/1HFLY9TQ1jY86g",
  285. "sync": false
  286. },
  287. {
  288. "__type__": "cc.Node",
  289. "_name": "root",
  290. "_objFlags": 0,
  291. "_parent": {
  292. "__id__": 1
  293. },
  294. "_children": [
  295. {
  296. "__id__": 9
  297. },
  298. {
  299. "__id__": 125
  300. }
  301. ],
  302. "_active": true,
  303. "_components": [],
  304. "_prefab": {
  305. "__id__": 165
  306. },
  307. "_opacity": 255,
  308. "_color": {
  309. "__type__": "cc.Color",
  310. "r": 255,
  311. "g": 255,
  312. "b": 255,
  313. "a": 255
  314. },
  315. "_contentSize": {
  316. "__type__": "cc.Size",
  317. "width": 0,
  318. "height": 0
  319. },
  320. "_anchorPoint": {
  321. "__type__": "cc.Vec2",
  322. "x": 0.5,
  323. "y": 0.5
  324. },
  325. "_trs": {
  326. "__type__": "TypedArray",
  327. "ctor": "Float64Array",
  328. "array": [
  329. 0,
  330. 0,
  331. 0,
  332. 0,
  333. 0,
  334. 0,
  335. 1,
  336. 1,
  337. 1,
  338. 1
  339. ]
  340. },
  341. "_eulerAngles": {
  342. "__type__": "cc.Vec3",
  343. "x": 0,
  344. "y": 0,
  345. "z": 0
  346. },
  347. "_skewX": 0,
  348. "_skewY": 0,
  349. "_is3DNode": false,
  350. "_groupIndex": 0,
  351. "groupIndex": 0,
  352. "_id": ""
  353. },
  354. {
  355. "__type__": "cc.Node",
  356. "_name": "node_info",
  357. "_objFlags": 0,
  358. "_parent": {
  359. "__id__": 8
  360. },
  361. "_children": [
  362. {
  363. "__id__": 10
  364. },
  365. {
  366. "__id__": 18
  367. }
  368. ],
  369. "_active": true,
  370. "_components": [],
  371. "_prefab": {
  372. "__id__": 124
  373. },
  374. "_opacity": 255,
  375. "_color": {
  376. "__type__": "cc.Color",
  377. "r": 255,
  378. "g": 255,
  379. "b": 255,
  380. "a": 255
  381. },
  382. "_contentSize": {
  383. "__type__": "cc.Size",
  384. "width": 400,
  385. "height": 800
  386. },
  387. "_anchorPoint": {
  388. "__type__": "cc.Vec2",
  389. "x": 0.5,
  390. "y": 0.5
  391. },
  392. "_trs": {
  393. "__type__": "TypedArray",
  394. "ctor": "Float64Array",
  395. "array": [
  396. 0,
  397. 0,
  398. 0,
  399. 0,
  400. 0,
  401. 0,
  402. 1,
  403. 1,
  404. 1,
  405. 1
  406. ]
  407. },
  408. "_eulerAngles": {
  409. "__type__": "cc.Vec3",
  410. "x": 0,
  411. "y": 0,
  412. "z": 0
  413. },
  414. "_skewX": 0,
  415. "_skewY": 0,
  416. "_is3DNode": false,
  417. "_groupIndex": 0,
  418. "groupIndex": 0,
  419. "_id": ""
  420. },
  421. {
  422. "__type__": "cc.Node",
  423. "_name": "bg",
  424. "_objFlags": 0,
  425. "_parent": {
  426. "__id__": 9
  427. },
  428. "_children": [
  429. {
  430. "__id__": 11
  431. }
  432. ],
  433. "_active": true,
  434. "_components": [
  435. {
  436. "__id__": 15
  437. },
  438. {
  439. "__id__": 16
  440. }
  441. ],
  442. "_prefab": {
  443. "__id__": 17
  444. },
  445. "_opacity": 255,
  446. "_color": {
  447. "__type__": "cc.Color",
  448. "r": 255,
  449. "g": 255,
  450. "b": 255,
  451. "a": 255
  452. },
  453. "_contentSize": {
  454. "__type__": "cc.Size",
  455. "width": 400,
  456. "height": 800
  457. },
  458. "_anchorPoint": {
  459. "__type__": "cc.Vec2",
  460. "x": 0.5,
  461. "y": 0.5
  462. },
  463. "_trs": {
  464. "__type__": "TypedArray",
  465. "ctor": "Float64Array",
  466. "array": [
  467. 0,
  468. 0,
  469. 0,
  470. 0,
  471. 0,
  472. 0,
  473. 1,
  474. 1,
  475. 1,
  476. 1
  477. ]
  478. },
  479. "_eulerAngles": {
  480. "__type__": "cc.Vec3",
  481. "x": 0,
  482. "y": 0,
  483. "z": 0
  484. },
  485. "_skewX": 0,
  486. "_skewY": 0,
  487. "_is3DNode": false,
  488. "_groupIndex": 0,
  489. "groupIndex": 0,
  490. "_id": ""
  491. },
  492. {
  493. "__type__": "cc.Node",
  494. "_name": "bg2",
  495. "_objFlags": 0,
  496. "_parent": {
  497. "__id__": 10
  498. },
  499. "_children": [],
  500. "_active": true,
  501. "_components": [
  502. {
  503. "__id__": 12
  504. },
  505. {
  506. "__id__": 13
  507. }
  508. ],
  509. "_prefab": {
  510. "__id__": 14
  511. },
  512. "_opacity": 255,
  513. "_color": {
  514. "__type__": "cc.Color",
  515. "r": 173,
  516. "g": 173,
  517. "b": 173,
  518. "a": 255
  519. },
  520. "_contentSize": {
  521. "__type__": "cc.Size",
  522. "width": 380,
  523. "height": 780
  524. },
  525. "_anchorPoint": {
  526. "__type__": "cc.Vec2",
  527. "x": 0.5,
  528. "y": 0.5
  529. },
  530. "_trs": {
  531. "__type__": "TypedArray",
  532. "ctor": "Float64Array",
  533. "array": [
  534. 0,
  535. 0,
  536. 0,
  537. 0,
  538. 0,
  539. 0,
  540. 1,
  541. 1,
  542. 1,
  543. 1
  544. ]
  545. },
  546. "_eulerAngles": {
  547. "__type__": "cc.Vec3",
  548. "x": 0,
  549. "y": 0,
  550. "z": 0
  551. },
  552. "_skewX": 0,
  553. "_skewY": 0,
  554. "_is3DNode": false,
  555. "_groupIndex": 0,
  556. "groupIndex": 0,
  557. "_id": ""
  558. },
  559. {
  560. "__type__": "cc.Sprite",
  561. "_name": "",
  562. "_objFlags": 0,
  563. "node": {
  564. "__id__": 11
  565. },
  566. "_enabled": true,
  567. "_materials": [
  568. {
  569. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  570. }
  571. ],
  572. "_srcBlendFactor": 770,
  573. "_dstBlendFactor": 771,
  574. "_spriteFrame": {
  575. "__uuid__": "e76d7821-6b3a-4888-8b5b-4277582a5087"
  576. },
  577. "_type": 0,
  578. "_sizeMode": 0,
  579. "_fillType": 0,
  580. "_fillCenter": {
  581. "__type__": "cc.Vec2",
  582. "x": 0,
  583. "y": 0
  584. },
  585. "_fillStart": 0,
  586. "_fillRange": 0,
  587. "_isTrimmedMode": true,
  588. "_atlas": null,
  589. "_id": ""
  590. },
  591. {
  592. "__type__": "cc.Widget",
  593. "_name": "",
  594. "_objFlags": 0,
  595. "node": {
  596. "__id__": 11
  597. },
  598. "_enabled": true,
  599. "alignMode": 1,
  600. "_target": null,
  601. "_alignFlags": 45,
  602. "_left": 10,
  603. "_right": 10,
  604. "_top": 10,
  605. "_bottom": 10,
  606. "_verticalCenter": 0,
  607. "_horizontalCenter": 0,
  608. "_isAbsLeft": true,
  609. "_isAbsRight": true,
  610. "_isAbsTop": true,
  611. "_isAbsBottom": true,
  612. "_isAbsHorizontalCenter": true,
  613. "_isAbsVerticalCenter": true,
  614. "_originalWidth": 62,
  615. "_originalHeight": 57,
  616. "_id": ""
  617. },
  618. {
  619. "__type__": "cc.PrefabInfo",
  620. "root": {
  621. "__id__": 1
  622. },
  623. "asset": {
  624. "__id__": 0
  625. },
  626. "fileId": "1cKuYu1KZE9a7GvCy+srzY",
  627. "sync": false
  628. },
  629. {
  630. "__type__": "cc.Sprite",
  631. "_name": "",
  632. "_objFlags": 0,
  633. "node": {
  634. "__id__": 10
  635. },
  636. "_enabled": true,
  637. "_materials": [
  638. {
  639. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  640. }
  641. ],
  642. "_srcBlendFactor": 770,
  643. "_dstBlendFactor": 771,
  644. "_spriteFrame": {
  645. "__uuid__": "a889af7a-9dbd-4055-9ed7-8fbd459ae7f3"
  646. },
  647. "_type": 1,
  648. "_sizeMode": 0,
  649. "_fillType": 0,
  650. "_fillCenter": {
  651. "__type__": "cc.Vec2",
  652. "x": 0,
  653. "y": 0
  654. },
  655. "_fillStart": 0,
  656. "_fillRange": 0,
  657. "_isTrimmedMode": true,
  658. "_atlas": null,
  659. "_id": ""
  660. },
  661. {
  662. "__type__": "cc.Widget",
  663. "_name": "",
  664. "_objFlags": 0,
  665. "node": {
  666. "__id__": 10
  667. },
  668. "_enabled": true,
  669. "alignMode": 1,
  670. "_target": null,
  671. "_alignFlags": 45,
  672. "_left": 0,
  673. "_right": 0,
  674. "_top": 0,
  675. "_bottom": 0,
  676. "_verticalCenter": 0,
  677. "_horizontalCenter": 0,
  678. "_isAbsLeft": true,
  679. "_isAbsRight": true,
  680. "_isAbsTop": true,
  681. "_isAbsBottom": true,
  682. "_isAbsHorizontalCenter": true,
  683. "_isAbsVerticalCenter": true,
  684. "_originalWidth": 62,
  685. "_originalHeight": 57,
  686. "_id": ""
  687. },
  688. {
  689. "__type__": "cc.PrefabInfo",
  690. "root": {
  691. "__id__": 1
  692. },
  693. "asset": {
  694. "__id__": 0
  695. },
  696. "fileId": "d6i8AfdvhDnKd32cfXvK0k",
  697. "sync": false
  698. },
  699. {
  700. "__type__": "cc.Node",
  701. "_name": "layout",
  702. "_objFlags": 0,
  703. "_parent": {
  704. "__id__": 9
  705. },
  706. "_children": [
  707. {
  708. "__id__": 19
  709. },
  710. {
  711. "__id__": 22
  712. },
  713. {
  714. "__id__": 54
  715. },
  716. {
  717. "__id__": 86
  718. },
  719. {
  720. "__id__": 118
  721. }
  722. ],
  723. "_active": true,
  724. "_components": [
  725. {
  726. "__id__": 121
  727. },
  728. {
  729. "__id__": 122
  730. }
  731. ],
  732. "_prefab": {
  733. "__id__": 123
  734. },
  735. "_opacity": 255,
  736. "_color": {
  737. "__type__": "cc.Color",
  738. "r": 255,
  739. "g": 255,
  740. "b": 255,
  741. "a": 255
  742. },
  743. "_contentSize": {
  744. "__type__": "cc.Size",
  745. "width": 400,
  746. "height": 747.64
  747. },
  748. "_anchorPoint": {
  749. "__type__": "cc.Vec2",
  750. "x": 0.5,
  751. "y": 1
  752. },
  753. "_trs": {
  754. "__type__": "TypedArray",
  755. "ctor": "Float64Array",
  756. "array": [
  757. 0,
  758. 380,
  759. 0,
  760. 0,
  761. 0,
  762. 0,
  763. 1,
  764. 1,
  765. 1,
  766. 1
  767. ]
  768. },
  769. "_eulerAngles": {
  770. "__type__": "cc.Vec3",
  771. "x": 0,
  772. "y": 0,
  773. "z": 0
  774. },
  775. "_skewX": 0,
  776. "_skewY": 0,
  777. "_is3DNode": false,
  778. "_groupIndex": 0,
  779. "groupIndex": 0,
  780. "_id": ""
  781. },
  782. {
  783. "__type__": "cc.Node",
  784. "_name": "t_id",
  785. "_objFlags": 0,
  786. "_parent": {
  787. "__id__": 18
  788. },
  789. "_children": [],
  790. "_active": true,
  791. "_components": [
  792. {
  793. "__id__": 20
  794. }
  795. ],
  796. "_prefab": {
  797. "__id__": 21
  798. },
  799. "_opacity": 255,
  800. "_color": {
  801. "__type__": "cc.Color",
  802. "r": 43,
  803. "g": 30,
  804. "b": 255,
  805. "a": 255
  806. },
  807. "_contentSize": {
  808. "__type__": "cc.Size",
  809. "width": 331.65,
  810. "height": 50.4
  811. },
  812. "_anchorPoint": {
  813. "__type__": "cc.Vec2",
  814. "x": 0.5,
  815. "y": 0.5
  816. },
  817. "_trs": {
  818. "__type__": "TypedArray",
  819. "ctor": "Float64Array",
  820. "array": [
  821. 0,
  822. -25.2,
  823. 0,
  824. 0,
  825. 0,
  826. 0,
  827. 1,
  828. 1,
  829. 1,
  830. 1
  831. ]
  832. },
  833. "_eulerAngles": {
  834. "__type__": "cc.Vec3",
  835. "x": 0,
  836. "y": 0,
  837. "z": 0
  838. },
  839. "_skewX": 0,
  840. "_skewY": 0,
  841. "_is3DNode": false,
  842. "_groupIndex": 0,
  843. "groupIndex": 0,
  844. "_id": ""
  845. },
  846. {
  847. "__type__": "cc.Label",
  848. "_name": "",
  849. "_objFlags": 0,
  850. "node": {
  851. "__id__": 19
  852. },
  853. "_enabled": true,
  854. "_materials": [
  855. {
  856. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  857. }
  858. ],
  859. "_srcBlendFactor": 770,
  860. "_dstBlendFactor": 771,
  861. "_string": "ID:0000000000000000000",
  862. "_N$string": "ID:0000000000000000000",
  863. "_fontSize": 28,
  864. "_lineHeight": 40,
  865. "_enableWrapText": true,
  866. "_N$file": null,
  867. "_isSystemFontUsed": true,
  868. "_spacingX": 0,
  869. "_batchAsBitmap": false,
  870. "_styleFlags": 0,
  871. "_underlineHeight": 0,
  872. "_N$horizontalAlign": 1,
  873. "_N$verticalAlign": 1,
  874. "_N$fontFamily": "Arial",
  875. "_N$overflow": 0,
  876. "_N$cacheMode": 0,
  877. "_id": ""
  878. },
  879. {
  880. "__type__": "cc.PrefabInfo",
  881. "root": {
  882. "__id__": 18
  883. },
  884. "asset": {
  885. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  886. },
  887. "fileId": "e73u5Km7RNgJr7lv7HT3rZ",
  888. "sync": false
  889. },
  890. {
  891. "__type__": "cc.Node",
  892. "_name": "node_csj",
  893. "_objFlags": 0,
  894. "_parent": {
  895. "__id__": 18
  896. },
  897. "_children": [
  898. {
  899. "__id__": 23
  900. },
  901. {
  902. "__id__": 26
  903. },
  904. {
  905. "__id__": 32
  906. },
  907. {
  908. "__id__": 38
  909. },
  910. {
  911. "__id__": 44
  912. }
  913. ],
  914. "_active": true,
  915. "_components": [
  916. {
  917. "__id__": 50
  918. },
  919. {
  920. "__id__": 51
  921. },
  922. {
  923. "__id__": 52
  924. }
  925. ],
  926. "_prefab": {
  927. "__id__": 53
  928. },
  929. "_opacity": 255,
  930. "_color": {
  931. "__type__": "cc.Color",
  932. "r": 255,
  933. "g": 255,
  934. "b": 255,
  935. "a": 255
  936. },
  937. "_contentSize": {
  938. "__type__": "cc.Size",
  939. "width": 360,
  940. "height": 209
  941. },
  942. "_anchorPoint": {
  943. "__type__": "cc.Vec2",
  944. "x": 0.5,
  945. "y": 0.5
  946. },
  947. "_trs": {
  948. "__type__": "TypedArray",
  949. "ctor": "Float64Array",
  950. "array": [
  951. 0,
  952. -164.9,
  953. 0,
  954. 0,
  955. 0,
  956. 0,
  957. 1,
  958. 1,
  959. 1,
  960. 1
  961. ]
  962. },
  963. "_eulerAngles": {
  964. "__type__": "cc.Vec3",
  965. "x": 0,
  966. "y": 0,
  967. "z": 0
  968. },
  969. "_skewX": 0,
  970. "_skewY": 0,
  971. "_is3DNode": false,
  972. "_groupIndex": 0,
  973. "groupIndex": 0,
  974. "_id": ""
  975. },
  976. {
  977. "__type__": "cc.Node",
  978. "_name": "label",
  979. "_objFlags": 0,
  980. "_parent": {
  981. "__id__": 22
  982. },
  983. "_children": [],
  984. "_active": true,
  985. "_components": [
  986. {
  987. "__id__": 24
  988. }
  989. ],
  990. "_prefab": {
  991. "__id__": 25
  992. },
  993. "_opacity": 255,
  994. "_color": {
  995. "__type__": "cc.Color",
  996. "r": 0,
  997. "g": 0,
  998. "b": 0,
  999. "a": 255
  1000. },
  1001. "_contentSize": {
  1002. "__type__": "cc.Size",
  1003. "width": 72,
  1004. "height": 37.8
  1005. },
  1006. "_anchorPoint": {
  1007. "__type__": "cc.Vec2",
  1008. "x": 0.5,
  1009. "y": 0.5
  1010. },
  1011. "_trs": {
  1012. "__type__": "TypedArray",
  1013. "ctor": "Float64Array",
  1014. "array": [
  1015. 0,
  1016. 75.6,
  1017. 0,
  1018. 0,
  1019. 0,
  1020. 0,
  1021. 1,
  1022. 1,
  1023. 1,
  1024. 1
  1025. ]
  1026. },
  1027. "_eulerAngles": {
  1028. "__type__": "cc.Vec3",
  1029. "x": 0,
  1030. "y": 0,
  1031. "z": 0
  1032. },
  1033. "_skewX": 0,
  1034. "_skewY": 0,
  1035. "_is3DNode": false,
  1036. "_groupIndex": 0,
  1037. "groupIndex": 0,
  1038. "_id": ""
  1039. },
  1040. {
  1041. "__type__": "cc.Label",
  1042. "_name": "",
  1043. "_objFlags": 0,
  1044. "node": {
  1045. "__id__": 23
  1046. },
  1047. "_enabled": true,
  1048. "_materials": [
  1049. {
  1050. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1051. }
  1052. ],
  1053. "_srcBlendFactor": 770,
  1054. "_dstBlendFactor": 771,
  1055. "_string": "穿山甲",
  1056. "_N$string": "穿山甲",
  1057. "_fontSize": 24,
  1058. "_lineHeight": 30,
  1059. "_enableWrapText": true,
  1060. "_N$file": null,
  1061. "_isSystemFontUsed": true,
  1062. "_spacingX": 0,
  1063. "_batchAsBitmap": false,
  1064. "_styleFlags": 0,
  1065. "_underlineHeight": 0,
  1066. "_N$horizontalAlign": 1,
  1067. "_N$verticalAlign": 1,
  1068. "_N$fontFamily": "Arial",
  1069. "_N$overflow": 0,
  1070. "_N$cacheMode": 0,
  1071. "_id": ""
  1072. },
  1073. {
  1074. "__type__": "cc.PrefabInfo",
  1075. "root": {
  1076. "__id__": 18
  1077. },
  1078. "asset": {
  1079. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  1080. },
  1081. "fileId": "c9NlyXVk1Axb054fBr9m9a",
  1082. "sync": false
  1083. },
  1084. {
  1085. "__type__": "cc.Node",
  1086. "_name": "label",
  1087. "_objFlags": 0,
  1088. "_parent": {
  1089. "__id__": 22
  1090. },
  1091. "_children": [
  1092. {
  1093. "__id__": 27
  1094. }
  1095. ],
  1096. "_active": true,
  1097. "_components": [
  1098. {
  1099. "__id__": 30
  1100. }
  1101. ],
  1102. "_prefab": {
  1103. "__id__": 31
  1104. },
  1105. "_opacity": 255,
  1106. "_color": {
  1107. "__type__": "cc.Color",
  1108. "r": 0,
  1109. "g": 0,
  1110. "b": 0,
  1111. "a": 255
  1112. },
  1113. "_contentSize": {
  1114. "__type__": "cc.Size",
  1115. "width": 150.67,
  1116. "height": 37.8
  1117. },
  1118. "_anchorPoint": {
  1119. "__type__": "cc.Vec2",
  1120. "x": 0,
  1121. "y": 0.5
  1122. },
  1123. "_trs": {
  1124. "__type__": "TypedArray",
  1125. "ctor": "Float64Array",
  1126. "array": [
  1127. -161.091,
  1128. 37.8,
  1129. 0,
  1130. 0,
  1131. 0,
  1132. 0,
  1133. 1,
  1134. 1,
  1135. 1,
  1136. 1
  1137. ]
  1138. },
  1139. "_eulerAngles": {
  1140. "__type__": "cc.Vec3",
  1141. "x": 0,
  1142. "y": 0,
  1143. "z": 0
  1144. },
  1145. "_skewX": 0,
  1146. "_skewY": 0,
  1147. "_is3DNode": false,
  1148. "_groupIndex": 0,
  1149. "groupIndex": 0,
  1150. "_id": ""
  1151. },
  1152. {
  1153. "__type__": "cc.Node",
  1154. "_name": "t_csj_price",
  1155. "_objFlags": 0,
  1156. "_parent": {
  1157. "__id__": 26
  1158. },
  1159. "_children": [],
  1160. "_active": true,
  1161. "_components": [
  1162. {
  1163. "__id__": 28
  1164. }
  1165. ],
  1166. "_prefab": {
  1167. "__id__": 29
  1168. },
  1169. "_opacity": 255,
  1170. "_color": {
  1171. "__type__": "cc.Color",
  1172. "r": 235,
  1173. "g": 100,
  1174. "b": 100,
  1175. "a": 255
  1176. },
  1177. "_contentSize": {
  1178. "__type__": "cc.Size",
  1179. "width": 13.35,
  1180. "height": 50.4
  1181. },
  1182. "_anchorPoint": {
  1183. "__type__": "cc.Vec2",
  1184. "x": 0,
  1185. "y": 0.5
  1186. },
  1187. "_trs": {
  1188. "__type__": "TypedArray",
  1189. "ctor": "Float64Array",
  1190. "array": [
  1191. 220,
  1192. 0,
  1193. 0,
  1194. 0,
  1195. 0,
  1196. 0,
  1197. 1,
  1198. 1,
  1199. 1,
  1200. 1
  1201. ]
  1202. },
  1203. "_eulerAngles": {
  1204. "__type__": "cc.Vec3",
  1205. "x": 0,
  1206. "y": 0,
  1207. "z": 0
  1208. },
  1209. "_skewX": 0,
  1210. "_skewY": 0,
  1211. "_is3DNode": false,
  1212. "_groupIndex": 0,
  1213. "groupIndex": 0,
  1214. "_id": ""
  1215. },
  1216. {
  1217. "__type__": "cc.Label",
  1218. "_name": "",
  1219. "_objFlags": 0,
  1220. "node": {
  1221. "__id__": 27
  1222. },
  1223. "_enabled": true,
  1224. "_materials": [
  1225. {
  1226. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1227. }
  1228. ],
  1229. "_srcBlendFactor": 770,
  1230. "_dstBlendFactor": 771,
  1231. "_string": "0",
  1232. "_N$string": "0",
  1233. "_fontSize": 24,
  1234. "_lineHeight": 40,
  1235. "_enableWrapText": true,
  1236. "_N$file": null,
  1237. "_isSystemFontUsed": true,
  1238. "_spacingX": 0,
  1239. "_batchAsBitmap": false,
  1240. "_styleFlags": 0,
  1241. "_underlineHeight": 0,
  1242. "_N$horizontalAlign": 1,
  1243. "_N$verticalAlign": 1,
  1244. "_N$fontFamily": "Arial",
  1245. "_N$overflow": 0,
  1246. "_N$cacheMode": 0,
  1247. "_id": ""
  1248. },
  1249. {
  1250. "__type__": "cc.PrefabInfo",
  1251. "root": {
  1252. "__id__": 18
  1253. },
  1254. "asset": {
  1255. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  1256. },
  1257. "fileId": "d3i/LrSXJGVJL8aFsEnBW7",
  1258. "sync": false
  1259. },
  1260. {
  1261. "__type__": "cc.Label",
  1262. "_name": "",
  1263. "_objFlags": 0,
  1264. "node": {
  1265. "__id__": 26
  1266. },
  1267. "_enabled": true,
  1268. "_materials": [
  1269. {
  1270. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1271. }
  1272. ],
  1273. "_srcBlendFactor": 770,
  1274. "_dstBlendFactor": 771,
  1275. "_string": "当前视频单价:",
  1276. "_N$string": "当前视频单价:",
  1277. "_fontSize": 24,
  1278. "_lineHeight": 30,
  1279. "_enableWrapText": true,
  1280. "_N$file": null,
  1281. "_isSystemFontUsed": true,
  1282. "_spacingX": 0,
  1283. "_batchAsBitmap": false,
  1284. "_styleFlags": 0,
  1285. "_underlineHeight": 0,
  1286. "_N$horizontalAlign": 1,
  1287. "_N$verticalAlign": 1,
  1288. "_N$fontFamily": "Arial",
  1289. "_N$overflow": 0,
  1290. "_N$cacheMode": 0,
  1291. "_id": ""
  1292. },
  1293. {
  1294. "__type__": "cc.PrefabInfo",
  1295. "root": {
  1296. "__id__": 18
  1297. },
  1298. "asset": {
  1299. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  1300. },
  1301. "fileId": "29u/TzezFN/4uwTyRp+q30",
  1302. "sync": false
  1303. },
  1304. {
  1305. "__type__": "cc.Node",
  1306. "_name": "label",
  1307. "_objFlags": 0,
  1308. "_parent": {
  1309. "__id__": 22
  1310. },
  1311. "_children": [
  1312. {
  1313. "__id__": 33
  1314. }
  1315. ],
  1316. "_active": true,
  1317. "_components": [
  1318. {
  1319. "__id__": 36
  1320. }
  1321. ],
  1322. "_prefab": {
  1323. "__id__": 37
  1324. },
  1325. "_opacity": 255,
  1326. "_color": {
  1327. "__type__": "cc.Color",
  1328. "r": 0,
  1329. "g": 0,
  1330. "b": 0,
  1331. "a": 255
  1332. },
  1333. "_contentSize": {
  1334. "__type__": "cc.Size",
  1335. "width": 126.67,
  1336. "height": 37.8
  1337. },
  1338. "_anchorPoint": {
  1339. "__type__": "cc.Vec2",
  1340. "x": 0,
  1341. "y": 0.5
  1342. },
  1343. "_trs": {
  1344. "__type__": "TypedArray",
  1345. "ctor": "Float64Array",
  1346. "array": [
  1347. -161.091,
  1348. 0,
  1349. 0,
  1350. 0,
  1351. 0,
  1352. 0,
  1353. 1,
  1354. 1,
  1355. 1,
  1356. 1
  1357. ]
  1358. },
  1359. "_eulerAngles": {
  1360. "__type__": "cc.Vec3",
  1361. "x": 0,
  1362. "y": 0,
  1363. "z": 0
  1364. },
  1365. "_skewX": 0,
  1366. "_skewY": 0,
  1367. "_is3DNode": false,
  1368. "_groupIndex": 0,
  1369. "groupIndex": 0,
  1370. "_id": ""
  1371. },
  1372. {
  1373. "__type__": "cc.Node",
  1374. "_name": "t_csj_today_earning",
  1375. "_objFlags": 0,
  1376. "_parent": {
  1377. "__id__": 32
  1378. },
  1379. "_children": [],
  1380. "_active": true,
  1381. "_components": [
  1382. {
  1383. "__id__": 34
  1384. }
  1385. ],
  1386. "_prefab": {
  1387. "__id__": 35
  1388. },
  1389. "_opacity": 255,
  1390. "_color": {
  1391. "__type__": "cc.Color",
  1392. "r": 235,
  1393. "g": 100,
  1394. "b": 100,
  1395. "a": 255
  1396. },
  1397. "_contentSize": {
  1398. "__type__": "cc.Size",
  1399. "width": 13.35,
  1400. "height": 50.4
  1401. },
  1402. "_anchorPoint": {
  1403. "__type__": "cc.Vec2",
  1404. "x": 0,
  1405. "y": 0.5
  1406. },
  1407. "_trs": {
  1408. "__type__": "TypedArray",
  1409. "ctor": "Float64Array",
  1410. "array": [
  1411. 220,
  1412. 0,
  1413. 0,
  1414. 0,
  1415. 0,
  1416. 0,
  1417. 1,
  1418. 1,
  1419. 1,
  1420. 1
  1421. ]
  1422. },
  1423. "_eulerAngles": {
  1424. "__type__": "cc.Vec3",
  1425. "x": 0,
  1426. "y": 0,
  1427. "z": 0
  1428. },
  1429. "_skewX": 0,
  1430. "_skewY": 0,
  1431. "_is3DNode": false,
  1432. "_groupIndex": 0,
  1433. "groupIndex": 0,
  1434. "_id": ""
  1435. },
  1436. {
  1437. "__type__": "cc.Label",
  1438. "_name": "",
  1439. "_objFlags": 0,
  1440. "node": {
  1441. "__id__": 33
  1442. },
  1443. "_enabled": true,
  1444. "_materials": [
  1445. {
  1446. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1447. }
  1448. ],
  1449. "_srcBlendFactor": 770,
  1450. "_dstBlendFactor": 771,
  1451. "_string": "0",
  1452. "_N$string": "0",
  1453. "_fontSize": 24,
  1454. "_lineHeight": 40,
  1455. "_enableWrapText": true,
  1456. "_N$file": null,
  1457. "_isSystemFontUsed": true,
  1458. "_spacingX": 0,
  1459. "_batchAsBitmap": false,
  1460. "_styleFlags": 0,
  1461. "_underlineHeight": 0,
  1462. "_N$horizontalAlign": 1,
  1463. "_N$verticalAlign": 1,
  1464. "_N$fontFamily": "Arial",
  1465. "_N$overflow": 0,
  1466. "_N$cacheMode": 0,
  1467. "_id": ""
  1468. },
  1469. {
  1470. "__type__": "cc.PrefabInfo",
  1471. "root": {
  1472. "__id__": 18
  1473. },
  1474. "asset": {
  1475. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  1476. },
  1477. "fileId": "1ebAM7UspMaqULdD45ST+K",
  1478. "sync": false
  1479. },
  1480. {
  1481. "__type__": "cc.Label",
  1482. "_name": "",
  1483. "_objFlags": 0,
  1484. "node": {
  1485. "__id__": 32
  1486. },
  1487. "_enabled": true,
  1488. "_materials": [
  1489. {
  1490. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1491. }
  1492. ],
  1493. "_srcBlendFactor": 770,
  1494. "_dstBlendFactor": 771,
  1495. "_string": "今日总价格:",
  1496. "_N$string": "今日总价格:",
  1497. "_fontSize": 24,
  1498. "_lineHeight": 30,
  1499. "_enableWrapText": true,
  1500. "_N$file": null,
  1501. "_isSystemFontUsed": true,
  1502. "_spacingX": 0,
  1503. "_batchAsBitmap": false,
  1504. "_styleFlags": 0,
  1505. "_underlineHeight": 0,
  1506. "_N$horizontalAlign": 1,
  1507. "_N$verticalAlign": 1,
  1508. "_N$fontFamily": "Arial",
  1509. "_N$overflow": 0,
  1510. "_N$cacheMode": 0,
  1511. "_id": ""
  1512. },
  1513. {
  1514. "__type__": "cc.PrefabInfo",
  1515. "root": {
  1516. "__id__": 18
  1517. },
  1518. "asset": {
  1519. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  1520. },
  1521. "fileId": "bftRQ84ddNZYb0c+TZua49",
  1522. "sync": false
  1523. },
  1524. {
  1525. "__type__": "cc.Node",
  1526. "_name": "label",
  1527. "_objFlags": 0,
  1528. "_parent": {
  1529. "__id__": 22
  1530. },
  1531. "_children": [
  1532. {
  1533. "__id__": 39
  1534. }
  1535. ],
  1536. "_active": true,
  1537. "_components": [
  1538. {
  1539. "__id__": 42
  1540. }
  1541. ],
  1542. "_prefab": {
  1543. "__id__": 43
  1544. },
  1545. "_opacity": 255,
  1546. "_color": {
  1547. "__type__": "cc.Color",
  1548. "r": 0,
  1549. "g": 0,
  1550. "b": 0,
  1551. "a": 255
  1552. },
  1553. "_contentSize": {
  1554. "__type__": "cc.Size",
  1555. "width": 102.67,
  1556. "height": 37.8
  1557. },
  1558. "_anchorPoint": {
  1559. "__type__": "cc.Vec2",
  1560. "x": 0,
  1561. "y": 0.5
  1562. },
  1563. "_trs": {
  1564. "__type__": "TypedArray",
  1565. "ctor": "Float64Array",
  1566. "array": [
  1567. -161.091,
  1568. -37.8,
  1569. 0,
  1570. 0,
  1571. 0,
  1572. 0,
  1573. 1,
  1574. 1,
  1575. 1,
  1576. 1
  1577. ]
  1578. },
  1579. "_eulerAngles": {
  1580. "__type__": "cc.Vec3",
  1581. "x": 0,
  1582. "y": 0,
  1583. "z": 0
  1584. },
  1585. "_skewX": 0,
  1586. "_skewY": 0,
  1587. "_is3DNode": false,
  1588. "_groupIndex": 0,
  1589. "groupIndex": 0,
  1590. "_id": ""
  1591. },
  1592. {
  1593. "__type__": "cc.Node",
  1594. "_name": "t_csj_count_today",
  1595. "_objFlags": 0,
  1596. "_parent": {
  1597. "__id__": 38
  1598. },
  1599. "_children": [],
  1600. "_active": true,
  1601. "_components": [
  1602. {
  1603. "__id__": 40
  1604. }
  1605. ],
  1606. "_prefab": {
  1607. "__id__": 41
  1608. },
  1609. "_opacity": 255,
  1610. "_color": {
  1611. "__type__": "cc.Color",
  1612. "r": 235,
  1613. "g": 100,
  1614. "b": 100,
  1615. "a": 255
  1616. },
  1617. "_contentSize": {
  1618. "__type__": "cc.Size",
  1619. "width": 13.35,
  1620. "height": 50.4
  1621. },
  1622. "_anchorPoint": {
  1623. "__type__": "cc.Vec2",
  1624. "x": 0,
  1625. "y": 0.5
  1626. },
  1627. "_trs": {
  1628. "__type__": "TypedArray",
  1629. "ctor": "Float64Array",
  1630. "array": [
  1631. 220,
  1632. 0,
  1633. 0,
  1634. 0,
  1635. 0,
  1636. 0,
  1637. 1,
  1638. 1,
  1639. 1,
  1640. 1
  1641. ]
  1642. },
  1643. "_eulerAngles": {
  1644. "__type__": "cc.Vec3",
  1645. "x": 0,
  1646. "y": 0,
  1647. "z": 0
  1648. },
  1649. "_skewX": 0,
  1650. "_skewY": 0,
  1651. "_is3DNode": false,
  1652. "_groupIndex": 0,
  1653. "groupIndex": 0,
  1654. "_id": ""
  1655. },
  1656. {
  1657. "__type__": "cc.Label",
  1658. "_name": "",
  1659. "_objFlags": 0,
  1660. "node": {
  1661. "__id__": 39
  1662. },
  1663. "_enabled": true,
  1664. "_materials": [
  1665. {
  1666. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1667. }
  1668. ],
  1669. "_srcBlendFactor": 770,
  1670. "_dstBlendFactor": 771,
  1671. "_string": "0",
  1672. "_N$string": "0",
  1673. "_fontSize": 24,
  1674. "_lineHeight": 40,
  1675. "_enableWrapText": true,
  1676. "_N$file": null,
  1677. "_isSystemFontUsed": true,
  1678. "_spacingX": 0,
  1679. "_batchAsBitmap": false,
  1680. "_styleFlags": 0,
  1681. "_underlineHeight": 0,
  1682. "_N$horizontalAlign": 1,
  1683. "_N$verticalAlign": 1,
  1684. "_N$fontFamily": "Arial",
  1685. "_N$overflow": 0,
  1686. "_N$cacheMode": 0,
  1687. "_id": ""
  1688. },
  1689. {
  1690. "__type__": "cc.PrefabInfo",
  1691. "root": {
  1692. "__id__": 18
  1693. },
  1694. "asset": {
  1695. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  1696. },
  1697. "fileId": "44E8g+ia1DRIpgNSl76+2x",
  1698. "sync": false
  1699. },
  1700. {
  1701. "__type__": "cc.Label",
  1702. "_name": "",
  1703. "_objFlags": 0,
  1704. "node": {
  1705. "__id__": 38
  1706. },
  1707. "_enabled": true,
  1708. "_materials": [
  1709. {
  1710. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1711. }
  1712. ],
  1713. "_srcBlendFactor": 770,
  1714. "_dstBlendFactor": 771,
  1715. "_string": "今日视频:",
  1716. "_N$string": "今日视频:",
  1717. "_fontSize": 24,
  1718. "_lineHeight": 30,
  1719. "_enableWrapText": true,
  1720. "_N$file": null,
  1721. "_isSystemFontUsed": true,
  1722. "_spacingX": 0,
  1723. "_batchAsBitmap": false,
  1724. "_styleFlags": 0,
  1725. "_underlineHeight": 0,
  1726. "_N$horizontalAlign": 1,
  1727. "_N$verticalAlign": 1,
  1728. "_N$fontFamily": "Arial",
  1729. "_N$overflow": 0,
  1730. "_N$cacheMode": 0,
  1731. "_id": ""
  1732. },
  1733. {
  1734. "__type__": "cc.PrefabInfo",
  1735. "root": {
  1736. "__id__": 18
  1737. },
  1738. "asset": {
  1739. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  1740. },
  1741. "fileId": "16ZERUCYBBxpWRKpIpCcy/",
  1742. "sync": false
  1743. },
  1744. {
  1745. "__type__": "cc.Node",
  1746. "_name": "label",
  1747. "_objFlags": 0,
  1748. "_parent": {
  1749. "__id__": 22
  1750. },
  1751. "_children": [
  1752. {
  1753. "__id__": 45
  1754. }
  1755. ],
  1756. "_active": true,
  1757. "_components": [
  1758. {
  1759. "__id__": 48
  1760. }
  1761. ],
  1762. "_prefab": {
  1763. "__id__": 49
  1764. },
  1765. "_opacity": 255,
  1766. "_color": {
  1767. "__type__": "cc.Color",
  1768. "r": 0,
  1769. "g": 0,
  1770. "b": 0,
  1771. "a": 255
  1772. },
  1773. "_contentSize": {
  1774. "__type__": "cc.Size",
  1775. "width": 78.67,
  1776. "height": 37.8
  1777. },
  1778. "_anchorPoint": {
  1779. "__type__": "cc.Vec2",
  1780. "x": 0,
  1781. "y": 0.5
  1782. },
  1783. "_trs": {
  1784. "__type__": "TypedArray",
  1785. "ctor": "Float64Array",
  1786. "array": [
  1787. -161.091,
  1788. -75.6,
  1789. 0,
  1790. 0,
  1791. 0,
  1792. 0,
  1793. 1,
  1794. 1,
  1795. 1,
  1796. 1
  1797. ]
  1798. },
  1799. "_eulerAngles": {
  1800. "__type__": "cc.Vec3",
  1801. "x": 0,
  1802. "y": 0,
  1803. "z": 0
  1804. },
  1805. "_skewX": 0,
  1806. "_skewY": 0,
  1807. "_is3DNode": false,
  1808. "_groupIndex": 0,
  1809. "groupIndex": 0,
  1810. "_id": ""
  1811. },
  1812. {
  1813. "__type__": "cc.Node",
  1814. "_name": "t_csj_count_month",
  1815. "_objFlags": 0,
  1816. "_parent": {
  1817. "__id__": 44
  1818. },
  1819. "_children": [],
  1820. "_active": true,
  1821. "_components": [
  1822. {
  1823. "__id__": 46
  1824. }
  1825. ],
  1826. "_prefab": {
  1827. "__id__": 47
  1828. },
  1829. "_opacity": 255,
  1830. "_color": {
  1831. "__type__": "cc.Color",
  1832. "r": 235,
  1833. "g": 100,
  1834. "b": 100,
  1835. "a": 255
  1836. },
  1837. "_contentSize": {
  1838. "__type__": "cc.Size",
  1839. "width": 13.35,
  1840. "height": 50.4
  1841. },
  1842. "_anchorPoint": {
  1843. "__type__": "cc.Vec2",
  1844. "x": 0,
  1845. "y": 0.5
  1846. },
  1847. "_trs": {
  1848. "__type__": "TypedArray",
  1849. "ctor": "Float64Array",
  1850. "array": [
  1851. 220,
  1852. 0,
  1853. 0,
  1854. 0,
  1855. 0,
  1856. 0,
  1857. 1,
  1858. 1,
  1859. 1,
  1860. 1
  1861. ]
  1862. },
  1863. "_eulerAngles": {
  1864. "__type__": "cc.Vec3",
  1865. "x": 0,
  1866. "y": 0,
  1867. "z": 0
  1868. },
  1869. "_skewX": 0,
  1870. "_skewY": 0,
  1871. "_is3DNode": false,
  1872. "_groupIndex": 0,
  1873. "groupIndex": 0,
  1874. "_id": ""
  1875. },
  1876. {
  1877. "__type__": "cc.Label",
  1878. "_name": "",
  1879. "_objFlags": 0,
  1880. "node": {
  1881. "__id__": 45
  1882. },
  1883. "_enabled": true,
  1884. "_materials": [
  1885. {
  1886. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1887. }
  1888. ],
  1889. "_srcBlendFactor": 770,
  1890. "_dstBlendFactor": 771,
  1891. "_string": "0",
  1892. "_N$string": "0",
  1893. "_fontSize": 24,
  1894. "_lineHeight": 40,
  1895. "_enableWrapText": true,
  1896. "_N$file": null,
  1897. "_isSystemFontUsed": true,
  1898. "_spacingX": 0,
  1899. "_batchAsBitmap": false,
  1900. "_styleFlags": 0,
  1901. "_underlineHeight": 0,
  1902. "_N$horizontalAlign": 1,
  1903. "_N$verticalAlign": 1,
  1904. "_N$fontFamily": "Arial",
  1905. "_N$overflow": 0,
  1906. "_N$cacheMode": 0,
  1907. "_id": ""
  1908. },
  1909. {
  1910. "__type__": "cc.PrefabInfo",
  1911. "root": {
  1912. "__id__": 18
  1913. },
  1914. "asset": {
  1915. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  1916. },
  1917. "fileId": "00g7Zj0UZBE4CwUFtpnHSg",
  1918. "sync": false
  1919. },
  1920. {
  1921. "__type__": "cc.Label",
  1922. "_name": "",
  1923. "_objFlags": 0,
  1924. "node": {
  1925. "__id__": 44
  1926. },
  1927. "_enabled": true,
  1928. "_materials": [
  1929. {
  1930. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1931. }
  1932. ],
  1933. "_srcBlendFactor": 770,
  1934. "_dstBlendFactor": 771,
  1935. "_string": "月视频:",
  1936. "_N$string": "月视频:",
  1937. "_fontSize": 24,
  1938. "_lineHeight": 30,
  1939. "_enableWrapText": true,
  1940. "_N$file": null,
  1941. "_isSystemFontUsed": true,
  1942. "_spacingX": 0,
  1943. "_batchAsBitmap": false,
  1944. "_styleFlags": 0,
  1945. "_underlineHeight": 0,
  1946. "_N$horizontalAlign": 1,
  1947. "_N$verticalAlign": 1,
  1948. "_N$fontFamily": "Arial",
  1949. "_N$overflow": 0,
  1950. "_N$cacheMode": 0,
  1951. "_id": ""
  1952. },
  1953. {
  1954. "__type__": "cc.PrefabInfo",
  1955. "root": {
  1956. "__id__": 18
  1957. },
  1958. "asset": {
  1959. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  1960. },
  1961. "fileId": "1bXXBCDOtPFIlcJ4MbejgQ",
  1962. "sync": false
  1963. },
  1964. {
  1965. "__type__": "cc.Layout",
  1966. "_name": "",
  1967. "_objFlags": 0,
  1968. "node": {
  1969. "__id__": 22
  1970. },
  1971. "_enabled": true,
  1972. "_layoutSize": {
  1973. "__type__": "cc.Size",
  1974. "width": 360,
  1975. "height": 209
  1976. },
  1977. "_resize": 1,
  1978. "_N$layoutType": 2,
  1979. "_N$cellSize": {
  1980. "__type__": "cc.Size",
  1981. "width": 40,
  1982. "height": 40
  1983. },
  1984. "_N$startAxis": 0,
  1985. "_N$paddingLeft": 0,
  1986. "_N$paddingRight": 0,
  1987. "_N$paddingTop": 10,
  1988. "_N$paddingBottom": 10,
  1989. "_N$spacingX": 0,
  1990. "_N$spacingY": 0,
  1991. "_N$verticalDirection": 1,
  1992. "_N$horizontalDirection": 0,
  1993. "_N$affectedByScale": false,
  1994. "_id": ""
  1995. },
  1996. {
  1997. "__type__": "cc.Sprite",
  1998. "_name": "",
  1999. "_objFlags": 0,
  2000. "node": {
  2001. "__id__": 22
  2002. },
  2003. "_enabled": true,
  2004. "_materials": [
  2005. {
  2006. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2007. }
  2008. ],
  2009. "_srcBlendFactor": 770,
  2010. "_dstBlendFactor": 771,
  2011. "_spriteFrame": {
  2012. "__uuid__": "e76d7821-6b3a-4888-8b5b-4277582a5087"
  2013. },
  2014. "_type": 1,
  2015. "_sizeMode": 0,
  2016. "_fillType": 0,
  2017. "_fillCenter": {
  2018. "__type__": "cc.Vec2",
  2019. "x": 0,
  2020. "y": 0
  2021. },
  2022. "_fillStart": 0,
  2023. "_fillRange": 0,
  2024. "_isTrimmedMode": true,
  2025. "_atlas": null,
  2026. "_id": ""
  2027. },
  2028. {
  2029. "__type__": "cc.Widget",
  2030. "_name": "",
  2031. "_objFlags": 0,
  2032. "node": {
  2033. "__id__": 22
  2034. },
  2035. "_enabled": true,
  2036. "alignMode": 1,
  2037. "_target": null,
  2038. "_alignFlags": 40,
  2039. "_left": 20,
  2040. "_right": 20,
  2041. "_top": 0,
  2042. "_bottom": 0,
  2043. "_verticalCenter": 0,
  2044. "_horizontalCenter": 0,
  2045. "_isAbsLeft": true,
  2046. "_isAbsRight": true,
  2047. "_isAbsTop": true,
  2048. "_isAbsBottom": true,
  2049. "_isAbsHorizontalCenter": true,
  2050. "_isAbsVerticalCenter": true,
  2051. "_originalWidth": 450,
  2052. "_originalHeight": 0,
  2053. "_id": ""
  2054. },
  2055. {
  2056. "__type__": "cc.PrefabInfo",
  2057. "root": {
  2058. "__id__": 18
  2059. },
  2060. "asset": {
  2061. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  2062. },
  2063. "fileId": "cbA6ojHxBE/aUoMYspdQQM",
  2064. "sync": false
  2065. },
  2066. {
  2067. "__type__": "cc.Node",
  2068. "_name": "node_gdt",
  2069. "_objFlags": 0,
  2070. "_parent": {
  2071. "__id__": 18
  2072. },
  2073. "_children": [
  2074. {
  2075. "__id__": 55
  2076. },
  2077. {
  2078. "__id__": 58
  2079. },
  2080. {
  2081. "__id__": 64
  2082. },
  2083. {
  2084. "__id__": 70
  2085. },
  2086. {
  2087. "__id__": 76
  2088. }
  2089. ],
  2090. "_active": true,
  2091. "_components": [
  2092. {
  2093. "__id__": 82
  2094. },
  2095. {
  2096. "__id__": 83
  2097. },
  2098. {
  2099. "__id__": 84
  2100. }
  2101. ],
  2102. "_prefab": {
  2103. "__id__": 85
  2104. },
  2105. "_opacity": 255,
  2106. "_color": {
  2107. "__type__": "cc.Color",
  2108. "r": 255,
  2109. "g": 255,
  2110. "b": 255,
  2111. "a": 255
  2112. },
  2113. "_contentSize": {
  2114. "__type__": "cc.Size",
  2115. "width": 360,
  2116. "height": 209
  2117. },
  2118. "_anchorPoint": {
  2119. "__type__": "cc.Vec2",
  2120. "x": 0.5,
  2121. "y": 0.5
  2122. },
  2123. "_trs": {
  2124. "__type__": "TypedArray",
  2125. "ctor": "Float64Array",
  2126. "array": [
  2127. 0,
  2128. -383.9,
  2129. 0,
  2130. 0,
  2131. 0,
  2132. 0,
  2133. 1,
  2134. 1,
  2135. 1,
  2136. 1
  2137. ]
  2138. },
  2139. "_eulerAngles": {
  2140. "__type__": "cc.Vec3",
  2141. "x": 0,
  2142. "y": 0,
  2143. "z": 0
  2144. },
  2145. "_skewX": 0,
  2146. "_skewY": 0,
  2147. "_is3DNode": false,
  2148. "_groupIndex": 0,
  2149. "groupIndex": 0,
  2150. "_id": ""
  2151. },
  2152. {
  2153. "__type__": "cc.Node",
  2154. "_name": "label",
  2155. "_objFlags": 0,
  2156. "_parent": {
  2157. "__id__": 54
  2158. },
  2159. "_children": [],
  2160. "_active": true,
  2161. "_components": [
  2162. {
  2163. "__id__": 56
  2164. }
  2165. ],
  2166. "_prefab": {
  2167. "__id__": 57
  2168. },
  2169. "_opacity": 255,
  2170. "_color": {
  2171. "__type__": "cc.Color",
  2172. "r": 0,
  2173. "g": 0,
  2174. "b": 0,
  2175. "a": 255
  2176. },
  2177. "_contentSize": {
  2178. "__type__": "cc.Size",
  2179. "width": 72,
  2180. "height": 37.8
  2181. },
  2182. "_anchorPoint": {
  2183. "__type__": "cc.Vec2",
  2184. "x": 0.5,
  2185. "y": 0.5
  2186. },
  2187. "_trs": {
  2188. "__type__": "TypedArray",
  2189. "ctor": "Float64Array",
  2190. "array": [
  2191. 0,
  2192. 75.6,
  2193. 0,
  2194. 0,
  2195. 0,
  2196. 0,
  2197. 1,
  2198. 1,
  2199. 1,
  2200. 1
  2201. ]
  2202. },
  2203. "_eulerAngles": {
  2204. "__type__": "cc.Vec3",
  2205. "x": 0,
  2206. "y": 0,
  2207. "z": 0
  2208. },
  2209. "_skewX": 0,
  2210. "_skewY": 0,
  2211. "_is3DNode": false,
  2212. "_groupIndex": 0,
  2213. "groupIndex": 0,
  2214. "_id": ""
  2215. },
  2216. {
  2217. "__type__": "cc.Label",
  2218. "_name": "",
  2219. "_objFlags": 0,
  2220. "node": {
  2221. "__id__": 55
  2222. },
  2223. "_enabled": true,
  2224. "_materials": [
  2225. {
  2226. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2227. }
  2228. ],
  2229. "_srcBlendFactor": 770,
  2230. "_dstBlendFactor": 771,
  2231. "_string": "优量汇",
  2232. "_N$string": "优量汇",
  2233. "_fontSize": 24,
  2234. "_lineHeight": 30,
  2235. "_enableWrapText": true,
  2236. "_N$file": null,
  2237. "_isSystemFontUsed": true,
  2238. "_spacingX": 0,
  2239. "_batchAsBitmap": false,
  2240. "_styleFlags": 0,
  2241. "_underlineHeight": 0,
  2242. "_N$horizontalAlign": 1,
  2243. "_N$verticalAlign": 1,
  2244. "_N$fontFamily": "Arial",
  2245. "_N$overflow": 0,
  2246. "_N$cacheMode": 0,
  2247. "_id": ""
  2248. },
  2249. {
  2250. "__type__": "cc.PrefabInfo",
  2251. "root": {
  2252. "__id__": 18
  2253. },
  2254. "asset": {
  2255. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  2256. },
  2257. "fileId": "731EKv2yxPFJs0aspM8pdn",
  2258. "sync": false
  2259. },
  2260. {
  2261. "__type__": "cc.Node",
  2262. "_name": "label",
  2263. "_objFlags": 0,
  2264. "_parent": {
  2265. "__id__": 54
  2266. },
  2267. "_children": [
  2268. {
  2269. "__id__": 59
  2270. }
  2271. ],
  2272. "_active": true,
  2273. "_components": [
  2274. {
  2275. "__id__": 62
  2276. }
  2277. ],
  2278. "_prefab": {
  2279. "__id__": 63
  2280. },
  2281. "_opacity": 255,
  2282. "_color": {
  2283. "__type__": "cc.Color",
  2284. "r": 0,
  2285. "g": 0,
  2286. "b": 0,
  2287. "a": 255
  2288. },
  2289. "_contentSize": {
  2290. "__type__": "cc.Size",
  2291. "width": 150.67,
  2292. "height": 37.8
  2293. },
  2294. "_anchorPoint": {
  2295. "__type__": "cc.Vec2",
  2296. "x": 0,
  2297. "y": 0.5
  2298. },
  2299. "_trs": {
  2300. "__type__": "TypedArray",
  2301. "ctor": "Float64Array",
  2302. "array": [
  2303. -161.091,
  2304. 37.8,
  2305. 0,
  2306. 0,
  2307. 0,
  2308. 0,
  2309. 1,
  2310. 1,
  2311. 1,
  2312. 1
  2313. ]
  2314. },
  2315. "_eulerAngles": {
  2316. "__type__": "cc.Vec3",
  2317. "x": 0,
  2318. "y": 0,
  2319. "z": 0
  2320. },
  2321. "_skewX": 0,
  2322. "_skewY": 0,
  2323. "_is3DNode": false,
  2324. "_groupIndex": 0,
  2325. "groupIndex": 0,
  2326. "_id": ""
  2327. },
  2328. {
  2329. "__type__": "cc.Node",
  2330. "_name": "t_ylh_price",
  2331. "_objFlags": 0,
  2332. "_parent": {
  2333. "__id__": 58
  2334. },
  2335. "_children": [],
  2336. "_active": true,
  2337. "_components": [
  2338. {
  2339. "__id__": 60
  2340. }
  2341. ],
  2342. "_prefab": {
  2343. "__id__": 61
  2344. },
  2345. "_opacity": 255,
  2346. "_color": {
  2347. "__type__": "cc.Color",
  2348. "r": 235,
  2349. "g": 100,
  2350. "b": 100,
  2351. "a": 255
  2352. },
  2353. "_contentSize": {
  2354. "__type__": "cc.Size",
  2355. "width": 13.35,
  2356. "height": 50.4
  2357. },
  2358. "_anchorPoint": {
  2359. "__type__": "cc.Vec2",
  2360. "x": 0,
  2361. "y": 0.5
  2362. },
  2363. "_trs": {
  2364. "__type__": "TypedArray",
  2365. "ctor": "Float64Array",
  2366. "array": [
  2367. 220,
  2368. 0,
  2369. 0,
  2370. 0,
  2371. 0,
  2372. 0,
  2373. 1,
  2374. 1,
  2375. 1,
  2376. 1
  2377. ]
  2378. },
  2379. "_eulerAngles": {
  2380. "__type__": "cc.Vec3",
  2381. "x": 0,
  2382. "y": 0,
  2383. "z": 0
  2384. },
  2385. "_skewX": 0,
  2386. "_skewY": 0,
  2387. "_is3DNode": false,
  2388. "_groupIndex": 0,
  2389. "groupIndex": 0,
  2390. "_id": ""
  2391. },
  2392. {
  2393. "__type__": "cc.Label",
  2394. "_name": "",
  2395. "_objFlags": 0,
  2396. "node": {
  2397. "__id__": 59
  2398. },
  2399. "_enabled": true,
  2400. "_materials": [
  2401. {
  2402. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2403. }
  2404. ],
  2405. "_srcBlendFactor": 770,
  2406. "_dstBlendFactor": 771,
  2407. "_string": "0",
  2408. "_N$string": "0",
  2409. "_fontSize": 24,
  2410. "_lineHeight": 40,
  2411. "_enableWrapText": true,
  2412. "_N$file": null,
  2413. "_isSystemFontUsed": true,
  2414. "_spacingX": 0,
  2415. "_batchAsBitmap": false,
  2416. "_styleFlags": 0,
  2417. "_underlineHeight": 0,
  2418. "_N$horizontalAlign": 1,
  2419. "_N$verticalAlign": 1,
  2420. "_N$fontFamily": "Arial",
  2421. "_N$overflow": 0,
  2422. "_N$cacheMode": 0,
  2423. "_id": ""
  2424. },
  2425. {
  2426. "__type__": "cc.PrefabInfo",
  2427. "root": {
  2428. "__id__": 18
  2429. },
  2430. "asset": {
  2431. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  2432. },
  2433. "fileId": "30LdOknwdMJbxKn1CGvPT2",
  2434. "sync": false
  2435. },
  2436. {
  2437. "__type__": "cc.Label",
  2438. "_name": "",
  2439. "_objFlags": 0,
  2440. "node": {
  2441. "__id__": 58
  2442. },
  2443. "_enabled": true,
  2444. "_materials": [
  2445. {
  2446. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2447. }
  2448. ],
  2449. "_srcBlendFactor": 770,
  2450. "_dstBlendFactor": 771,
  2451. "_string": "当前视频单价:",
  2452. "_N$string": "当前视频单价:",
  2453. "_fontSize": 24,
  2454. "_lineHeight": 30,
  2455. "_enableWrapText": true,
  2456. "_N$file": null,
  2457. "_isSystemFontUsed": true,
  2458. "_spacingX": 0,
  2459. "_batchAsBitmap": false,
  2460. "_styleFlags": 0,
  2461. "_underlineHeight": 0,
  2462. "_N$horizontalAlign": 1,
  2463. "_N$verticalAlign": 1,
  2464. "_N$fontFamily": "Arial",
  2465. "_N$overflow": 0,
  2466. "_N$cacheMode": 0,
  2467. "_id": ""
  2468. },
  2469. {
  2470. "__type__": "cc.PrefabInfo",
  2471. "root": {
  2472. "__id__": 18
  2473. },
  2474. "asset": {
  2475. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  2476. },
  2477. "fileId": "fcs2fETghA/J6FcQUf540F",
  2478. "sync": false
  2479. },
  2480. {
  2481. "__type__": "cc.Node",
  2482. "_name": "label",
  2483. "_objFlags": 0,
  2484. "_parent": {
  2485. "__id__": 54
  2486. },
  2487. "_children": [
  2488. {
  2489. "__id__": 65
  2490. }
  2491. ],
  2492. "_active": true,
  2493. "_components": [
  2494. {
  2495. "__id__": 68
  2496. }
  2497. ],
  2498. "_prefab": {
  2499. "__id__": 69
  2500. },
  2501. "_opacity": 255,
  2502. "_color": {
  2503. "__type__": "cc.Color",
  2504. "r": 0,
  2505. "g": 0,
  2506. "b": 0,
  2507. "a": 255
  2508. },
  2509. "_contentSize": {
  2510. "__type__": "cc.Size",
  2511. "width": 126.67,
  2512. "height": 37.8
  2513. },
  2514. "_anchorPoint": {
  2515. "__type__": "cc.Vec2",
  2516. "x": 0,
  2517. "y": 0.5
  2518. },
  2519. "_trs": {
  2520. "__type__": "TypedArray",
  2521. "ctor": "Float64Array",
  2522. "array": [
  2523. -161.091,
  2524. 0,
  2525. 0,
  2526. 0,
  2527. 0,
  2528. 0,
  2529. 1,
  2530. 1,
  2531. 1,
  2532. 1
  2533. ]
  2534. },
  2535. "_eulerAngles": {
  2536. "__type__": "cc.Vec3",
  2537. "x": 0,
  2538. "y": 0,
  2539. "z": 0
  2540. },
  2541. "_skewX": 0,
  2542. "_skewY": 0,
  2543. "_is3DNode": false,
  2544. "_groupIndex": 0,
  2545. "groupIndex": 0,
  2546. "_id": ""
  2547. },
  2548. {
  2549. "__type__": "cc.Node",
  2550. "_name": "t_ylh_today_earning",
  2551. "_objFlags": 0,
  2552. "_parent": {
  2553. "__id__": 64
  2554. },
  2555. "_children": [],
  2556. "_active": true,
  2557. "_components": [
  2558. {
  2559. "__id__": 66
  2560. }
  2561. ],
  2562. "_prefab": {
  2563. "__id__": 67
  2564. },
  2565. "_opacity": 255,
  2566. "_color": {
  2567. "__type__": "cc.Color",
  2568. "r": 235,
  2569. "g": 100,
  2570. "b": 100,
  2571. "a": 255
  2572. },
  2573. "_contentSize": {
  2574. "__type__": "cc.Size",
  2575. "width": 13.35,
  2576. "height": 50.4
  2577. },
  2578. "_anchorPoint": {
  2579. "__type__": "cc.Vec2",
  2580. "x": 0,
  2581. "y": 0.5
  2582. },
  2583. "_trs": {
  2584. "__type__": "TypedArray",
  2585. "ctor": "Float64Array",
  2586. "array": [
  2587. 220,
  2588. 0,
  2589. 0,
  2590. 0,
  2591. 0,
  2592. 0,
  2593. 1,
  2594. 1,
  2595. 1,
  2596. 1
  2597. ]
  2598. },
  2599. "_eulerAngles": {
  2600. "__type__": "cc.Vec3",
  2601. "x": 0,
  2602. "y": 0,
  2603. "z": 0
  2604. },
  2605. "_skewX": 0,
  2606. "_skewY": 0,
  2607. "_is3DNode": false,
  2608. "_groupIndex": 0,
  2609. "groupIndex": 0,
  2610. "_id": ""
  2611. },
  2612. {
  2613. "__type__": "cc.Label",
  2614. "_name": "",
  2615. "_objFlags": 0,
  2616. "node": {
  2617. "__id__": 65
  2618. },
  2619. "_enabled": true,
  2620. "_materials": [
  2621. {
  2622. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2623. }
  2624. ],
  2625. "_srcBlendFactor": 770,
  2626. "_dstBlendFactor": 771,
  2627. "_string": "0",
  2628. "_N$string": "0",
  2629. "_fontSize": 24,
  2630. "_lineHeight": 40,
  2631. "_enableWrapText": true,
  2632. "_N$file": null,
  2633. "_isSystemFontUsed": true,
  2634. "_spacingX": 0,
  2635. "_batchAsBitmap": false,
  2636. "_styleFlags": 0,
  2637. "_underlineHeight": 0,
  2638. "_N$horizontalAlign": 1,
  2639. "_N$verticalAlign": 1,
  2640. "_N$fontFamily": "Arial",
  2641. "_N$overflow": 0,
  2642. "_N$cacheMode": 0,
  2643. "_id": ""
  2644. },
  2645. {
  2646. "__type__": "cc.PrefabInfo",
  2647. "root": {
  2648. "__id__": 18
  2649. },
  2650. "asset": {
  2651. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  2652. },
  2653. "fileId": "05fmbv8ENHY6vsRq8bSOFF",
  2654. "sync": false
  2655. },
  2656. {
  2657. "__type__": "cc.Label",
  2658. "_name": "",
  2659. "_objFlags": 0,
  2660. "node": {
  2661. "__id__": 64
  2662. },
  2663. "_enabled": true,
  2664. "_materials": [
  2665. {
  2666. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2667. }
  2668. ],
  2669. "_srcBlendFactor": 770,
  2670. "_dstBlendFactor": 771,
  2671. "_string": "今日总价格:",
  2672. "_N$string": "今日总价格:",
  2673. "_fontSize": 24,
  2674. "_lineHeight": 30,
  2675. "_enableWrapText": true,
  2676. "_N$file": null,
  2677. "_isSystemFontUsed": true,
  2678. "_spacingX": 0,
  2679. "_batchAsBitmap": false,
  2680. "_styleFlags": 0,
  2681. "_underlineHeight": 0,
  2682. "_N$horizontalAlign": 1,
  2683. "_N$verticalAlign": 1,
  2684. "_N$fontFamily": "Arial",
  2685. "_N$overflow": 0,
  2686. "_N$cacheMode": 0,
  2687. "_id": ""
  2688. },
  2689. {
  2690. "__type__": "cc.PrefabInfo",
  2691. "root": {
  2692. "__id__": 18
  2693. },
  2694. "asset": {
  2695. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  2696. },
  2697. "fileId": "a1pxtYDOhAvI2p1IuqDd4p",
  2698. "sync": false
  2699. },
  2700. {
  2701. "__type__": "cc.Node",
  2702. "_name": "label",
  2703. "_objFlags": 0,
  2704. "_parent": {
  2705. "__id__": 54
  2706. },
  2707. "_children": [
  2708. {
  2709. "__id__": 71
  2710. }
  2711. ],
  2712. "_active": true,
  2713. "_components": [
  2714. {
  2715. "__id__": 74
  2716. }
  2717. ],
  2718. "_prefab": {
  2719. "__id__": 75
  2720. },
  2721. "_opacity": 255,
  2722. "_color": {
  2723. "__type__": "cc.Color",
  2724. "r": 0,
  2725. "g": 0,
  2726. "b": 0,
  2727. "a": 255
  2728. },
  2729. "_contentSize": {
  2730. "__type__": "cc.Size",
  2731. "width": 102.67,
  2732. "height": 37.8
  2733. },
  2734. "_anchorPoint": {
  2735. "__type__": "cc.Vec2",
  2736. "x": 0,
  2737. "y": 0.5
  2738. },
  2739. "_trs": {
  2740. "__type__": "TypedArray",
  2741. "ctor": "Float64Array",
  2742. "array": [
  2743. -161.091,
  2744. -37.8,
  2745. 0,
  2746. 0,
  2747. 0,
  2748. 0,
  2749. 1,
  2750. 1,
  2751. 1,
  2752. 1
  2753. ]
  2754. },
  2755. "_eulerAngles": {
  2756. "__type__": "cc.Vec3",
  2757. "x": 0,
  2758. "y": 0,
  2759. "z": 0
  2760. },
  2761. "_skewX": 0,
  2762. "_skewY": 0,
  2763. "_is3DNode": false,
  2764. "_groupIndex": 0,
  2765. "groupIndex": 0,
  2766. "_id": ""
  2767. },
  2768. {
  2769. "__type__": "cc.Node",
  2770. "_name": "t_ylh_count_today",
  2771. "_objFlags": 0,
  2772. "_parent": {
  2773. "__id__": 70
  2774. },
  2775. "_children": [],
  2776. "_active": true,
  2777. "_components": [
  2778. {
  2779. "__id__": 72
  2780. }
  2781. ],
  2782. "_prefab": {
  2783. "__id__": 73
  2784. },
  2785. "_opacity": 255,
  2786. "_color": {
  2787. "__type__": "cc.Color",
  2788. "r": 235,
  2789. "g": 100,
  2790. "b": 100,
  2791. "a": 255
  2792. },
  2793. "_contentSize": {
  2794. "__type__": "cc.Size",
  2795. "width": 13.35,
  2796. "height": 50.4
  2797. },
  2798. "_anchorPoint": {
  2799. "__type__": "cc.Vec2",
  2800. "x": 0,
  2801. "y": 0.5
  2802. },
  2803. "_trs": {
  2804. "__type__": "TypedArray",
  2805. "ctor": "Float64Array",
  2806. "array": [
  2807. 220,
  2808. 0,
  2809. 0,
  2810. 0,
  2811. 0,
  2812. 0,
  2813. 1,
  2814. 1,
  2815. 1,
  2816. 1
  2817. ]
  2818. },
  2819. "_eulerAngles": {
  2820. "__type__": "cc.Vec3",
  2821. "x": 0,
  2822. "y": 0,
  2823. "z": 0
  2824. },
  2825. "_skewX": 0,
  2826. "_skewY": 0,
  2827. "_is3DNode": false,
  2828. "_groupIndex": 0,
  2829. "groupIndex": 0,
  2830. "_id": ""
  2831. },
  2832. {
  2833. "__type__": "cc.Label",
  2834. "_name": "",
  2835. "_objFlags": 0,
  2836. "node": {
  2837. "__id__": 71
  2838. },
  2839. "_enabled": true,
  2840. "_materials": [
  2841. {
  2842. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2843. }
  2844. ],
  2845. "_srcBlendFactor": 770,
  2846. "_dstBlendFactor": 771,
  2847. "_string": "0",
  2848. "_N$string": "0",
  2849. "_fontSize": 24,
  2850. "_lineHeight": 40,
  2851. "_enableWrapText": true,
  2852. "_N$file": null,
  2853. "_isSystemFontUsed": true,
  2854. "_spacingX": 0,
  2855. "_batchAsBitmap": false,
  2856. "_styleFlags": 0,
  2857. "_underlineHeight": 0,
  2858. "_N$horizontalAlign": 1,
  2859. "_N$verticalAlign": 1,
  2860. "_N$fontFamily": "Arial",
  2861. "_N$overflow": 0,
  2862. "_N$cacheMode": 0,
  2863. "_id": ""
  2864. },
  2865. {
  2866. "__type__": "cc.PrefabInfo",
  2867. "root": {
  2868. "__id__": 18
  2869. },
  2870. "asset": {
  2871. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  2872. },
  2873. "fileId": "28yxViGclKE7/z7lrpB+Ok",
  2874. "sync": false
  2875. },
  2876. {
  2877. "__type__": "cc.Label",
  2878. "_name": "",
  2879. "_objFlags": 0,
  2880. "node": {
  2881. "__id__": 70
  2882. },
  2883. "_enabled": true,
  2884. "_materials": [
  2885. {
  2886. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2887. }
  2888. ],
  2889. "_srcBlendFactor": 770,
  2890. "_dstBlendFactor": 771,
  2891. "_string": "今日视频:",
  2892. "_N$string": "今日视频:",
  2893. "_fontSize": 24,
  2894. "_lineHeight": 30,
  2895. "_enableWrapText": true,
  2896. "_N$file": null,
  2897. "_isSystemFontUsed": true,
  2898. "_spacingX": 0,
  2899. "_batchAsBitmap": false,
  2900. "_styleFlags": 0,
  2901. "_underlineHeight": 0,
  2902. "_N$horizontalAlign": 1,
  2903. "_N$verticalAlign": 1,
  2904. "_N$fontFamily": "Arial",
  2905. "_N$overflow": 0,
  2906. "_N$cacheMode": 0,
  2907. "_id": ""
  2908. },
  2909. {
  2910. "__type__": "cc.PrefabInfo",
  2911. "root": {
  2912. "__id__": 18
  2913. },
  2914. "asset": {
  2915. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  2916. },
  2917. "fileId": "b9zBrsboVMqKFfavbu0wDo",
  2918. "sync": false
  2919. },
  2920. {
  2921. "__type__": "cc.Node",
  2922. "_name": "label",
  2923. "_objFlags": 0,
  2924. "_parent": {
  2925. "__id__": 54
  2926. },
  2927. "_children": [
  2928. {
  2929. "__id__": 77
  2930. }
  2931. ],
  2932. "_active": true,
  2933. "_components": [
  2934. {
  2935. "__id__": 80
  2936. }
  2937. ],
  2938. "_prefab": {
  2939. "__id__": 81
  2940. },
  2941. "_opacity": 255,
  2942. "_color": {
  2943. "__type__": "cc.Color",
  2944. "r": 0,
  2945. "g": 0,
  2946. "b": 0,
  2947. "a": 255
  2948. },
  2949. "_contentSize": {
  2950. "__type__": "cc.Size",
  2951. "width": 78.67,
  2952. "height": 37.8
  2953. },
  2954. "_anchorPoint": {
  2955. "__type__": "cc.Vec2",
  2956. "x": 0,
  2957. "y": 0.5
  2958. },
  2959. "_trs": {
  2960. "__type__": "TypedArray",
  2961. "ctor": "Float64Array",
  2962. "array": [
  2963. -161.091,
  2964. -75.6,
  2965. 0,
  2966. 0,
  2967. 0,
  2968. 0,
  2969. 1,
  2970. 1,
  2971. 1,
  2972. 1
  2973. ]
  2974. },
  2975. "_eulerAngles": {
  2976. "__type__": "cc.Vec3",
  2977. "x": 0,
  2978. "y": 0,
  2979. "z": 0
  2980. },
  2981. "_skewX": 0,
  2982. "_skewY": 0,
  2983. "_is3DNode": false,
  2984. "_groupIndex": 0,
  2985. "groupIndex": 0,
  2986. "_id": ""
  2987. },
  2988. {
  2989. "__type__": "cc.Node",
  2990. "_name": "t_ylh_count_month",
  2991. "_objFlags": 0,
  2992. "_parent": {
  2993. "__id__": 76
  2994. },
  2995. "_children": [],
  2996. "_active": true,
  2997. "_components": [
  2998. {
  2999. "__id__": 78
  3000. }
  3001. ],
  3002. "_prefab": {
  3003. "__id__": 79
  3004. },
  3005. "_opacity": 255,
  3006. "_color": {
  3007. "__type__": "cc.Color",
  3008. "r": 235,
  3009. "g": 100,
  3010. "b": 100,
  3011. "a": 255
  3012. },
  3013. "_contentSize": {
  3014. "__type__": "cc.Size",
  3015. "width": 13.35,
  3016. "height": 50.4
  3017. },
  3018. "_anchorPoint": {
  3019. "__type__": "cc.Vec2",
  3020. "x": 0,
  3021. "y": 0.5
  3022. },
  3023. "_trs": {
  3024. "__type__": "TypedArray",
  3025. "ctor": "Float64Array",
  3026. "array": [
  3027. 220,
  3028. 0,
  3029. 0,
  3030. 0,
  3031. 0,
  3032. 0,
  3033. 1,
  3034. 1,
  3035. 1,
  3036. 1
  3037. ]
  3038. },
  3039. "_eulerAngles": {
  3040. "__type__": "cc.Vec3",
  3041. "x": 0,
  3042. "y": 0,
  3043. "z": 0
  3044. },
  3045. "_skewX": 0,
  3046. "_skewY": 0,
  3047. "_is3DNode": false,
  3048. "_groupIndex": 0,
  3049. "groupIndex": 0,
  3050. "_id": ""
  3051. },
  3052. {
  3053. "__type__": "cc.Label",
  3054. "_name": "",
  3055. "_objFlags": 0,
  3056. "node": {
  3057. "__id__": 77
  3058. },
  3059. "_enabled": true,
  3060. "_materials": [
  3061. {
  3062. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3063. }
  3064. ],
  3065. "_srcBlendFactor": 770,
  3066. "_dstBlendFactor": 771,
  3067. "_string": "0",
  3068. "_N$string": "0",
  3069. "_fontSize": 24,
  3070. "_lineHeight": 40,
  3071. "_enableWrapText": true,
  3072. "_N$file": null,
  3073. "_isSystemFontUsed": true,
  3074. "_spacingX": 0,
  3075. "_batchAsBitmap": false,
  3076. "_styleFlags": 0,
  3077. "_underlineHeight": 0,
  3078. "_N$horizontalAlign": 1,
  3079. "_N$verticalAlign": 1,
  3080. "_N$fontFamily": "Arial",
  3081. "_N$overflow": 0,
  3082. "_N$cacheMode": 0,
  3083. "_id": ""
  3084. },
  3085. {
  3086. "__type__": "cc.PrefabInfo",
  3087. "root": {
  3088. "__id__": 18
  3089. },
  3090. "asset": {
  3091. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  3092. },
  3093. "fileId": "87GAFCQwFJ/5eo1uN/L/XZ",
  3094. "sync": false
  3095. },
  3096. {
  3097. "__type__": "cc.Label",
  3098. "_name": "",
  3099. "_objFlags": 0,
  3100. "node": {
  3101. "__id__": 76
  3102. },
  3103. "_enabled": true,
  3104. "_materials": [
  3105. {
  3106. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3107. }
  3108. ],
  3109. "_srcBlendFactor": 770,
  3110. "_dstBlendFactor": 771,
  3111. "_string": "月视频:",
  3112. "_N$string": "月视频:",
  3113. "_fontSize": 24,
  3114. "_lineHeight": 30,
  3115. "_enableWrapText": true,
  3116. "_N$file": null,
  3117. "_isSystemFontUsed": true,
  3118. "_spacingX": 0,
  3119. "_batchAsBitmap": false,
  3120. "_styleFlags": 0,
  3121. "_underlineHeight": 0,
  3122. "_N$horizontalAlign": 1,
  3123. "_N$verticalAlign": 1,
  3124. "_N$fontFamily": "Arial",
  3125. "_N$overflow": 0,
  3126. "_N$cacheMode": 0,
  3127. "_id": ""
  3128. },
  3129. {
  3130. "__type__": "cc.PrefabInfo",
  3131. "root": {
  3132. "__id__": 18
  3133. },
  3134. "asset": {
  3135. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  3136. },
  3137. "fileId": "54un4/hLxJ6KCiVqsN714Q",
  3138. "sync": false
  3139. },
  3140. {
  3141. "__type__": "cc.Layout",
  3142. "_name": "",
  3143. "_objFlags": 0,
  3144. "node": {
  3145. "__id__": 54
  3146. },
  3147. "_enabled": true,
  3148. "_layoutSize": {
  3149. "__type__": "cc.Size",
  3150. "width": 360,
  3151. "height": 209
  3152. },
  3153. "_resize": 1,
  3154. "_N$layoutType": 2,
  3155. "_N$cellSize": {
  3156. "__type__": "cc.Size",
  3157. "width": 40,
  3158. "height": 40
  3159. },
  3160. "_N$startAxis": 0,
  3161. "_N$paddingLeft": 0,
  3162. "_N$paddingRight": 0,
  3163. "_N$paddingTop": 10,
  3164. "_N$paddingBottom": 10,
  3165. "_N$spacingX": 0,
  3166. "_N$spacingY": 0,
  3167. "_N$verticalDirection": 1,
  3168. "_N$horizontalDirection": 0,
  3169. "_N$affectedByScale": false,
  3170. "_id": ""
  3171. },
  3172. {
  3173. "__type__": "cc.Sprite",
  3174. "_name": "",
  3175. "_objFlags": 0,
  3176. "node": {
  3177. "__id__": 54
  3178. },
  3179. "_enabled": true,
  3180. "_materials": [
  3181. {
  3182. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3183. }
  3184. ],
  3185. "_srcBlendFactor": 770,
  3186. "_dstBlendFactor": 771,
  3187. "_spriteFrame": {
  3188. "__uuid__": "e76d7821-6b3a-4888-8b5b-4277582a5087"
  3189. },
  3190. "_type": 1,
  3191. "_sizeMode": 0,
  3192. "_fillType": 0,
  3193. "_fillCenter": {
  3194. "__type__": "cc.Vec2",
  3195. "x": 0,
  3196. "y": 0
  3197. },
  3198. "_fillStart": 0,
  3199. "_fillRange": 0,
  3200. "_isTrimmedMode": true,
  3201. "_atlas": null,
  3202. "_id": ""
  3203. },
  3204. {
  3205. "__type__": "cc.Widget",
  3206. "_name": "",
  3207. "_objFlags": 0,
  3208. "node": {
  3209. "__id__": 54
  3210. },
  3211. "_enabled": true,
  3212. "alignMode": 1,
  3213. "_target": null,
  3214. "_alignFlags": 40,
  3215. "_left": 20,
  3216. "_right": 20,
  3217. "_top": 0,
  3218. "_bottom": 0,
  3219. "_verticalCenter": 0,
  3220. "_horizontalCenter": 0,
  3221. "_isAbsLeft": true,
  3222. "_isAbsRight": true,
  3223. "_isAbsTop": true,
  3224. "_isAbsBottom": true,
  3225. "_isAbsHorizontalCenter": true,
  3226. "_isAbsVerticalCenter": true,
  3227. "_originalWidth": 450,
  3228. "_originalHeight": 0,
  3229. "_id": ""
  3230. },
  3231. {
  3232. "__type__": "cc.PrefabInfo",
  3233. "root": {
  3234. "__id__": 18
  3235. },
  3236. "asset": {
  3237. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  3238. },
  3239. "fileId": "a8Kprh0yxGSLdvRGb3TABs",
  3240. "sync": false
  3241. },
  3242. {
  3243. "__type__": "cc.Node",
  3244. "_name": "node_ks",
  3245. "_objFlags": 0,
  3246. "_parent": {
  3247. "__id__": 18
  3248. },
  3249. "_children": [
  3250. {
  3251. "__id__": 87
  3252. },
  3253. {
  3254. "__id__": 90
  3255. },
  3256. {
  3257. "__id__": 96
  3258. },
  3259. {
  3260. "__id__": 102
  3261. },
  3262. {
  3263. "__id__": 108
  3264. }
  3265. ],
  3266. "_active": true,
  3267. "_components": [
  3268. {
  3269. "__id__": 114
  3270. },
  3271. {
  3272. "__id__": 115
  3273. },
  3274. {
  3275. "__id__": 116
  3276. }
  3277. ],
  3278. "_prefab": {
  3279. "__id__": 117
  3280. },
  3281. "_opacity": 255,
  3282. "_color": {
  3283. "__type__": "cc.Color",
  3284. "r": 255,
  3285. "g": 255,
  3286. "b": 255,
  3287. "a": 255
  3288. },
  3289. "_contentSize": {
  3290. "__type__": "cc.Size",
  3291. "width": 360,
  3292. "height": 209
  3293. },
  3294. "_anchorPoint": {
  3295. "__type__": "cc.Vec2",
  3296. "x": 0.5,
  3297. "y": 0.5
  3298. },
  3299. "_trs": {
  3300. "__type__": "TypedArray",
  3301. "ctor": "Float64Array",
  3302. "array": [
  3303. 0,
  3304. -602.9,
  3305. 0,
  3306. 0,
  3307. 0,
  3308. 0,
  3309. 1,
  3310. 1,
  3311. 1,
  3312. 1
  3313. ]
  3314. },
  3315. "_eulerAngles": {
  3316. "__type__": "cc.Vec3",
  3317. "x": 0,
  3318. "y": 0,
  3319. "z": 0
  3320. },
  3321. "_skewX": 0,
  3322. "_skewY": 0,
  3323. "_is3DNode": false,
  3324. "_groupIndex": 0,
  3325. "groupIndex": 0,
  3326. "_id": ""
  3327. },
  3328. {
  3329. "__type__": "cc.Node",
  3330. "_name": "label",
  3331. "_objFlags": 0,
  3332. "_parent": {
  3333. "__id__": 86
  3334. },
  3335. "_children": [],
  3336. "_active": true,
  3337. "_components": [
  3338. {
  3339. "__id__": 88
  3340. }
  3341. ],
  3342. "_prefab": {
  3343. "__id__": 89
  3344. },
  3345. "_opacity": 255,
  3346. "_color": {
  3347. "__type__": "cc.Color",
  3348. "r": 0,
  3349. "g": 0,
  3350. "b": 0,
  3351. "a": 255
  3352. },
  3353. "_contentSize": {
  3354. "__type__": "cc.Size",
  3355. "width": 48,
  3356. "height": 37.8
  3357. },
  3358. "_anchorPoint": {
  3359. "__type__": "cc.Vec2",
  3360. "x": 0.5,
  3361. "y": 0.5
  3362. },
  3363. "_trs": {
  3364. "__type__": "TypedArray",
  3365. "ctor": "Float64Array",
  3366. "array": [
  3367. 0,
  3368. 75.6,
  3369. 0,
  3370. 0,
  3371. 0,
  3372. 0,
  3373. 1,
  3374. 1,
  3375. 1,
  3376. 1
  3377. ]
  3378. },
  3379. "_eulerAngles": {
  3380. "__type__": "cc.Vec3",
  3381. "x": 0,
  3382. "y": 0,
  3383. "z": 0
  3384. },
  3385. "_skewX": 0,
  3386. "_skewY": 0,
  3387. "_is3DNode": false,
  3388. "_groupIndex": 0,
  3389. "groupIndex": 0,
  3390. "_id": ""
  3391. },
  3392. {
  3393. "__type__": "cc.Label",
  3394. "_name": "",
  3395. "_objFlags": 0,
  3396. "node": {
  3397. "__id__": 87
  3398. },
  3399. "_enabled": true,
  3400. "_materials": [
  3401. {
  3402. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3403. }
  3404. ],
  3405. "_srcBlendFactor": 770,
  3406. "_dstBlendFactor": 771,
  3407. "_string": "快手",
  3408. "_N$string": "快手",
  3409. "_fontSize": 24,
  3410. "_lineHeight": 30,
  3411. "_enableWrapText": true,
  3412. "_N$file": null,
  3413. "_isSystemFontUsed": true,
  3414. "_spacingX": 0,
  3415. "_batchAsBitmap": false,
  3416. "_styleFlags": 0,
  3417. "_underlineHeight": 0,
  3418. "_N$horizontalAlign": 1,
  3419. "_N$verticalAlign": 1,
  3420. "_N$fontFamily": "Arial",
  3421. "_N$overflow": 0,
  3422. "_N$cacheMode": 0,
  3423. "_id": ""
  3424. },
  3425. {
  3426. "__type__": "cc.PrefabInfo",
  3427. "root": {
  3428. "__id__": 18
  3429. },
  3430. "asset": {
  3431. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  3432. },
  3433. "fileId": "039WoGCiBF+7nV6Xw26Ofy",
  3434. "sync": false
  3435. },
  3436. {
  3437. "__type__": "cc.Node",
  3438. "_name": "label",
  3439. "_objFlags": 0,
  3440. "_parent": {
  3441. "__id__": 86
  3442. },
  3443. "_children": [
  3444. {
  3445. "__id__": 91
  3446. }
  3447. ],
  3448. "_active": true,
  3449. "_components": [
  3450. {
  3451. "__id__": 94
  3452. }
  3453. ],
  3454. "_prefab": {
  3455. "__id__": 95
  3456. },
  3457. "_opacity": 255,
  3458. "_color": {
  3459. "__type__": "cc.Color",
  3460. "r": 0,
  3461. "g": 0,
  3462. "b": 0,
  3463. "a": 255
  3464. },
  3465. "_contentSize": {
  3466. "__type__": "cc.Size",
  3467. "width": 150.67,
  3468. "height": 37.8
  3469. },
  3470. "_anchorPoint": {
  3471. "__type__": "cc.Vec2",
  3472. "x": 0,
  3473. "y": 0.5
  3474. },
  3475. "_trs": {
  3476. "__type__": "TypedArray",
  3477. "ctor": "Float64Array",
  3478. "array": [
  3479. -161.091,
  3480. 37.8,
  3481. 0,
  3482. 0,
  3483. 0,
  3484. 0,
  3485. 1,
  3486. 1,
  3487. 1,
  3488. 1
  3489. ]
  3490. },
  3491. "_eulerAngles": {
  3492. "__type__": "cc.Vec3",
  3493. "x": 0,
  3494. "y": 0,
  3495. "z": 0
  3496. },
  3497. "_skewX": 0,
  3498. "_skewY": 0,
  3499. "_is3DNode": false,
  3500. "_groupIndex": 0,
  3501. "groupIndex": 0,
  3502. "_id": ""
  3503. },
  3504. {
  3505. "__type__": "cc.Node",
  3506. "_name": "t_ks_price",
  3507. "_objFlags": 0,
  3508. "_parent": {
  3509. "__id__": 90
  3510. },
  3511. "_children": [],
  3512. "_active": true,
  3513. "_components": [
  3514. {
  3515. "__id__": 92
  3516. }
  3517. ],
  3518. "_prefab": {
  3519. "__id__": 93
  3520. },
  3521. "_opacity": 255,
  3522. "_color": {
  3523. "__type__": "cc.Color",
  3524. "r": 235,
  3525. "g": 100,
  3526. "b": 100,
  3527. "a": 255
  3528. },
  3529. "_contentSize": {
  3530. "__type__": "cc.Size",
  3531. "width": 13.35,
  3532. "height": 50.4
  3533. },
  3534. "_anchorPoint": {
  3535. "__type__": "cc.Vec2",
  3536. "x": 0,
  3537. "y": 0.5
  3538. },
  3539. "_trs": {
  3540. "__type__": "TypedArray",
  3541. "ctor": "Float64Array",
  3542. "array": [
  3543. 220,
  3544. 0,
  3545. 0,
  3546. 0,
  3547. 0,
  3548. 0,
  3549. 1,
  3550. 1,
  3551. 1,
  3552. 1
  3553. ]
  3554. },
  3555. "_eulerAngles": {
  3556. "__type__": "cc.Vec3",
  3557. "x": 0,
  3558. "y": 0,
  3559. "z": 0
  3560. },
  3561. "_skewX": 0,
  3562. "_skewY": 0,
  3563. "_is3DNode": false,
  3564. "_groupIndex": 0,
  3565. "groupIndex": 0,
  3566. "_id": ""
  3567. },
  3568. {
  3569. "__type__": "cc.Label",
  3570. "_name": "",
  3571. "_objFlags": 0,
  3572. "node": {
  3573. "__id__": 91
  3574. },
  3575. "_enabled": true,
  3576. "_materials": [
  3577. {
  3578. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3579. }
  3580. ],
  3581. "_srcBlendFactor": 770,
  3582. "_dstBlendFactor": 771,
  3583. "_string": "0",
  3584. "_N$string": "0",
  3585. "_fontSize": 24,
  3586. "_lineHeight": 40,
  3587. "_enableWrapText": true,
  3588. "_N$file": null,
  3589. "_isSystemFontUsed": true,
  3590. "_spacingX": 0,
  3591. "_batchAsBitmap": false,
  3592. "_styleFlags": 0,
  3593. "_underlineHeight": 0,
  3594. "_N$horizontalAlign": 1,
  3595. "_N$verticalAlign": 1,
  3596. "_N$fontFamily": "Arial",
  3597. "_N$overflow": 0,
  3598. "_N$cacheMode": 0,
  3599. "_id": ""
  3600. },
  3601. {
  3602. "__type__": "cc.PrefabInfo",
  3603. "root": {
  3604. "__id__": 18
  3605. },
  3606. "asset": {
  3607. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  3608. },
  3609. "fileId": "616YMALkpIpItjR/1JBSGA",
  3610. "sync": false
  3611. },
  3612. {
  3613. "__type__": "cc.Label",
  3614. "_name": "",
  3615. "_objFlags": 0,
  3616. "node": {
  3617. "__id__": 90
  3618. },
  3619. "_enabled": true,
  3620. "_materials": [
  3621. {
  3622. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3623. }
  3624. ],
  3625. "_srcBlendFactor": 770,
  3626. "_dstBlendFactor": 771,
  3627. "_string": "当前视频单价:",
  3628. "_N$string": "当前视频单价:",
  3629. "_fontSize": 24,
  3630. "_lineHeight": 30,
  3631. "_enableWrapText": true,
  3632. "_N$file": null,
  3633. "_isSystemFontUsed": true,
  3634. "_spacingX": 0,
  3635. "_batchAsBitmap": false,
  3636. "_styleFlags": 0,
  3637. "_underlineHeight": 0,
  3638. "_N$horizontalAlign": 1,
  3639. "_N$verticalAlign": 1,
  3640. "_N$fontFamily": "Arial",
  3641. "_N$overflow": 0,
  3642. "_N$cacheMode": 0,
  3643. "_id": ""
  3644. },
  3645. {
  3646. "__type__": "cc.PrefabInfo",
  3647. "root": {
  3648. "__id__": 18
  3649. },
  3650. "asset": {
  3651. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  3652. },
  3653. "fileId": "dbhShFl3pNK4GJzikgjS9/",
  3654. "sync": false
  3655. },
  3656. {
  3657. "__type__": "cc.Node",
  3658. "_name": "label",
  3659. "_objFlags": 0,
  3660. "_parent": {
  3661. "__id__": 86
  3662. },
  3663. "_children": [
  3664. {
  3665. "__id__": 97
  3666. }
  3667. ],
  3668. "_active": true,
  3669. "_components": [
  3670. {
  3671. "__id__": 100
  3672. }
  3673. ],
  3674. "_prefab": {
  3675. "__id__": 101
  3676. },
  3677. "_opacity": 255,
  3678. "_color": {
  3679. "__type__": "cc.Color",
  3680. "r": 0,
  3681. "g": 0,
  3682. "b": 0,
  3683. "a": 255
  3684. },
  3685. "_contentSize": {
  3686. "__type__": "cc.Size",
  3687. "width": 126.67,
  3688. "height": 37.8
  3689. },
  3690. "_anchorPoint": {
  3691. "__type__": "cc.Vec2",
  3692. "x": 0,
  3693. "y": 0.5
  3694. },
  3695. "_trs": {
  3696. "__type__": "TypedArray",
  3697. "ctor": "Float64Array",
  3698. "array": [
  3699. -161.091,
  3700. 0,
  3701. 0,
  3702. 0,
  3703. 0,
  3704. 0,
  3705. 1,
  3706. 1,
  3707. 1,
  3708. 1
  3709. ]
  3710. },
  3711. "_eulerAngles": {
  3712. "__type__": "cc.Vec3",
  3713. "x": 0,
  3714. "y": 0,
  3715. "z": 0
  3716. },
  3717. "_skewX": 0,
  3718. "_skewY": 0,
  3719. "_is3DNode": false,
  3720. "_groupIndex": 0,
  3721. "groupIndex": 0,
  3722. "_id": ""
  3723. },
  3724. {
  3725. "__type__": "cc.Node",
  3726. "_name": "t_ks_today_earning",
  3727. "_objFlags": 0,
  3728. "_parent": {
  3729. "__id__": 96
  3730. },
  3731. "_children": [],
  3732. "_active": true,
  3733. "_components": [
  3734. {
  3735. "__id__": 98
  3736. }
  3737. ],
  3738. "_prefab": {
  3739. "__id__": 99
  3740. },
  3741. "_opacity": 255,
  3742. "_color": {
  3743. "__type__": "cc.Color",
  3744. "r": 235,
  3745. "g": 100,
  3746. "b": 100,
  3747. "a": 255
  3748. },
  3749. "_contentSize": {
  3750. "__type__": "cc.Size",
  3751. "width": 13.35,
  3752. "height": 50.4
  3753. },
  3754. "_anchorPoint": {
  3755. "__type__": "cc.Vec2",
  3756. "x": 0,
  3757. "y": 0.5
  3758. },
  3759. "_trs": {
  3760. "__type__": "TypedArray",
  3761. "ctor": "Float64Array",
  3762. "array": [
  3763. 220,
  3764. 0,
  3765. 0,
  3766. 0,
  3767. 0,
  3768. 0,
  3769. 1,
  3770. 1,
  3771. 1,
  3772. 1
  3773. ]
  3774. },
  3775. "_eulerAngles": {
  3776. "__type__": "cc.Vec3",
  3777. "x": 0,
  3778. "y": 0,
  3779. "z": 0
  3780. },
  3781. "_skewX": 0,
  3782. "_skewY": 0,
  3783. "_is3DNode": false,
  3784. "_groupIndex": 0,
  3785. "groupIndex": 0,
  3786. "_id": ""
  3787. },
  3788. {
  3789. "__type__": "cc.Label",
  3790. "_name": "",
  3791. "_objFlags": 0,
  3792. "node": {
  3793. "__id__": 97
  3794. },
  3795. "_enabled": true,
  3796. "_materials": [
  3797. {
  3798. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3799. }
  3800. ],
  3801. "_srcBlendFactor": 770,
  3802. "_dstBlendFactor": 771,
  3803. "_string": "0",
  3804. "_N$string": "0",
  3805. "_fontSize": 24,
  3806. "_lineHeight": 40,
  3807. "_enableWrapText": true,
  3808. "_N$file": null,
  3809. "_isSystemFontUsed": true,
  3810. "_spacingX": 0,
  3811. "_batchAsBitmap": false,
  3812. "_styleFlags": 0,
  3813. "_underlineHeight": 0,
  3814. "_N$horizontalAlign": 1,
  3815. "_N$verticalAlign": 1,
  3816. "_N$fontFamily": "Arial",
  3817. "_N$overflow": 0,
  3818. "_N$cacheMode": 0,
  3819. "_id": ""
  3820. },
  3821. {
  3822. "__type__": "cc.PrefabInfo",
  3823. "root": {
  3824. "__id__": 18
  3825. },
  3826. "asset": {
  3827. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  3828. },
  3829. "fileId": "16adYML3BP2pDVesmblPcp",
  3830. "sync": false
  3831. },
  3832. {
  3833. "__type__": "cc.Label",
  3834. "_name": "",
  3835. "_objFlags": 0,
  3836. "node": {
  3837. "__id__": 96
  3838. },
  3839. "_enabled": true,
  3840. "_materials": [
  3841. {
  3842. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3843. }
  3844. ],
  3845. "_srcBlendFactor": 770,
  3846. "_dstBlendFactor": 771,
  3847. "_string": "今日总价格:",
  3848. "_N$string": "今日总价格:",
  3849. "_fontSize": 24,
  3850. "_lineHeight": 30,
  3851. "_enableWrapText": true,
  3852. "_N$file": null,
  3853. "_isSystemFontUsed": true,
  3854. "_spacingX": 0,
  3855. "_batchAsBitmap": false,
  3856. "_styleFlags": 0,
  3857. "_underlineHeight": 0,
  3858. "_N$horizontalAlign": 1,
  3859. "_N$verticalAlign": 1,
  3860. "_N$fontFamily": "Arial",
  3861. "_N$overflow": 0,
  3862. "_N$cacheMode": 0,
  3863. "_id": ""
  3864. },
  3865. {
  3866. "__type__": "cc.PrefabInfo",
  3867. "root": {
  3868. "__id__": 18
  3869. },
  3870. "asset": {
  3871. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  3872. },
  3873. "fileId": "78WOOP/HRCx7rJkT0nZ19D",
  3874. "sync": false
  3875. },
  3876. {
  3877. "__type__": "cc.Node",
  3878. "_name": "label",
  3879. "_objFlags": 0,
  3880. "_parent": {
  3881. "__id__": 86
  3882. },
  3883. "_children": [
  3884. {
  3885. "__id__": 103
  3886. }
  3887. ],
  3888. "_active": true,
  3889. "_components": [
  3890. {
  3891. "__id__": 106
  3892. }
  3893. ],
  3894. "_prefab": {
  3895. "__id__": 107
  3896. },
  3897. "_opacity": 255,
  3898. "_color": {
  3899. "__type__": "cc.Color",
  3900. "r": 0,
  3901. "g": 0,
  3902. "b": 0,
  3903. "a": 255
  3904. },
  3905. "_contentSize": {
  3906. "__type__": "cc.Size",
  3907. "width": 102.67,
  3908. "height": 37.8
  3909. },
  3910. "_anchorPoint": {
  3911. "__type__": "cc.Vec2",
  3912. "x": 0,
  3913. "y": 0.5
  3914. },
  3915. "_trs": {
  3916. "__type__": "TypedArray",
  3917. "ctor": "Float64Array",
  3918. "array": [
  3919. -161.091,
  3920. -37.8,
  3921. 0,
  3922. 0,
  3923. 0,
  3924. 0,
  3925. 1,
  3926. 1,
  3927. 1,
  3928. 1
  3929. ]
  3930. },
  3931. "_eulerAngles": {
  3932. "__type__": "cc.Vec3",
  3933. "x": 0,
  3934. "y": 0,
  3935. "z": 0
  3936. },
  3937. "_skewX": 0,
  3938. "_skewY": 0,
  3939. "_is3DNode": false,
  3940. "_groupIndex": 0,
  3941. "groupIndex": 0,
  3942. "_id": ""
  3943. },
  3944. {
  3945. "__type__": "cc.Node",
  3946. "_name": "t_ks_count_today",
  3947. "_objFlags": 0,
  3948. "_parent": {
  3949. "__id__": 102
  3950. },
  3951. "_children": [],
  3952. "_active": true,
  3953. "_components": [
  3954. {
  3955. "__id__": 104
  3956. }
  3957. ],
  3958. "_prefab": {
  3959. "__id__": 105
  3960. },
  3961. "_opacity": 255,
  3962. "_color": {
  3963. "__type__": "cc.Color",
  3964. "r": 235,
  3965. "g": 100,
  3966. "b": 100,
  3967. "a": 255
  3968. },
  3969. "_contentSize": {
  3970. "__type__": "cc.Size",
  3971. "width": 13.35,
  3972. "height": 50.4
  3973. },
  3974. "_anchorPoint": {
  3975. "__type__": "cc.Vec2",
  3976. "x": 0,
  3977. "y": 0.5
  3978. },
  3979. "_trs": {
  3980. "__type__": "TypedArray",
  3981. "ctor": "Float64Array",
  3982. "array": [
  3983. 220,
  3984. 0,
  3985. 0,
  3986. 0,
  3987. 0,
  3988. 0,
  3989. 1,
  3990. 1,
  3991. 1,
  3992. 1
  3993. ]
  3994. },
  3995. "_eulerAngles": {
  3996. "__type__": "cc.Vec3",
  3997. "x": 0,
  3998. "y": 0,
  3999. "z": 0
  4000. },
  4001. "_skewX": 0,
  4002. "_skewY": 0,
  4003. "_is3DNode": false,
  4004. "_groupIndex": 0,
  4005. "groupIndex": 0,
  4006. "_id": ""
  4007. },
  4008. {
  4009. "__type__": "cc.Label",
  4010. "_name": "",
  4011. "_objFlags": 0,
  4012. "node": {
  4013. "__id__": 103
  4014. },
  4015. "_enabled": true,
  4016. "_materials": [
  4017. {
  4018. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4019. }
  4020. ],
  4021. "_srcBlendFactor": 770,
  4022. "_dstBlendFactor": 771,
  4023. "_string": "0",
  4024. "_N$string": "0",
  4025. "_fontSize": 24,
  4026. "_lineHeight": 40,
  4027. "_enableWrapText": true,
  4028. "_N$file": null,
  4029. "_isSystemFontUsed": true,
  4030. "_spacingX": 0,
  4031. "_batchAsBitmap": false,
  4032. "_styleFlags": 0,
  4033. "_underlineHeight": 0,
  4034. "_N$horizontalAlign": 1,
  4035. "_N$verticalAlign": 1,
  4036. "_N$fontFamily": "Arial",
  4037. "_N$overflow": 0,
  4038. "_N$cacheMode": 0,
  4039. "_id": ""
  4040. },
  4041. {
  4042. "__type__": "cc.PrefabInfo",
  4043. "root": {
  4044. "__id__": 18
  4045. },
  4046. "asset": {
  4047. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  4048. },
  4049. "fileId": "81ZHMfL/FDRYIg7C/w9bFP",
  4050. "sync": false
  4051. },
  4052. {
  4053. "__type__": "cc.Label",
  4054. "_name": "",
  4055. "_objFlags": 0,
  4056. "node": {
  4057. "__id__": 102
  4058. },
  4059. "_enabled": true,
  4060. "_materials": [
  4061. {
  4062. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4063. }
  4064. ],
  4065. "_srcBlendFactor": 770,
  4066. "_dstBlendFactor": 771,
  4067. "_string": "今日视频:",
  4068. "_N$string": "今日视频:",
  4069. "_fontSize": 24,
  4070. "_lineHeight": 30,
  4071. "_enableWrapText": true,
  4072. "_N$file": null,
  4073. "_isSystemFontUsed": true,
  4074. "_spacingX": 0,
  4075. "_batchAsBitmap": false,
  4076. "_styleFlags": 0,
  4077. "_underlineHeight": 0,
  4078. "_N$horizontalAlign": 1,
  4079. "_N$verticalAlign": 1,
  4080. "_N$fontFamily": "Arial",
  4081. "_N$overflow": 0,
  4082. "_N$cacheMode": 0,
  4083. "_id": ""
  4084. },
  4085. {
  4086. "__type__": "cc.PrefabInfo",
  4087. "root": {
  4088. "__id__": 18
  4089. },
  4090. "asset": {
  4091. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  4092. },
  4093. "fileId": "24VdTyoVhOB48jsmOmVspj",
  4094. "sync": false
  4095. },
  4096. {
  4097. "__type__": "cc.Node",
  4098. "_name": "label",
  4099. "_objFlags": 0,
  4100. "_parent": {
  4101. "__id__": 86
  4102. },
  4103. "_children": [
  4104. {
  4105. "__id__": 109
  4106. }
  4107. ],
  4108. "_active": true,
  4109. "_components": [
  4110. {
  4111. "__id__": 112
  4112. }
  4113. ],
  4114. "_prefab": {
  4115. "__id__": 113
  4116. },
  4117. "_opacity": 255,
  4118. "_color": {
  4119. "__type__": "cc.Color",
  4120. "r": 0,
  4121. "g": 0,
  4122. "b": 0,
  4123. "a": 255
  4124. },
  4125. "_contentSize": {
  4126. "__type__": "cc.Size",
  4127. "width": 78.67,
  4128. "height": 37.8
  4129. },
  4130. "_anchorPoint": {
  4131. "__type__": "cc.Vec2",
  4132. "x": 0,
  4133. "y": 0.5
  4134. },
  4135. "_trs": {
  4136. "__type__": "TypedArray",
  4137. "ctor": "Float64Array",
  4138. "array": [
  4139. -161.091,
  4140. -75.6,
  4141. 0,
  4142. 0,
  4143. 0,
  4144. 0,
  4145. 1,
  4146. 1,
  4147. 1,
  4148. 1
  4149. ]
  4150. },
  4151. "_eulerAngles": {
  4152. "__type__": "cc.Vec3",
  4153. "x": 0,
  4154. "y": 0,
  4155. "z": 0
  4156. },
  4157. "_skewX": 0,
  4158. "_skewY": 0,
  4159. "_is3DNode": false,
  4160. "_groupIndex": 0,
  4161. "groupIndex": 0,
  4162. "_id": ""
  4163. },
  4164. {
  4165. "__type__": "cc.Node",
  4166. "_name": "t_ks_count_month",
  4167. "_objFlags": 0,
  4168. "_parent": {
  4169. "__id__": 108
  4170. },
  4171. "_children": [],
  4172. "_active": true,
  4173. "_components": [
  4174. {
  4175. "__id__": 110
  4176. }
  4177. ],
  4178. "_prefab": {
  4179. "__id__": 111
  4180. },
  4181. "_opacity": 255,
  4182. "_color": {
  4183. "__type__": "cc.Color",
  4184. "r": 235,
  4185. "g": 100,
  4186. "b": 100,
  4187. "a": 255
  4188. },
  4189. "_contentSize": {
  4190. "__type__": "cc.Size",
  4191. "width": 13.35,
  4192. "height": 50.4
  4193. },
  4194. "_anchorPoint": {
  4195. "__type__": "cc.Vec2",
  4196. "x": 0,
  4197. "y": 0.5
  4198. },
  4199. "_trs": {
  4200. "__type__": "TypedArray",
  4201. "ctor": "Float64Array",
  4202. "array": [
  4203. 220,
  4204. 0,
  4205. 0,
  4206. 0,
  4207. 0,
  4208. 0,
  4209. 1,
  4210. 1,
  4211. 1,
  4212. 1
  4213. ]
  4214. },
  4215. "_eulerAngles": {
  4216. "__type__": "cc.Vec3",
  4217. "x": 0,
  4218. "y": 0,
  4219. "z": 0
  4220. },
  4221. "_skewX": 0,
  4222. "_skewY": 0,
  4223. "_is3DNode": false,
  4224. "_groupIndex": 0,
  4225. "groupIndex": 0,
  4226. "_id": ""
  4227. },
  4228. {
  4229. "__type__": "cc.Label",
  4230. "_name": "",
  4231. "_objFlags": 0,
  4232. "node": {
  4233. "__id__": 109
  4234. },
  4235. "_enabled": true,
  4236. "_materials": [
  4237. {
  4238. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4239. }
  4240. ],
  4241. "_srcBlendFactor": 770,
  4242. "_dstBlendFactor": 771,
  4243. "_string": "0",
  4244. "_N$string": "0",
  4245. "_fontSize": 24,
  4246. "_lineHeight": 40,
  4247. "_enableWrapText": true,
  4248. "_N$file": null,
  4249. "_isSystemFontUsed": true,
  4250. "_spacingX": 0,
  4251. "_batchAsBitmap": false,
  4252. "_styleFlags": 0,
  4253. "_underlineHeight": 0,
  4254. "_N$horizontalAlign": 1,
  4255. "_N$verticalAlign": 1,
  4256. "_N$fontFamily": "Arial",
  4257. "_N$overflow": 0,
  4258. "_N$cacheMode": 0,
  4259. "_id": ""
  4260. },
  4261. {
  4262. "__type__": "cc.PrefabInfo",
  4263. "root": {
  4264. "__id__": 18
  4265. },
  4266. "asset": {
  4267. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  4268. },
  4269. "fileId": "9aDCa3DeJEP5q4aQ7s+fC2",
  4270. "sync": false
  4271. },
  4272. {
  4273. "__type__": "cc.Label",
  4274. "_name": "",
  4275. "_objFlags": 0,
  4276. "node": {
  4277. "__id__": 108
  4278. },
  4279. "_enabled": true,
  4280. "_materials": [
  4281. {
  4282. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4283. }
  4284. ],
  4285. "_srcBlendFactor": 770,
  4286. "_dstBlendFactor": 771,
  4287. "_string": "月视频:",
  4288. "_N$string": "月视频:",
  4289. "_fontSize": 24,
  4290. "_lineHeight": 30,
  4291. "_enableWrapText": true,
  4292. "_N$file": null,
  4293. "_isSystemFontUsed": true,
  4294. "_spacingX": 0,
  4295. "_batchAsBitmap": false,
  4296. "_styleFlags": 0,
  4297. "_underlineHeight": 0,
  4298. "_N$horizontalAlign": 1,
  4299. "_N$verticalAlign": 1,
  4300. "_N$fontFamily": "Arial",
  4301. "_N$overflow": 0,
  4302. "_N$cacheMode": 0,
  4303. "_id": ""
  4304. },
  4305. {
  4306. "__type__": "cc.PrefabInfo",
  4307. "root": {
  4308. "__id__": 18
  4309. },
  4310. "asset": {
  4311. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  4312. },
  4313. "fileId": "61rg3DOD1Nv6XgDZqHvPW7",
  4314. "sync": false
  4315. },
  4316. {
  4317. "__type__": "cc.Layout",
  4318. "_name": "",
  4319. "_objFlags": 0,
  4320. "node": {
  4321. "__id__": 86
  4322. },
  4323. "_enabled": true,
  4324. "_layoutSize": {
  4325. "__type__": "cc.Size",
  4326. "width": 360,
  4327. "height": 209
  4328. },
  4329. "_resize": 1,
  4330. "_N$layoutType": 2,
  4331. "_N$cellSize": {
  4332. "__type__": "cc.Size",
  4333. "width": 40,
  4334. "height": 40
  4335. },
  4336. "_N$startAxis": 0,
  4337. "_N$paddingLeft": 0,
  4338. "_N$paddingRight": 0,
  4339. "_N$paddingTop": 10,
  4340. "_N$paddingBottom": 10,
  4341. "_N$spacingX": 0,
  4342. "_N$spacingY": 0,
  4343. "_N$verticalDirection": 1,
  4344. "_N$horizontalDirection": 0,
  4345. "_N$affectedByScale": false,
  4346. "_id": ""
  4347. },
  4348. {
  4349. "__type__": "cc.Sprite",
  4350. "_name": "",
  4351. "_objFlags": 0,
  4352. "node": {
  4353. "__id__": 86
  4354. },
  4355. "_enabled": true,
  4356. "_materials": [
  4357. {
  4358. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4359. }
  4360. ],
  4361. "_srcBlendFactor": 770,
  4362. "_dstBlendFactor": 771,
  4363. "_spriteFrame": {
  4364. "__uuid__": "e76d7821-6b3a-4888-8b5b-4277582a5087"
  4365. },
  4366. "_type": 1,
  4367. "_sizeMode": 0,
  4368. "_fillType": 0,
  4369. "_fillCenter": {
  4370. "__type__": "cc.Vec2",
  4371. "x": 0,
  4372. "y": 0
  4373. },
  4374. "_fillStart": 0,
  4375. "_fillRange": 0,
  4376. "_isTrimmedMode": true,
  4377. "_atlas": null,
  4378. "_id": ""
  4379. },
  4380. {
  4381. "__type__": "cc.Widget",
  4382. "_name": "",
  4383. "_objFlags": 0,
  4384. "node": {
  4385. "__id__": 86
  4386. },
  4387. "_enabled": true,
  4388. "alignMode": 1,
  4389. "_target": null,
  4390. "_alignFlags": 40,
  4391. "_left": 20,
  4392. "_right": 20,
  4393. "_top": 0,
  4394. "_bottom": 0,
  4395. "_verticalCenter": 0,
  4396. "_horizontalCenter": 0,
  4397. "_isAbsLeft": true,
  4398. "_isAbsRight": true,
  4399. "_isAbsTop": true,
  4400. "_isAbsBottom": true,
  4401. "_isAbsHorizontalCenter": true,
  4402. "_isAbsVerticalCenter": true,
  4403. "_originalWidth": 450,
  4404. "_originalHeight": 0,
  4405. "_id": ""
  4406. },
  4407. {
  4408. "__type__": "cc.PrefabInfo",
  4409. "root": {
  4410. "__id__": 18
  4411. },
  4412. "asset": {
  4413. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  4414. },
  4415. "fileId": "faL3lZmBJFhLTTNQFbyJB6",
  4416. "sync": false
  4417. },
  4418. {
  4419. "__type__": "cc.Node",
  4420. "_name": "t_date",
  4421. "_objFlags": 0,
  4422. "_parent": {
  4423. "__id__": 18
  4424. },
  4425. "_children": [],
  4426. "_active": true,
  4427. "_components": [
  4428. {
  4429. "__id__": 119
  4430. }
  4431. ],
  4432. "_prefab": {
  4433. "__id__": 120
  4434. },
  4435. "_opacity": 255,
  4436. "_color": {
  4437. "__type__": "cc.Color",
  4438. "r": 0,
  4439. "g": 0,
  4440. "b": 0,
  4441. "a": 255
  4442. },
  4443. "_contentSize": {
  4444. "__type__": "cc.Size",
  4445. "width": 48,
  4446. "height": 30.24
  4447. },
  4448. "_anchorPoint": {
  4449. "__type__": "cc.Vec2",
  4450. "x": 0.5,
  4451. "y": 0.5
  4452. },
  4453. "_trs": {
  4454. "__type__": "TypedArray",
  4455. "ctor": "Float64Array",
  4456. "array": [
  4457. 0,
  4458. -732.52,
  4459. 0,
  4460. 0,
  4461. 0,
  4462. 0,
  4463. 1,
  4464. 1,
  4465. 1,
  4466. 1
  4467. ]
  4468. },
  4469. "_eulerAngles": {
  4470. "__type__": "cc.Vec3",
  4471. "x": 0,
  4472. "y": 0,
  4473. "z": 0
  4474. },
  4475. "_skewX": 0,
  4476. "_skewY": 0,
  4477. "_is3DNode": false,
  4478. "_groupIndex": 0,
  4479. "groupIndex": 0,
  4480. "_id": ""
  4481. },
  4482. {
  4483. "__type__": "cc.Label",
  4484. "_name": "",
  4485. "_objFlags": 0,
  4486. "node": {
  4487. "__id__": 118
  4488. },
  4489. "_enabled": true,
  4490. "_materials": [
  4491. {
  4492. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4493. }
  4494. ],
  4495. "_srcBlendFactor": 770,
  4496. "_dstBlendFactor": 771,
  4497. "_string": "日期",
  4498. "_N$string": "日期",
  4499. "_fontSize": 24,
  4500. "_lineHeight": 24,
  4501. "_enableWrapText": true,
  4502. "_N$file": null,
  4503. "_isSystemFontUsed": true,
  4504. "_spacingX": 0,
  4505. "_batchAsBitmap": false,
  4506. "_styleFlags": 0,
  4507. "_underlineHeight": 0,
  4508. "_N$horizontalAlign": 1,
  4509. "_N$verticalAlign": 1,
  4510. "_N$fontFamily": "Arial",
  4511. "_N$overflow": 0,
  4512. "_N$cacheMode": 0,
  4513. "_id": ""
  4514. },
  4515. {
  4516. "__type__": "cc.PrefabInfo",
  4517. "root": {
  4518. "__id__": 18
  4519. },
  4520. "asset": {
  4521. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  4522. },
  4523. "fileId": "8egs7HExNLL4Kb4NFzZOM3",
  4524. "sync": false
  4525. },
  4526. {
  4527. "__type__": "cc.Layout",
  4528. "_name": "",
  4529. "_objFlags": 0,
  4530. "node": {
  4531. "__id__": 18
  4532. },
  4533. "_enabled": true,
  4534. "_layoutSize": {
  4535. "__type__": "cc.Size",
  4536. "width": 400,
  4537. "height": 747.64
  4538. },
  4539. "_resize": 1,
  4540. "_N$layoutType": 2,
  4541. "_N$cellSize": {
  4542. "__type__": "cc.Size",
  4543. "width": 40,
  4544. "height": 40
  4545. },
  4546. "_N$startAxis": 0,
  4547. "_N$paddingLeft": 0,
  4548. "_N$paddingRight": 0,
  4549. "_N$paddingTop": 0,
  4550. "_N$paddingBottom": 0,
  4551. "_N$spacingX": 0,
  4552. "_N$spacingY": 10,
  4553. "_N$verticalDirection": 1,
  4554. "_N$horizontalDirection": 0,
  4555. "_N$affectedByScale": false,
  4556. "_id": ""
  4557. },
  4558. {
  4559. "__type__": "cc.Widget",
  4560. "_name": "",
  4561. "_objFlags": 0,
  4562. "node": {
  4563. "__id__": 18
  4564. },
  4565. "_enabled": true,
  4566. "alignMode": 1,
  4567. "_target": null,
  4568. "_alignFlags": 41,
  4569. "_left": 0,
  4570. "_right": 0,
  4571. "_top": 20,
  4572. "_bottom": 325,
  4573. "_verticalCenter": 0,
  4574. "_horizontalCenter": 0,
  4575. "_isAbsLeft": true,
  4576. "_isAbsRight": true,
  4577. "_isAbsTop": true,
  4578. "_isAbsBottom": true,
  4579. "_isAbsHorizontalCenter": true,
  4580. "_isAbsVerticalCenter": true,
  4581. "_originalWidth": 200,
  4582. "_originalHeight": 150,
  4583. "_id": ""
  4584. },
  4585. {
  4586. "__type__": "cc.PrefabInfo",
  4587. "root": {
  4588. "__id__": 18
  4589. },
  4590. "asset": {
  4591. "__uuid__": "785a442c-3ceb-45be-a46e-7317f625f3b9"
  4592. },
  4593. "fileId": "61GKipMT9OAIMFcy8PnfyY",
  4594. "sync": false
  4595. },
  4596. {
  4597. "__type__": "cc.PrefabInfo",
  4598. "root": {
  4599. "__id__": 1
  4600. },
  4601. "asset": {
  4602. "__id__": 0
  4603. },
  4604. "fileId": "2e1917KZ5OzppBSRnQHTst",
  4605. "sync": false
  4606. },
  4607. {
  4608. "__type__": "cc.Node",
  4609. "_name": "btns",
  4610. "_objFlags": 0,
  4611. "_parent": {
  4612. "__id__": 8
  4613. },
  4614. "_children": [
  4615. {
  4616. "__id__": 126
  4617. },
  4618. {
  4619. "__id__": 136
  4620. },
  4621. {
  4622. "__id__": 146
  4623. },
  4624. {
  4625. "__id__": 156
  4626. }
  4627. ],
  4628. "_active": true,
  4629. "_components": [
  4630. {
  4631. "__id__": 163
  4632. }
  4633. ],
  4634. "_prefab": {
  4635. "__id__": 164
  4636. },
  4637. "_opacity": 255,
  4638. "_color": {
  4639. "__type__": "cc.Color",
  4640. "r": 255,
  4641. "g": 255,
  4642. "b": 255,
  4643. "a": 255
  4644. },
  4645. "_contentSize": {
  4646. "__type__": "cc.Size",
  4647. "width": 200,
  4648. "height": 360
  4649. },
  4650. "_anchorPoint": {
  4651. "__type__": "cc.Vec2",
  4652. "x": 0.5,
  4653. "y": 0
  4654. },
  4655. "_trs": {
  4656. "__type__": "TypedArray",
  4657. "ctor": "Float64Array",
  4658. "array": [
  4659. 250,
  4660. -600,
  4661. 0,
  4662. 0,
  4663. 0,
  4664. 0,
  4665. 1,
  4666. 1,
  4667. 1,
  4668. 1
  4669. ]
  4670. },
  4671. "_eulerAngles": {
  4672. "__type__": "cc.Vec3",
  4673. "x": 0,
  4674. "y": 0,
  4675. "z": 0
  4676. },
  4677. "_skewX": 0,
  4678. "_skewY": 0,
  4679. "_is3DNode": false,
  4680. "_groupIndex": 0,
  4681. "groupIndex": 0,
  4682. "_id": ""
  4683. },
  4684. {
  4685. "__type__": "cc.Node",
  4686. "_name": "btn_csj",
  4687. "_objFlags": 0,
  4688. "_parent": {
  4689. "__id__": 125
  4690. },
  4691. "_children": [
  4692. {
  4693. "__id__": 127
  4694. },
  4695. {
  4696. "__id__": 130
  4697. }
  4698. ],
  4699. "_active": true,
  4700. "_components": [
  4701. {
  4702. "__id__": 133
  4703. },
  4704. {
  4705. "__id__": 134
  4706. }
  4707. ],
  4708. "_prefab": {
  4709. "__id__": 135
  4710. },
  4711. "_opacity": 255,
  4712. "_color": {
  4713. "__type__": "cc.Color",
  4714. "r": 255,
  4715. "g": 255,
  4716. "b": 255,
  4717. "a": 255
  4718. },
  4719. "_contentSize": {
  4720. "__type__": "cc.Size",
  4721. "width": 200,
  4722. "height": 60
  4723. },
  4724. "_anchorPoint": {
  4725. "__type__": "cc.Vec2",
  4726. "x": 0.5,
  4727. "y": 0.5
  4728. },
  4729. "_trs": {
  4730. "__type__": "TypedArray",
  4731. "ctor": "Float64Array",
  4732. "array": [
  4733. 0,
  4734. 330,
  4735. 0,
  4736. 0,
  4737. 0,
  4738. 0,
  4739. 1,
  4740. 1,
  4741. 1,
  4742. 0
  4743. ]
  4744. },
  4745. "_eulerAngles": {
  4746. "__type__": "cc.Vec3",
  4747. "x": 0,
  4748. "y": 0,
  4749. "z": 0
  4750. },
  4751. "_skewX": 0,
  4752. "_skewY": 0,
  4753. "_is3DNode": false,
  4754. "_groupIndex": 0,
  4755. "groupIndex": 0,
  4756. "_id": ""
  4757. },
  4758. {
  4759. "__type__": "cc.Node",
  4760. "_name": "label",
  4761. "_objFlags": 0,
  4762. "_parent": {
  4763. "__id__": 126
  4764. },
  4765. "_children": [],
  4766. "_active": true,
  4767. "_components": [
  4768. {
  4769. "__id__": 128
  4770. }
  4771. ],
  4772. "_prefab": {
  4773. "__id__": 129
  4774. },
  4775. "_opacity": 255,
  4776. "_color": {
  4777. "__type__": "cc.Color",
  4778. "r": 0,
  4779. "g": 0,
  4780. "b": 0,
  4781. "a": 255
  4782. },
  4783. "_contentSize": {
  4784. "__type__": "cc.Size",
  4785. "width": 84,
  4786. "height": 50.4
  4787. },
  4788. "_anchorPoint": {
  4789. "__type__": "cc.Vec2",
  4790. "x": 0.5,
  4791. "y": 0.5
  4792. },
  4793. "_trs": {
  4794. "__type__": "TypedArray",
  4795. "ctor": "Float64Array",
  4796. "array": [
  4797. 30,
  4798. 0,
  4799. 0,
  4800. 0,
  4801. 0,
  4802. 0,
  4803. 1,
  4804. 1,
  4805. 1,
  4806. 1
  4807. ]
  4808. },
  4809. "_eulerAngles": {
  4810. "__type__": "cc.Vec3",
  4811. "x": 0,
  4812. "y": 0,
  4813. "z": 0
  4814. },
  4815. "_skewX": 0,
  4816. "_skewY": 0,
  4817. "_is3DNode": false,
  4818. "_groupIndex": 0,
  4819. "groupIndex": 0,
  4820. "_id": ""
  4821. },
  4822. {
  4823. "__type__": "cc.Label",
  4824. "_name": "",
  4825. "_objFlags": 0,
  4826. "node": {
  4827. "__id__": 127
  4828. },
  4829. "_enabled": true,
  4830. "_materials": [
  4831. {
  4832. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4833. }
  4834. ],
  4835. "_srcBlendFactor": 770,
  4836. "_dstBlendFactor": 771,
  4837. "_string": "穿山甲",
  4838. "_N$string": "穿山甲",
  4839. "_fontSize": 28,
  4840. "_lineHeight": 40,
  4841. "_enableWrapText": true,
  4842. "_N$file": null,
  4843. "_isSystemFontUsed": true,
  4844. "_spacingX": 0,
  4845. "_batchAsBitmap": false,
  4846. "_styleFlags": 0,
  4847. "_underlineHeight": 0,
  4848. "_N$horizontalAlign": 1,
  4849. "_N$verticalAlign": 1,
  4850. "_N$fontFamily": "Arial",
  4851. "_N$overflow": 0,
  4852. "_N$cacheMode": 0,
  4853. "_id": ""
  4854. },
  4855. {
  4856. "__type__": "cc.PrefabInfo",
  4857. "root": {
  4858. "__id__": 127
  4859. },
  4860. "asset": {
  4861. "__uuid__": "27756ebb-3d33-44b0-9b96-e858fadd4dd4"
  4862. },
  4863. "fileId": "e20dJNjvxO1pag0ci7QT/D",
  4864. "sync": false
  4865. },
  4866. {
  4867. "__type__": "cc.Node",
  4868. "_name": "img_video",
  4869. "_objFlags": 0,
  4870. "_parent": {
  4871. "__id__": 126
  4872. },
  4873. "_children": [],
  4874. "_active": true,
  4875. "_components": [
  4876. {
  4877. "__id__": 131
  4878. }
  4879. ],
  4880. "_prefab": {
  4881. "__id__": 132
  4882. },
  4883. "_opacity": 255,
  4884. "_color": {
  4885. "__type__": "cc.Color",
  4886. "r": 255,
  4887. "g": 255,
  4888. "b": 255,
  4889. "a": 255
  4890. },
  4891. "_contentSize": {
  4892. "__type__": "cc.Size",
  4893. "width": 98,
  4894. "height": 56
  4895. },
  4896. "_anchorPoint": {
  4897. "__type__": "cc.Vec2",
  4898. "x": 0.5,
  4899. "y": 0.5
  4900. },
  4901. "_trs": {
  4902. "__type__": "TypedArray",
  4903. "ctor": "Float64Array",
  4904. "array": [
  4905. -50,
  4906. 0,
  4907. 0,
  4908. 0,
  4909. 0,
  4910. 0,
  4911. 1,
  4912. 0.7,
  4913. 0.7,
  4914. 1
  4915. ]
  4916. },
  4917. "_eulerAngles": {
  4918. "__type__": "cc.Vec3",
  4919. "x": 0,
  4920. "y": 0,
  4921. "z": 0
  4922. },
  4923. "_skewX": 0,
  4924. "_skewY": 0,
  4925. "_is3DNode": false,
  4926. "_groupIndex": 0,
  4927. "groupIndex": 0,
  4928. "_id": ""
  4929. },
  4930. {
  4931. "__type__": "cc.Sprite",
  4932. "_name": "",
  4933. "_objFlags": 0,
  4934. "node": {
  4935. "__id__": 130
  4936. },
  4937. "_enabled": true,
  4938. "_materials": [
  4939. {
  4940. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4941. }
  4942. ],
  4943. "_srcBlendFactor": 770,
  4944. "_dstBlendFactor": 771,
  4945. "_spriteFrame": {
  4946. "__uuid__": "cd31a1b6-63bf-4c27-aac0-ef9e12425099"
  4947. },
  4948. "_type": 0,
  4949. "_sizeMode": 1,
  4950. "_fillType": 0,
  4951. "_fillCenter": {
  4952. "__type__": "cc.Vec2",
  4953. "x": 0,
  4954. "y": 0
  4955. },
  4956. "_fillStart": 0,
  4957. "_fillRange": 0,
  4958. "_isTrimmedMode": true,
  4959. "_atlas": null,
  4960. "_id": ""
  4961. },
  4962. {
  4963. "__type__": "cc.PrefabInfo",
  4964. "root": {
  4965. "__id__": 1
  4966. },
  4967. "asset": {
  4968. "__id__": 0
  4969. },
  4970. "fileId": "cbDVu2hIJBzrS290Di9Trh",
  4971. "sync": false
  4972. },
  4973. {
  4974. "__type__": "cc.Sprite",
  4975. "_name": "",
  4976. "_objFlags": 0,
  4977. "node": {
  4978. "__id__": 126
  4979. },
  4980. "_enabled": true,
  4981. "_materials": [
  4982. {
  4983. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4984. }
  4985. ],
  4986. "_srcBlendFactor": 770,
  4987. "_dstBlendFactor": 771,
  4988. "_spriteFrame": {
  4989. "__uuid__": "a889af7a-9dbd-4055-9ed7-8fbd459ae7f3"
  4990. },
  4991. "_type": 1,
  4992. "_sizeMode": 0,
  4993. "_fillType": 0,
  4994. "_fillCenter": {
  4995. "__type__": "cc.Vec2",
  4996. "x": 0,
  4997. "y": 0
  4998. },
  4999. "_fillStart": 0,
  5000. "_fillRange": 0,
  5001. "_isTrimmedMode": true,
  5002. "_atlas": null,
  5003. "_id": ""
  5004. },
  5005. {
  5006. "__type__": "cc.Button",
  5007. "_name": "",
  5008. "_objFlags": 0,
  5009. "node": {
  5010. "__id__": 126
  5011. },
  5012. "_enabled": true,
  5013. "_normalMaterial": null,
  5014. "_grayMaterial": null,
  5015. "duration": 0.1,
  5016. "zoomScale": 1.2,
  5017. "clickEvents": [],
  5018. "_N$interactable": true,
  5019. "_N$enableAutoGrayEffect": false,
  5020. "_N$transition": 3,
  5021. "transition": 3,
  5022. "_N$normalColor": {
  5023. "__type__": "cc.Color",
  5024. "r": 255,
  5025. "g": 255,
  5026. "b": 255,
  5027. "a": 255
  5028. },
  5029. "_N$pressedColor": {
  5030. "__type__": "cc.Color",
  5031. "r": 211,
  5032. "g": 211,
  5033. "b": 211,
  5034. "a": 255
  5035. },
  5036. "pressedColor": {
  5037. "__type__": "cc.Color",
  5038. "r": 211,
  5039. "g": 211,
  5040. "b": 211,
  5041. "a": 255
  5042. },
  5043. "_N$hoverColor": {
  5044. "__type__": "cc.Color",
  5045. "r": 255,
  5046. "g": 255,
  5047. "b": 255,
  5048. "a": 255
  5049. },
  5050. "hoverColor": {
  5051. "__type__": "cc.Color",
  5052. "r": 255,
  5053. "g": 255,
  5054. "b": 255,
  5055. "a": 255
  5056. },
  5057. "_N$disabledColor": {
  5058. "__type__": "cc.Color",
  5059. "r": 124,
  5060. "g": 124,
  5061. "b": 124,
  5062. "a": 255
  5063. },
  5064. "_N$normalSprite": null,
  5065. "_N$pressedSprite": null,
  5066. "pressedSprite": null,
  5067. "_N$hoverSprite": null,
  5068. "hoverSprite": null,
  5069. "_N$disabledSprite": null,
  5070. "_N$target": null,
  5071. "_id": ""
  5072. },
  5073. {
  5074. "__type__": "cc.PrefabInfo",
  5075. "root": {
  5076. "__id__": 1
  5077. },
  5078. "asset": {
  5079. "__id__": 0
  5080. },
  5081. "fileId": "71DfOSXZBAcJ4bmT7Tveo/",
  5082. "sync": false
  5083. },
  5084. {
  5085. "__type__": "cc.Node",
  5086. "_name": "btn_ylh",
  5087. "_objFlags": 0,
  5088. "_parent": {
  5089. "__id__": 125
  5090. },
  5091. "_children": [
  5092. {
  5093. "__id__": 137
  5094. },
  5095. {
  5096. "__id__": 140
  5097. }
  5098. ],
  5099. "_active": true,
  5100. "_components": [
  5101. {
  5102. "__id__": 143
  5103. },
  5104. {
  5105. "__id__": 144
  5106. }
  5107. ],
  5108. "_prefab": {
  5109. "__id__": 145
  5110. },
  5111. "_opacity": 255,
  5112. "_color": {
  5113. "__type__": "cc.Color",
  5114. "r": 255,
  5115. "g": 255,
  5116. "b": 255,
  5117. "a": 255
  5118. },
  5119. "_contentSize": {
  5120. "__type__": "cc.Size",
  5121. "width": 200,
  5122. "height": 60
  5123. },
  5124. "_anchorPoint": {
  5125. "__type__": "cc.Vec2",
  5126. "x": 0.5,
  5127. "y": 0.5
  5128. },
  5129. "_trs": {
  5130. "__type__": "TypedArray",
  5131. "ctor": "Float64Array",
  5132. "array": [
  5133. 0,
  5134. 230,
  5135. 0,
  5136. 0,
  5137. 0,
  5138. 0,
  5139. 1,
  5140. 1,
  5141. 1,
  5142. 0
  5143. ]
  5144. },
  5145. "_eulerAngles": {
  5146. "__type__": "cc.Vec3",
  5147. "x": 0,
  5148. "y": 0,
  5149. "z": 0
  5150. },
  5151. "_skewX": 0,
  5152. "_skewY": 0,
  5153. "_is3DNode": false,
  5154. "_groupIndex": 0,
  5155. "groupIndex": 0,
  5156. "_id": ""
  5157. },
  5158. {
  5159. "__type__": "cc.Node",
  5160. "_name": "label",
  5161. "_objFlags": 0,
  5162. "_parent": {
  5163. "__id__": 136
  5164. },
  5165. "_children": [],
  5166. "_active": true,
  5167. "_components": [
  5168. {
  5169. "__id__": 138
  5170. }
  5171. ],
  5172. "_prefab": {
  5173. "__id__": 139
  5174. },
  5175. "_opacity": 255,
  5176. "_color": {
  5177. "__type__": "cc.Color",
  5178. "r": 0,
  5179. "g": 0,
  5180. "b": 0,
  5181. "a": 255
  5182. },
  5183. "_contentSize": {
  5184. "__type__": "cc.Size",
  5185. "width": 84,
  5186. "height": 50.4
  5187. },
  5188. "_anchorPoint": {
  5189. "__type__": "cc.Vec2",
  5190. "x": 0.5,
  5191. "y": 0.5
  5192. },
  5193. "_trs": {
  5194. "__type__": "TypedArray",
  5195. "ctor": "Float64Array",
  5196. "array": [
  5197. 30,
  5198. 0,
  5199. 0,
  5200. 0,
  5201. 0,
  5202. 0,
  5203. 1,
  5204. 1,
  5205. 1,
  5206. 1
  5207. ]
  5208. },
  5209. "_eulerAngles": {
  5210. "__type__": "cc.Vec3",
  5211. "x": 0,
  5212. "y": 0,
  5213. "z": 0
  5214. },
  5215. "_skewX": 0,
  5216. "_skewY": 0,
  5217. "_is3DNode": false,
  5218. "_groupIndex": 0,
  5219. "groupIndex": 0,
  5220. "_id": ""
  5221. },
  5222. {
  5223. "__type__": "cc.Label",
  5224. "_name": "",
  5225. "_objFlags": 0,
  5226. "node": {
  5227. "__id__": 137
  5228. },
  5229. "_enabled": true,
  5230. "_materials": [
  5231. {
  5232. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5233. }
  5234. ],
  5235. "_srcBlendFactor": 770,
  5236. "_dstBlendFactor": 771,
  5237. "_string": "优量汇",
  5238. "_N$string": "优量汇",
  5239. "_fontSize": 28,
  5240. "_lineHeight": 40,
  5241. "_enableWrapText": true,
  5242. "_N$file": null,
  5243. "_isSystemFontUsed": true,
  5244. "_spacingX": 0,
  5245. "_batchAsBitmap": false,
  5246. "_styleFlags": 0,
  5247. "_underlineHeight": 0,
  5248. "_N$horizontalAlign": 1,
  5249. "_N$verticalAlign": 1,
  5250. "_N$fontFamily": "Arial",
  5251. "_N$overflow": 0,
  5252. "_N$cacheMode": 0,
  5253. "_id": ""
  5254. },
  5255. {
  5256. "__type__": "cc.PrefabInfo",
  5257. "root": {
  5258. "__id__": 137
  5259. },
  5260. "asset": {
  5261. "__uuid__": "27756ebb-3d33-44b0-9b96-e858fadd4dd4"
  5262. },
  5263. "fileId": "e20dJNjvxO1pag0ci7QT/D",
  5264. "sync": false
  5265. },
  5266. {
  5267. "__type__": "cc.Node",
  5268. "_name": "img_video",
  5269. "_objFlags": 0,
  5270. "_parent": {
  5271. "__id__": 136
  5272. },
  5273. "_children": [],
  5274. "_active": true,
  5275. "_components": [
  5276. {
  5277. "__id__": 141
  5278. }
  5279. ],
  5280. "_prefab": {
  5281. "__id__": 142
  5282. },
  5283. "_opacity": 255,
  5284. "_color": {
  5285. "__type__": "cc.Color",
  5286. "r": 255,
  5287. "g": 255,
  5288. "b": 255,
  5289. "a": 255
  5290. },
  5291. "_contentSize": {
  5292. "__type__": "cc.Size",
  5293. "width": 98,
  5294. "height": 56
  5295. },
  5296. "_anchorPoint": {
  5297. "__type__": "cc.Vec2",
  5298. "x": 0.5,
  5299. "y": 0.5
  5300. },
  5301. "_trs": {
  5302. "__type__": "TypedArray",
  5303. "ctor": "Float64Array",
  5304. "array": [
  5305. -50,
  5306. 0,
  5307. 0,
  5308. 0,
  5309. 0,
  5310. 0,
  5311. 1,
  5312. 0.7,
  5313. 0.7,
  5314. 1
  5315. ]
  5316. },
  5317. "_eulerAngles": {
  5318. "__type__": "cc.Vec3",
  5319. "x": 0,
  5320. "y": 0,
  5321. "z": 0
  5322. },
  5323. "_skewX": 0,
  5324. "_skewY": 0,
  5325. "_is3DNode": false,
  5326. "_groupIndex": 0,
  5327. "groupIndex": 0,
  5328. "_id": ""
  5329. },
  5330. {
  5331. "__type__": "cc.Sprite",
  5332. "_name": "",
  5333. "_objFlags": 0,
  5334. "node": {
  5335. "__id__": 140
  5336. },
  5337. "_enabled": true,
  5338. "_materials": [
  5339. {
  5340. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5341. }
  5342. ],
  5343. "_srcBlendFactor": 770,
  5344. "_dstBlendFactor": 771,
  5345. "_spriteFrame": {
  5346. "__uuid__": "cd31a1b6-63bf-4c27-aac0-ef9e12425099"
  5347. },
  5348. "_type": 0,
  5349. "_sizeMode": 1,
  5350. "_fillType": 0,
  5351. "_fillCenter": {
  5352. "__type__": "cc.Vec2",
  5353. "x": 0,
  5354. "y": 0
  5355. },
  5356. "_fillStart": 0,
  5357. "_fillRange": 0,
  5358. "_isTrimmedMode": true,
  5359. "_atlas": null,
  5360. "_id": ""
  5361. },
  5362. {
  5363. "__type__": "cc.PrefabInfo",
  5364. "root": {
  5365. "__id__": 1
  5366. },
  5367. "asset": {
  5368. "__id__": 0
  5369. },
  5370. "fileId": "46Q1vNnDNNm79c+OQPnmTl",
  5371. "sync": false
  5372. },
  5373. {
  5374. "__type__": "cc.Sprite",
  5375. "_name": "",
  5376. "_objFlags": 0,
  5377. "node": {
  5378. "__id__": 136
  5379. },
  5380. "_enabled": true,
  5381. "_materials": [
  5382. {
  5383. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5384. }
  5385. ],
  5386. "_srcBlendFactor": 770,
  5387. "_dstBlendFactor": 771,
  5388. "_spriteFrame": {
  5389. "__uuid__": "a889af7a-9dbd-4055-9ed7-8fbd459ae7f3"
  5390. },
  5391. "_type": 1,
  5392. "_sizeMode": 0,
  5393. "_fillType": 0,
  5394. "_fillCenter": {
  5395. "__type__": "cc.Vec2",
  5396. "x": 0,
  5397. "y": 0
  5398. },
  5399. "_fillStart": 0,
  5400. "_fillRange": 0,
  5401. "_isTrimmedMode": true,
  5402. "_atlas": null,
  5403. "_id": ""
  5404. },
  5405. {
  5406. "__type__": "cc.Button",
  5407. "_name": "",
  5408. "_objFlags": 0,
  5409. "node": {
  5410. "__id__": 136
  5411. },
  5412. "_enabled": true,
  5413. "_normalMaterial": null,
  5414. "_grayMaterial": null,
  5415. "duration": 0.1,
  5416. "zoomScale": 1.2,
  5417. "clickEvents": [],
  5418. "_N$interactable": true,
  5419. "_N$enableAutoGrayEffect": false,
  5420. "_N$transition": 3,
  5421. "transition": 3,
  5422. "_N$normalColor": {
  5423. "__type__": "cc.Color",
  5424. "r": 255,
  5425. "g": 255,
  5426. "b": 255,
  5427. "a": 255
  5428. },
  5429. "_N$pressedColor": {
  5430. "__type__": "cc.Color",
  5431. "r": 211,
  5432. "g": 211,
  5433. "b": 211,
  5434. "a": 255
  5435. },
  5436. "pressedColor": {
  5437. "__type__": "cc.Color",
  5438. "r": 211,
  5439. "g": 211,
  5440. "b": 211,
  5441. "a": 255
  5442. },
  5443. "_N$hoverColor": {
  5444. "__type__": "cc.Color",
  5445. "r": 255,
  5446. "g": 255,
  5447. "b": 255,
  5448. "a": 255
  5449. },
  5450. "hoverColor": {
  5451. "__type__": "cc.Color",
  5452. "r": 255,
  5453. "g": 255,
  5454. "b": 255,
  5455. "a": 255
  5456. },
  5457. "_N$disabledColor": {
  5458. "__type__": "cc.Color",
  5459. "r": 124,
  5460. "g": 124,
  5461. "b": 124,
  5462. "a": 255
  5463. },
  5464. "_N$normalSprite": null,
  5465. "_N$pressedSprite": null,
  5466. "pressedSprite": null,
  5467. "_N$hoverSprite": null,
  5468. "hoverSprite": null,
  5469. "_N$disabledSprite": null,
  5470. "_N$target": null,
  5471. "_id": ""
  5472. },
  5473. {
  5474. "__type__": "cc.PrefabInfo",
  5475. "root": {
  5476. "__id__": 1
  5477. },
  5478. "asset": {
  5479. "__id__": 0
  5480. },
  5481. "fileId": "19mLFIDB9NVbKj2rDMMDkz",
  5482. "sync": false
  5483. },
  5484. {
  5485. "__type__": "cc.Node",
  5486. "_name": "btn_ks",
  5487. "_objFlags": 0,
  5488. "_parent": {
  5489. "__id__": 125
  5490. },
  5491. "_children": [
  5492. {
  5493. "__id__": 147
  5494. },
  5495. {
  5496. "__id__": 150
  5497. }
  5498. ],
  5499. "_active": true,
  5500. "_components": [
  5501. {
  5502. "__id__": 153
  5503. },
  5504. {
  5505. "__id__": 154
  5506. }
  5507. ],
  5508. "_prefab": {
  5509. "__id__": 155
  5510. },
  5511. "_opacity": 255,
  5512. "_color": {
  5513. "__type__": "cc.Color",
  5514. "r": 255,
  5515. "g": 255,
  5516. "b": 255,
  5517. "a": 255
  5518. },
  5519. "_contentSize": {
  5520. "__type__": "cc.Size",
  5521. "width": 200,
  5522. "height": 60
  5523. },
  5524. "_anchorPoint": {
  5525. "__type__": "cc.Vec2",
  5526. "x": 0.5,
  5527. "y": 0.5
  5528. },
  5529. "_trs": {
  5530. "__type__": "TypedArray",
  5531. "ctor": "Float64Array",
  5532. "array": [
  5533. 0,
  5534. 130,
  5535. 0,
  5536. 0,
  5537. 0,
  5538. 0,
  5539. 1,
  5540. 1,
  5541. 1,
  5542. 0
  5543. ]
  5544. },
  5545. "_eulerAngles": {
  5546. "__type__": "cc.Vec3",
  5547. "x": 0,
  5548. "y": 0,
  5549. "z": 0
  5550. },
  5551. "_skewX": 0,
  5552. "_skewY": 0,
  5553. "_is3DNode": false,
  5554. "_groupIndex": 0,
  5555. "groupIndex": 0,
  5556. "_id": ""
  5557. },
  5558. {
  5559. "__type__": "cc.Node",
  5560. "_name": "label",
  5561. "_objFlags": 0,
  5562. "_parent": {
  5563. "__id__": 146
  5564. },
  5565. "_children": [],
  5566. "_active": true,
  5567. "_components": [
  5568. {
  5569. "__id__": 148
  5570. }
  5571. ],
  5572. "_prefab": {
  5573. "__id__": 149
  5574. },
  5575. "_opacity": 255,
  5576. "_color": {
  5577. "__type__": "cc.Color",
  5578. "r": 0,
  5579. "g": 0,
  5580. "b": 0,
  5581. "a": 255
  5582. },
  5583. "_contentSize": {
  5584. "__type__": "cc.Size",
  5585. "width": 56,
  5586. "height": 50.4
  5587. },
  5588. "_anchorPoint": {
  5589. "__type__": "cc.Vec2",
  5590. "x": 0.5,
  5591. "y": 0.5
  5592. },
  5593. "_trs": {
  5594. "__type__": "TypedArray",
  5595. "ctor": "Float64Array",
  5596. "array": [
  5597. 30,
  5598. 0,
  5599. 0,
  5600. 0,
  5601. 0,
  5602. 0,
  5603. 1,
  5604. 1,
  5605. 1,
  5606. 1
  5607. ]
  5608. },
  5609. "_eulerAngles": {
  5610. "__type__": "cc.Vec3",
  5611. "x": 0,
  5612. "y": 0,
  5613. "z": 0
  5614. },
  5615. "_skewX": 0,
  5616. "_skewY": 0,
  5617. "_is3DNode": false,
  5618. "_groupIndex": 0,
  5619. "groupIndex": 0,
  5620. "_id": ""
  5621. },
  5622. {
  5623. "__type__": "cc.Label",
  5624. "_name": "",
  5625. "_objFlags": 0,
  5626. "node": {
  5627. "__id__": 147
  5628. },
  5629. "_enabled": true,
  5630. "_materials": [
  5631. {
  5632. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5633. }
  5634. ],
  5635. "_srcBlendFactor": 770,
  5636. "_dstBlendFactor": 771,
  5637. "_string": "快手",
  5638. "_N$string": "快手",
  5639. "_fontSize": 28,
  5640. "_lineHeight": 40,
  5641. "_enableWrapText": true,
  5642. "_N$file": null,
  5643. "_isSystemFontUsed": true,
  5644. "_spacingX": 0,
  5645. "_batchAsBitmap": false,
  5646. "_styleFlags": 0,
  5647. "_underlineHeight": 0,
  5648. "_N$horizontalAlign": 1,
  5649. "_N$verticalAlign": 1,
  5650. "_N$fontFamily": "Arial",
  5651. "_N$overflow": 0,
  5652. "_N$cacheMode": 0,
  5653. "_id": ""
  5654. },
  5655. {
  5656. "__type__": "cc.PrefabInfo",
  5657. "root": {
  5658. "__id__": 147
  5659. },
  5660. "asset": {
  5661. "__uuid__": "27756ebb-3d33-44b0-9b96-e858fadd4dd4"
  5662. },
  5663. "fileId": "e20dJNjvxO1pag0ci7QT/D",
  5664. "sync": false
  5665. },
  5666. {
  5667. "__type__": "cc.Node",
  5668. "_name": "img_video",
  5669. "_objFlags": 0,
  5670. "_parent": {
  5671. "__id__": 146
  5672. },
  5673. "_children": [],
  5674. "_active": true,
  5675. "_components": [
  5676. {
  5677. "__id__": 151
  5678. }
  5679. ],
  5680. "_prefab": {
  5681. "__id__": 152
  5682. },
  5683. "_opacity": 255,
  5684. "_color": {
  5685. "__type__": "cc.Color",
  5686. "r": 255,
  5687. "g": 255,
  5688. "b": 255,
  5689. "a": 255
  5690. },
  5691. "_contentSize": {
  5692. "__type__": "cc.Size",
  5693. "width": 98,
  5694. "height": 56
  5695. },
  5696. "_anchorPoint": {
  5697. "__type__": "cc.Vec2",
  5698. "x": 0.5,
  5699. "y": 0.5
  5700. },
  5701. "_trs": {
  5702. "__type__": "TypedArray",
  5703. "ctor": "Float64Array",
  5704. "array": [
  5705. -50,
  5706. 0,
  5707. 0,
  5708. 0,
  5709. 0,
  5710. 0,
  5711. 1,
  5712. 0.7,
  5713. 0.7,
  5714. 1
  5715. ]
  5716. },
  5717. "_eulerAngles": {
  5718. "__type__": "cc.Vec3",
  5719. "x": 0,
  5720. "y": 0,
  5721. "z": 0
  5722. },
  5723. "_skewX": 0,
  5724. "_skewY": 0,
  5725. "_is3DNode": false,
  5726. "_groupIndex": 0,
  5727. "groupIndex": 0,
  5728. "_id": ""
  5729. },
  5730. {
  5731. "__type__": "cc.Sprite",
  5732. "_name": "",
  5733. "_objFlags": 0,
  5734. "node": {
  5735. "__id__": 150
  5736. },
  5737. "_enabled": true,
  5738. "_materials": [
  5739. {
  5740. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5741. }
  5742. ],
  5743. "_srcBlendFactor": 770,
  5744. "_dstBlendFactor": 771,
  5745. "_spriteFrame": {
  5746. "__uuid__": "cd31a1b6-63bf-4c27-aac0-ef9e12425099"
  5747. },
  5748. "_type": 0,
  5749. "_sizeMode": 1,
  5750. "_fillType": 0,
  5751. "_fillCenter": {
  5752. "__type__": "cc.Vec2",
  5753. "x": 0,
  5754. "y": 0
  5755. },
  5756. "_fillStart": 0,
  5757. "_fillRange": 0,
  5758. "_isTrimmedMode": true,
  5759. "_atlas": null,
  5760. "_id": ""
  5761. },
  5762. {
  5763. "__type__": "cc.PrefabInfo",
  5764. "root": {
  5765. "__id__": 1
  5766. },
  5767. "asset": {
  5768. "__id__": 0
  5769. },
  5770. "fileId": "7afgT5ZLNImI2+S7w03kuN",
  5771. "sync": false
  5772. },
  5773. {
  5774. "__type__": "cc.Sprite",
  5775. "_name": "",
  5776. "_objFlags": 0,
  5777. "node": {
  5778. "__id__": 146
  5779. },
  5780. "_enabled": true,
  5781. "_materials": [
  5782. {
  5783. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5784. }
  5785. ],
  5786. "_srcBlendFactor": 770,
  5787. "_dstBlendFactor": 771,
  5788. "_spriteFrame": {
  5789. "__uuid__": "a889af7a-9dbd-4055-9ed7-8fbd459ae7f3"
  5790. },
  5791. "_type": 1,
  5792. "_sizeMode": 0,
  5793. "_fillType": 0,
  5794. "_fillCenter": {
  5795. "__type__": "cc.Vec2",
  5796. "x": 0,
  5797. "y": 0
  5798. },
  5799. "_fillStart": 0,
  5800. "_fillRange": 0,
  5801. "_isTrimmedMode": true,
  5802. "_atlas": null,
  5803. "_id": ""
  5804. },
  5805. {
  5806. "__type__": "cc.Button",
  5807. "_name": "",
  5808. "_objFlags": 0,
  5809. "node": {
  5810. "__id__": 146
  5811. },
  5812. "_enabled": true,
  5813. "_normalMaterial": null,
  5814. "_grayMaterial": null,
  5815. "duration": 0.1,
  5816. "zoomScale": 1.2,
  5817. "clickEvents": [],
  5818. "_N$interactable": true,
  5819. "_N$enableAutoGrayEffect": false,
  5820. "_N$transition": 3,
  5821. "transition": 3,
  5822. "_N$normalColor": {
  5823. "__type__": "cc.Color",
  5824. "r": 255,
  5825. "g": 255,
  5826. "b": 255,
  5827. "a": 255
  5828. },
  5829. "_N$pressedColor": {
  5830. "__type__": "cc.Color",
  5831. "r": 211,
  5832. "g": 211,
  5833. "b": 211,
  5834. "a": 255
  5835. },
  5836. "pressedColor": {
  5837. "__type__": "cc.Color",
  5838. "r": 211,
  5839. "g": 211,
  5840. "b": 211,
  5841. "a": 255
  5842. },
  5843. "_N$hoverColor": {
  5844. "__type__": "cc.Color",
  5845. "r": 255,
  5846. "g": 255,
  5847. "b": 255,
  5848. "a": 255
  5849. },
  5850. "hoverColor": {
  5851. "__type__": "cc.Color",
  5852. "r": 255,
  5853. "g": 255,
  5854. "b": 255,
  5855. "a": 255
  5856. },
  5857. "_N$disabledColor": {
  5858. "__type__": "cc.Color",
  5859. "r": 124,
  5860. "g": 124,
  5861. "b": 124,
  5862. "a": 255
  5863. },
  5864. "_N$normalSprite": null,
  5865. "_N$pressedSprite": null,
  5866. "pressedSprite": null,
  5867. "_N$hoverSprite": null,
  5868. "hoverSprite": null,
  5869. "_N$disabledSprite": null,
  5870. "_N$target": null,
  5871. "_id": ""
  5872. },
  5873. {
  5874. "__type__": "cc.PrefabInfo",
  5875. "root": {
  5876. "__id__": 1
  5877. },
  5878. "asset": {
  5879. "__id__": 0
  5880. },
  5881. "fileId": "b0I+WM9uJHvplmHYFWbRyB",
  5882. "sync": false
  5883. },
  5884. {
  5885. "__type__": "cc.Node",
  5886. "_name": "btn_showinfo",
  5887. "_objFlags": 0,
  5888. "_parent": {
  5889. "__id__": 125
  5890. },
  5891. "_children": [
  5892. {
  5893. "__id__": 157
  5894. }
  5895. ],
  5896. "_active": true,
  5897. "_components": [
  5898. {
  5899. "__id__": 160
  5900. },
  5901. {
  5902. "__id__": 161
  5903. }
  5904. ],
  5905. "_prefab": {
  5906. "__id__": 162
  5907. },
  5908. "_opacity": 255,
  5909. "_color": {
  5910. "__type__": "cc.Color",
  5911. "r": 255,
  5912. "g": 255,
  5913. "b": 255,
  5914. "a": 255
  5915. },
  5916. "_contentSize": {
  5917. "__type__": "cc.Size",
  5918. "width": 200,
  5919. "height": 60
  5920. },
  5921. "_anchorPoint": {
  5922. "__type__": "cc.Vec2",
  5923. "x": 0.5,
  5924. "y": 0.5
  5925. },
  5926. "_trs": {
  5927. "__type__": "TypedArray",
  5928. "ctor": "Float64Array",
  5929. "array": [
  5930. 0,
  5931. 30,
  5932. 0,
  5933. 0,
  5934. 0,
  5935. 0,
  5936. 1,
  5937. 1,
  5938. 1,
  5939. 0
  5940. ]
  5941. },
  5942. "_eulerAngles": {
  5943. "__type__": "cc.Vec3",
  5944. "x": 0,
  5945. "y": 0,
  5946. "z": 0
  5947. },
  5948. "_skewX": 0,
  5949. "_skewY": 0,
  5950. "_is3DNode": false,
  5951. "_groupIndex": 0,
  5952. "groupIndex": 0,
  5953. "_id": ""
  5954. },
  5955. {
  5956. "__type__": "cc.Node",
  5957. "_name": "t_ks",
  5958. "_objFlags": 0,
  5959. "_parent": {
  5960. "__id__": 156
  5961. },
  5962. "_children": [],
  5963. "_active": true,
  5964. "_components": [
  5965. {
  5966. "__id__": 158
  5967. }
  5968. ],
  5969. "_prefab": {
  5970. "__id__": 159
  5971. },
  5972. "_opacity": 255,
  5973. "_color": {
  5974. "__type__": "cc.Color",
  5975. "r": 0,
  5976. "g": 0,
  5977. "b": 0,
  5978. "a": 255
  5979. },
  5980. "_contentSize": {
  5981. "__type__": "cc.Size",
  5982. "width": 112,
  5983. "height": 50.4
  5984. },
  5985. "_anchorPoint": {
  5986. "__type__": "cc.Vec2",
  5987. "x": 0.5,
  5988. "y": 0.5
  5989. },
  5990. "_trs": {
  5991. "__type__": "TypedArray",
  5992. "ctor": "Float64Array",
  5993. "array": [
  5994. 0,
  5995. 0,
  5996. 0,
  5997. 0,
  5998. 0,
  5999. 0,
  6000. 1,
  6001. 1,
  6002. 1,
  6003. 1
  6004. ]
  6005. },
  6006. "_eulerAngles": {
  6007. "__type__": "cc.Vec3",
  6008. "x": 0,
  6009. "y": 0,
  6010. "z": 0
  6011. },
  6012. "_skewX": 0,
  6013. "_skewY": 0,
  6014. "_is3DNode": false,
  6015. "_groupIndex": 0,
  6016. "groupIndex": 0,
  6017. "_id": ""
  6018. },
  6019. {
  6020. "__type__": "cc.Label",
  6021. "_name": "",
  6022. "_objFlags": 0,
  6023. "node": {
  6024. "__id__": 157
  6025. },
  6026. "_enabled": true,
  6027. "_materials": [
  6028. {
  6029. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6030. }
  6031. ],
  6032. "_srcBlendFactor": 770,
  6033. "_dstBlendFactor": 771,
  6034. "_string": "详情开关",
  6035. "_N$string": "详情开关",
  6036. "_fontSize": 28,
  6037. "_lineHeight": 40,
  6038. "_enableWrapText": true,
  6039. "_N$file": null,
  6040. "_isSystemFontUsed": true,
  6041. "_spacingX": 0,
  6042. "_batchAsBitmap": false,
  6043. "_styleFlags": 0,
  6044. "_underlineHeight": 0,
  6045. "_N$horizontalAlign": 1,
  6046. "_N$verticalAlign": 1,
  6047. "_N$fontFamily": "Arial",
  6048. "_N$overflow": 0,
  6049. "_N$cacheMode": 0,
  6050. "_id": ""
  6051. },
  6052. {
  6053. "__type__": "cc.PrefabInfo",
  6054. "root": {
  6055. "__id__": 157
  6056. },
  6057. "asset": {
  6058. "__uuid__": "27756ebb-3d33-44b0-9b96-e858fadd4dd4"
  6059. },
  6060. "fileId": "e20dJNjvxO1pag0ci7QT/D",
  6061. "sync": false
  6062. },
  6063. {
  6064. "__type__": "cc.Sprite",
  6065. "_name": "",
  6066. "_objFlags": 0,
  6067. "node": {
  6068. "__id__": 156
  6069. },
  6070. "_enabled": true,
  6071. "_materials": [
  6072. {
  6073. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6074. }
  6075. ],
  6076. "_srcBlendFactor": 770,
  6077. "_dstBlendFactor": 771,
  6078. "_spriteFrame": {
  6079. "__uuid__": "a889af7a-9dbd-4055-9ed7-8fbd459ae7f3"
  6080. },
  6081. "_type": 1,
  6082. "_sizeMode": 0,
  6083. "_fillType": 0,
  6084. "_fillCenter": {
  6085. "__type__": "cc.Vec2",
  6086. "x": 0,
  6087. "y": 0
  6088. },
  6089. "_fillStart": 0,
  6090. "_fillRange": 0,
  6091. "_isTrimmedMode": true,
  6092. "_atlas": null,
  6093. "_id": ""
  6094. },
  6095. {
  6096. "__type__": "cc.Button",
  6097. "_name": "",
  6098. "_objFlags": 0,
  6099. "node": {
  6100. "__id__": 156
  6101. },
  6102. "_enabled": true,
  6103. "_normalMaterial": null,
  6104. "_grayMaterial": null,
  6105. "duration": 0.1,
  6106. "zoomScale": 1.2,
  6107. "clickEvents": [],
  6108. "_N$interactable": true,
  6109. "_N$enableAutoGrayEffect": false,
  6110. "_N$transition": 3,
  6111. "transition": 3,
  6112. "_N$normalColor": {
  6113. "__type__": "cc.Color",
  6114. "r": 255,
  6115. "g": 255,
  6116. "b": 255,
  6117. "a": 255
  6118. },
  6119. "_N$pressedColor": {
  6120. "__type__": "cc.Color",
  6121. "r": 211,
  6122. "g": 211,
  6123. "b": 211,
  6124. "a": 255
  6125. },
  6126. "pressedColor": {
  6127. "__type__": "cc.Color",
  6128. "r": 211,
  6129. "g": 211,
  6130. "b": 211,
  6131. "a": 255
  6132. },
  6133. "_N$hoverColor": {
  6134. "__type__": "cc.Color",
  6135. "r": 255,
  6136. "g": 255,
  6137. "b": 255,
  6138. "a": 255
  6139. },
  6140. "hoverColor": {
  6141. "__type__": "cc.Color",
  6142. "r": 255,
  6143. "g": 255,
  6144. "b": 255,
  6145. "a": 255
  6146. },
  6147. "_N$disabledColor": {
  6148. "__type__": "cc.Color",
  6149. "r": 124,
  6150. "g": 124,
  6151. "b": 124,
  6152. "a": 255
  6153. },
  6154. "_N$normalSprite": null,
  6155. "_N$pressedSprite": null,
  6156. "pressedSprite": null,
  6157. "_N$hoverSprite": null,
  6158. "hoverSprite": null,
  6159. "_N$disabledSprite": null,
  6160. "_N$target": null,
  6161. "_id": ""
  6162. },
  6163. {
  6164. "__type__": "cc.PrefabInfo",
  6165. "root": {
  6166. "__id__": 1
  6167. },
  6168. "asset": {
  6169. "__id__": 0
  6170. },
  6171. "fileId": "04rARfMhNJ4pTKiaCOKavc",
  6172. "sync": false
  6173. },
  6174. {
  6175. "__type__": "cc.Layout",
  6176. "_name": "",
  6177. "_objFlags": 0,
  6178. "node": {
  6179. "__id__": 125
  6180. },
  6181. "_enabled": true,
  6182. "_layoutSize": {
  6183. "__type__": "cc.Size",
  6184. "width": 200,
  6185. "height": 360
  6186. },
  6187. "_resize": 1,
  6188. "_N$layoutType": 2,
  6189. "_N$cellSize": {
  6190. "__type__": "cc.Size",
  6191. "width": 40,
  6192. "height": 40
  6193. },
  6194. "_N$startAxis": 0,
  6195. "_N$paddingLeft": 0,
  6196. "_N$paddingRight": 0,
  6197. "_N$paddingTop": 0,
  6198. "_N$paddingBottom": 0,
  6199. "_N$spacingX": 0,
  6200. "_N$spacingY": 40,
  6201. "_N$verticalDirection": 1,
  6202. "_N$horizontalDirection": 0,
  6203. "_N$affectedByScale": false,
  6204. "_id": ""
  6205. },
  6206. {
  6207. "__type__": "cc.PrefabInfo",
  6208. "root": {
  6209. "__id__": 1
  6210. },
  6211. "asset": {
  6212. "__id__": 0
  6213. },
  6214. "fileId": "f9s3pGt2hPsoGdeo5jp/Gj",
  6215. "sync": false
  6216. },
  6217. {
  6218. "__type__": "cc.PrefabInfo",
  6219. "root": {
  6220. "__id__": 1
  6221. },
  6222. "asset": {
  6223. "__id__": 0
  6224. },
  6225. "fileId": "6bpEo6jyJNiaEF8DfMGFBi",
  6226. "sync": false
  6227. },
  6228. {
  6229. "__type__": "03a2fbg+gtI8KMs6Kb5ieea",
  6230. "_name": "",
  6231. "_objFlags": 0,
  6232. "node": {
  6233. "__id__": 1
  6234. },
  6235. "_enabled": true,
  6236. "_id": ""
  6237. },
  6238. {
  6239. "__type__": "cc.PrefabInfo",
  6240. "root": {
  6241. "__id__": 1
  6242. },
  6243. "asset": {
  6244. "__id__": 0
  6245. },
  6246. "fileId": "",
  6247. "sync": false
  6248. }
  6249. ]