MailMain.prefab 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "MailMain",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "MailMain",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 15
  26. },
  27. {
  28. "__id__": 31
  29. }
  30. ],
  31. "_active": true,
  32. "_components": [
  33. {
  34. "__id__": 217
  35. },
  36. {
  37. "__id__": 219
  38. },
  39. {
  40. "__id__": 221
  41. }
  42. ],
  43. "_prefab": {
  44. "__id__": 223
  45. },
  46. "_lpos": {
  47. "__type__": "cc.Vec3",
  48. "x": 0,
  49. "y": 0,
  50. "z": 0
  51. },
  52. "_lrot": {
  53. "__type__": "cc.Quat",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0,
  57. "w": 1
  58. },
  59. "_lscale": {
  60. "__type__": "cc.Vec3",
  61. "x": 1,
  62. "y": 1,
  63. "z": 1
  64. },
  65. "_mobility": 0,
  66. "_layer": 33554432,
  67. "_euler": {
  68. "__type__": "cc.Vec3",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0
  72. },
  73. "_id": ""
  74. },
  75. {
  76. "__type__": "cc.Node",
  77. "_name": "mask",
  78. "_objFlags": 0,
  79. "__editorExtras__": {},
  80. "_parent": {
  81. "__id__": 1
  82. },
  83. "_children": [],
  84. "_active": true,
  85. "_components": [
  86. {
  87. "__id__": 3
  88. },
  89. {
  90. "__id__": 5
  91. },
  92. {
  93. "__id__": 7
  94. },
  95. {
  96. "__id__": 9
  97. },
  98. {
  99. "__id__": 11
  100. }
  101. ],
  102. "_prefab": {
  103. "__id__": 14
  104. },
  105. "_lpos": {
  106. "__type__": "cc.Vec3",
  107. "x": 0,
  108. "y": 0,
  109. "z": 0
  110. },
  111. "_lrot": {
  112. "__type__": "cc.Quat",
  113. "x": 0,
  114. "y": 0,
  115. "z": 0,
  116. "w": 1
  117. },
  118. "_lscale": {
  119. "__type__": "cc.Vec3",
  120. "x": 1,
  121. "y": 1,
  122. "z": 1
  123. },
  124. "_mobility": 0,
  125. "_layer": 33554432,
  126. "_euler": {
  127. "__type__": "cc.Vec3",
  128. "x": 0,
  129. "y": 0,
  130. "z": 0
  131. },
  132. "_id": ""
  133. },
  134. {
  135. "__type__": "cc.UITransform",
  136. "_name": "",
  137. "_objFlags": 0,
  138. "__editorExtras__": {},
  139. "node": {
  140. "__id__": 2
  141. },
  142. "_enabled": true,
  143. "__prefab": {
  144. "__id__": 4
  145. },
  146. "_contentSize": {
  147. "__type__": "cc.Size",
  148. "width": 750,
  149. "height": 1334
  150. },
  151. "_anchorPoint": {
  152. "__type__": "cc.Vec2",
  153. "x": 0.5,
  154. "y": 0.5
  155. },
  156. "_id": ""
  157. },
  158. {
  159. "__type__": "cc.CompPrefabInfo",
  160. "fileId": "afXfoMFzVHDJq8xUARzdpD"
  161. },
  162. {
  163. "__type__": "cc.Sprite",
  164. "_name": "",
  165. "_objFlags": 0,
  166. "__editorExtras__": {},
  167. "node": {
  168. "__id__": 2
  169. },
  170. "_enabled": true,
  171. "__prefab": {
  172. "__id__": 6
  173. },
  174. "_customMaterial": null,
  175. "_srcBlendFactor": 2,
  176. "_dstBlendFactor": 4,
  177. "_color": {
  178. "__type__": "cc.Color",
  179. "r": 0,
  180. "g": 0,
  181. "b": 0,
  182. "a": 255
  183. },
  184. "_spriteFrame": {
  185. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  186. "__expectedType__": "cc.SpriteFrame"
  187. },
  188. "_type": 0,
  189. "_fillType": 0,
  190. "_sizeMode": 0,
  191. "_fillCenter": {
  192. "__type__": "cc.Vec2",
  193. "x": 0,
  194. "y": 0
  195. },
  196. "_fillStart": 0,
  197. "_fillRange": 0,
  198. "_isTrimmedMode": true,
  199. "_useGrayscale": false,
  200. "_atlas": null,
  201. "_id": ""
  202. },
  203. {
  204. "__type__": "cc.CompPrefabInfo",
  205. "fileId": "270oql9nROi78/PYY0+xbD"
  206. },
  207. {
  208. "__type__": "cc.Widget",
  209. "_name": "",
  210. "_objFlags": 0,
  211. "__editorExtras__": {},
  212. "node": {
  213. "__id__": 2
  214. },
  215. "_enabled": true,
  216. "__prefab": {
  217. "__id__": 8
  218. },
  219. "_alignFlags": 45,
  220. "_target": null,
  221. "_left": 0,
  222. "_right": 0,
  223. "_top": 0,
  224. "_bottom": 0,
  225. "_horizontalCenter": 0,
  226. "_verticalCenter": 0,
  227. "_isAbsLeft": true,
  228. "_isAbsRight": true,
  229. "_isAbsTop": true,
  230. "_isAbsBottom": true,
  231. "_isAbsHorizontalCenter": true,
  232. "_isAbsVerticalCenter": true,
  233. "_originalWidth": 100,
  234. "_originalHeight": 100,
  235. "_alignMode": 2,
  236. "_lockFlags": 0,
  237. "_id": ""
  238. },
  239. {
  240. "__type__": "cc.CompPrefabInfo",
  241. "fileId": "b3mXn8ZElGYIlM9sjDMERa"
  242. },
  243. {
  244. "__type__": "cc.UIOpacity",
  245. "_name": "",
  246. "_objFlags": 0,
  247. "__editorExtras__": {},
  248. "node": {
  249. "__id__": 2
  250. },
  251. "_enabled": true,
  252. "__prefab": {
  253. "__id__": 10
  254. },
  255. "_opacity": 180,
  256. "_id": ""
  257. },
  258. {
  259. "__type__": "cc.CompPrefabInfo",
  260. "fileId": "4aIjqXs3hEWa8H0ndOV/Oa"
  261. },
  262. {
  263. "__type__": "cc.Button",
  264. "_name": "",
  265. "_objFlags": 0,
  266. "__editorExtras__": {},
  267. "node": {
  268. "__id__": 2
  269. },
  270. "_enabled": true,
  271. "__prefab": {
  272. "__id__": 12
  273. },
  274. "clickEvents": [
  275. {
  276. "__id__": 13
  277. }
  278. ],
  279. "_interactable": true,
  280. "_transition": 0,
  281. "_normalColor": {
  282. "__type__": "cc.Color",
  283. "r": 255,
  284. "g": 255,
  285. "b": 255,
  286. "a": 255
  287. },
  288. "_hoverColor": {
  289. "__type__": "cc.Color",
  290. "r": 211,
  291. "g": 211,
  292. "b": 211,
  293. "a": 255
  294. },
  295. "_pressedColor": {
  296. "__type__": "cc.Color",
  297. "r": 255,
  298. "g": 255,
  299. "b": 255,
  300. "a": 255
  301. },
  302. "_disabledColor": {
  303. "__type__": "cc.Color",
  304. "r": 124,
  305. "g": 124,
  306. "b": 124,
  307. "a": 255
  308. },
  309. "_normalSprite": null,
  310. "_hoverSprite": null,
  311. "_pressedSprite": null,
  312. "_disabledSprite": null,
  313. "_duration": 0.1,
  314. "_zoomScale": 1.2,
  315. "_target": null,
  316. "_id": ""
  317. },
  318. {
  319. "__type__": "cc.CompPrefabInfo",
  320. "fileId": "90HtUuLgNNAY/Xj8QD9BvQ"
  321. },
  322. {
  323. "__type__": "cc.ClickEvent",
  324. "target": {
  325. "__id__": 1
  326. },
  327. "component": "",
  328. "_componentId": "995a5ONk2pJD7rK6RU/nsFU",
  329. "handler": "onTouchButton",
  330. "customEventData": ""
  331. },
  332. {
  333. "__type__": "cc.PrefabInfo",
  334. "root": {
  335. "__id__": 1
  336. },
  337. "asset": {
  338. "__id__": 0
  339. },
  340. "fileId": "58TnDpyyZKU4abaWsDHQVd",
  341. "instance": null,
  342. "targetOverrides": null,
  343. "nestedPrefabInstanceRoots": null
  344. },
  345. {
  346. "__type__": "cc.Node",
  347. "_name": "close_tips",
  348. "_objFlags": 0,
  349. "__editorExtras__": {},
  350. "_parent": {
  351. "__id__": 1
  352. },
  353. "_children": [
  354. {
  355. "__id__": 16
  356. }
  357. ],
  358. "_active": true,
  359. "_components": [
  360. {
  361. "__id__": 24
  362. },
  363. {
  364. "__id__": 26
  365. },
  366. {
  367. "__id__": 28
  368. }
  369. ],
  370. "_prefab": {
  371. "__id__": 30
  372. },
  373. "_lpos": {
  374. "__type__": "cc.Vec3",
  375. "x": 0,
  376. "y": -601.8,
  377. "z": 0
  378. },
  379. "_lrot": {
  380. "__type__": "cc.Quat",
  381. "x": 0,
  382. "y": 0,
  383. "z": 0,
  384. "w": 1
  385. },
  386. "_lscale": {
  387. "__type__": "cc.Vec3",
  388. "x": 1,
  389. "y": 1,
  390. "z": 1
  391. },
  392. "_mobility": 0,
  393. "_layer": 33554432,
  394. "_euler": {
  395. "__type__": "cc.Vec3",
  396. "x": 0,
  397. "y": 0,
  398. "z": 0
  399. },
  400. "_id": ""
  401. },
  402. {
  403. "__type__": "cc.Node",
  404. "_name": "line_eff",
  405. "_objFlags": 0,
  406. "__editorExtras__": {},
  407. "_parent": {
  408. "__id__": 15
  409. },
  410. "_children": [],
  411. "_active": true,
  412. "_components": [
  413. {
  414. "__id__": 17
  415. },
  416. {
  417. "__id__": 19
  418. },
  419. {
  420. "__id__": 21
  421. }
  422. ],
  423. "_prefab": {
  424. "__id__": 23
  425. },
  426. "_lpos": {
  427. "__type__": "cc.Vec3",
  428. "x": 0,
  429. "y": 0,
  430. "z": 0
  431. },
  432. "_lrot": {
  433. "__type__": "cc.Quat",
  434. "x": 0,
  435. "y": 0,
  436. "z": 0,
  437. "w": 1
  438. },
  439. "_lscale": {
  440. "__type__": "cc.Vec3",
  441. "x": 1,
  442. "y": 1,
  443. "z": 1
  444. },
  445. "_mobility": 0,
  446. "_layer": 33554432,
  447. "_euler": {
  448. "__type__": "cc.Vec3",
  449. "x": 0,
  450. "y": 0,
  451. "z": 0
  452. },
  453. "_id": ""
  454. },
  455. {
  456. "__type__": "cc.UITransform",
  457. "_name": "",
  458. "_objFlags": 0,
  459. "__editorExtras__": {},
  460. "node": {
  461. "__id__": 16
  462. },
  463. "_enabled": true,
  464. "__prefab": {
  465. "__id__": 18
  466. },
  467. "_contentSize": {
  468. "__type__": "cc.Size",
  469. "width": 416,
  470. "height": 31
  471. },
  472. "_anchorPoint": {
  473. "__type__": "cc.Vec2",
  474. "x": 0.5,
  475. "y": 0.5
  476. },
  477. "_id": ""
  478. },
  479. {
  480. "__type__": "cc.CompPrefabInfo",
  481. "fileId": "c7KjvpRqxGRYl//mu/0VQa"
  482. },
  483. {
  484. "__type__": "cc.Sprite",
  485. "_name": "",
  486. "_objFlags": 0,
  487. "__editorExtras__": {},
  488. "node": {
  489. "__id__": 16
  490. },
  491. "_enabled": true,
  492. "__prefab": {
  493. "__id__": 20
  494. },
  495. "_customMaterial": null,
  496. "_srcBlendFactor": 2,
  497. "_dstBlendFactor": 4,
  498. "_color": {
  499. "__type__": "cc.Color",
  500. "r": 255,
  501. "g": 255,
  502. "b": 255,
  503. "a": 255
  504. },
  505. "_spriteFrame": {
  506. "__uuid__": "1c7bd997-8b2c-4dbc-bc92-5314491cbc6b@f9941",
  507. "__expectedType__": "cc.SpriteFrame"
  508. },
  509. "_type": 1,
  510. "_fillType": 0,
  511. "_sizeMode": 0,
  512. "_fillCenter": {
  513. "__type__": "cc.Vec2",
  514. "x": 0,
  515. "y": 0
  516. },
  517. "_fillStart": 0,
  518. "_fillRange": 0,
  519. "_isTrimmedMode": true,
  520. "_useGrayscale": false,
  521. "_atlas": null,
  522. "_id": ""
  523. },
  524. {
  525. "__type__": "cc.CompPrefabInfo",
  526. "fileId": "f6ZrG4MEdNWZTbLBsL63NN"
  527. },
  528. {
  529. "__type__": "cc.Widget",
  530. "_name": "",
  531. "_objFlags": 0,
  532. "__editorExtras__": {},
  533. "node": {
  534. "__id__": 16
  535. },
  536. "_enabled": true,
  537. "__prefab": {
  538. "__id__": 22
  539. },
  540. "_alignFlags": 42,
  541. "_target": null,
  542. "_left": -130,
  543. "_right": -130,
  544. "_top": 0,
  545. "_bottom": 0,
  546. "_horizontalCenter": 0,
  547. "_verticalCenter": 0,
  548. "_isAbsLeft": true,
  549. "_isAbsRight": true,
  550. "_isAbsTop": true,
  551. "_isAbsBottom": true,
  552. "_isAbsHorizontalCenter": true,
  553. "_isAbsVerticalCenter": true,
  554. "_originalWidth": 398,
  555. "_originalHeight": 0,
  556. "_alignMode": 2,
  557. "_lockFlags": 0,
  558. "_id": ""
  559. },
  560. {
  561. "__type__": "cc.CompPrefabInfo",
  562. "fileId": "613Ie2R0ZNo6aNG6PTQ9u2"
  563. },
  564. {
  565. "__type__": "cc.PrefabInfo",
  566. "root": {
  567. "__id__": 1
  568. },
  569. "asset": {
  570. "__id__": 0
  571. },
  572. "fileId": "d9O9X+2+1Bl5EI+4usn9fJ",
  573. "instance": null,
  574. "targetOverrides": null,
  575. "nestedPrefabInstanceRoots": null
  576. },
  577. {
  578. "__type__": "cc.UITransform",
  579. "_name": "",
  580. "_objFlags": 0,
  581. "__editorExtras__": {},
  582. "node": {
  583. "__id__": 15
  584. },
  585. "_enabled": true,
  586. "__prefab": {
  587. "__id__": 25
  588. },
  589. "_contentSize": {
  590. "__type__": "cc.Size",
  591. "width": 156,
  592. "height": 32.76
  593. },
  594. "_anchorPoint": {
  595. "__type__": "cc.Vec2",
  596. "x": 0.5,
  597. "y": 0.5
  598. },
  599. "_id": ""
  600. },
  601. {
  602. "__type__": "cc.CompPrefabInfo",
  603. "fileId": "50A1fr5rJHhpWWxi2FDMaJ"
  604. },
  605. {
  606. "__type__": "cc.Label",
  607. "_name": "",
  608. "_objFlags": 0,
  609. "__editorExtras__": {},
  610. "node": {
  611. "__id__": 15
  612. },
  613. "_enabled": true,
  614. "__prefab": {
  615. "__id__": 27
  616. },
  617. "_customMaterial": null,
  618. "_srcBlendFactor": 2,
  619. "_dstBlendFactor": 4,
  620. "_color": {
  621. "__type__": "cc.Color",
  622. "r": 255,
  623. "g": 239,
  624. "b": 201,
  625. "a": 255
  626. },
  627. "_string": "點擊空白繼續",
  628. "_horizontalAlign": 1,
  629. "_verticalAlign": 1,
  630. "_actualFontSize": 26,
  631. "_fontSize": 26,
  632. "_fontFamily": "Arial",
  633. "_lineHeight": 26,
  634. "_overflow": 0,
  635. "_enableWrapText": false,
  636. "_font": {
  637. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  638. "__expectedType__": "cc.TTFFont"
  639. },
  640. "_isSystemFontUsed": false,
  641. "_spacingX": 0,
  642. "_isItalic": false,
  643. "_isBold": true,
  644. "_isUnderline": false,
  645. "_underlineHeight": 2,
  646. "_cacheMode": 0,
  647. "_enableOutline": false,
  648. "_outlineColor": {
  649. "__type__": "cc.Color",
  650. "r": 0,
  651. "g": 0,
  652. "b": 0,
  653. "a": 255
  654. },
  655. "_outlineWidth": 2,
  656. "_enableShadow": false,
  657. "_shadowColor": {
  658. "__type__": "cc.Color",
  659. "r": 0,
  660. "g": 0,
  661. "b": 0,
  662. "a": 255
  663. },
  664. "_shadowOffset": {
  665. "__type__": "cc.Vec2",
  666. "x": 2,
  667. "y": 2
  668. },
  669. "_shadowBlur": 2,
  670. "_id": ""
  671. },
  672. {
  673. "__type__": "cc.CompPrefabInfo",
  674. "fileId": "82DSlbAE5DWqhZATcKYu/N"
  675. },
  676. {
  677. "__type__": "cc.Widget",
  678. "_name": "",
  679. "_objFlags": 0,
  680. "__editorExtras__": {},
  681. "node": {
  682. "__id__": 15
  683. },
  684. "_enabled": true,
  685. "__prefab": {
  686. "__id__": 29
  687. },
  688. "_alignFlags": 20,
  689. "_target": null,
  690. "_left": 0,
  691. "_right": 0,
  692. "_top": 0,
  693. "_bottom": 48.82,
  694. "_horizontalCenter": 0,
  695. "_verticalCenter": 0,
  696. "_isAbsLeft": true,
  697. "_isAbsRight": true,
  698. "_isAbsTop": true,
  699. "_isAbsBottom": true,
  700. "_isAbsHorizontalCenter": true,
  701. "_isAbsVerticalCenter": true,
  702. "_originalWidth": 0,
  703. "_originalHeight": 0,
  704. "_alignMode": 2,
  705. "_lockFlags": 0,
  706. "_id": ""
  707. },
  708. {
  709. "__type__": "cc.CompPrefabInfo",
  710. "fileId": "960R7mdslLDbndVIvqVR4g"
  711. },
  712. {
  713. "__type__": "cc.PrefabInfo",
  714. "root": {
  715. "__id__": 1
  716. },
  717. "asset": {
  718. "__id__": 0
  719. },
  720. "fileId": "f4W8KenhpNiaIQ5gYbNo2B",
  721. "instance": null,
  722. "targetOverrides": null,
  723. "nestedPrefabInstanceRoots": null
  724. },
  725. {
  726. "__type__": "cc.Node",
  727. "_name": "bg",
  728. "_objFlags": 0,
  729. "__editorExtras__": {},
  730. "_parent": {
  731. "__id__": 1
  732. },
  733. "_children": [
  734. {
  735. "__id__": 32
  736. },
  737. {
  738. "__id__": 38
  739. },
  740. {
  741. "__id__": 44
  742. },
  743. {
  744. "__id__": 58
  745. },
  746. {
  747. "__id__": 156
  748. },
  749. {
  750. "__id__": 171
  751. },
  752. {
  753. "__id__": 186
  754. }
  755. ],
  756. "_active": true,
  757. "_components": [
  758. {
  759. "__id__": 208
  760. },
  761. {
  762. "__id__": 210
  763. },
  764. {
  765. "__id__": 212
  766. },
  767. {
  768. "__id__": 214
  769. }
  770. ],
  771. "_prefab": {
  772. "__id__": 216
  773. },
  774. "_lpos": {
  775. "__type__": "cc.Vec3",
  776. "x": 0,
  777. "y": 0,
  778. "z": 0
  779. },
  780. "_lrot": {
  781. "__type__": "cc.Quat",
  782. "x": 0,
  783. "y": 0,
  784. "z": 0,
  785. "w": 1
  786. },
  787. "_lscale": {
  788. "__type__": "cc.Vec3",
  789. "x": 1,
  790. "y": 1,
  791. "z": 1
  792. },
  793. "_mobility": 0,
  794. "_layer": 33554432,
  795. "_euler": {
  796. "__type__": "cc.Vec3",
  797. "x": 0,
  798. "y": 0,
  799. "z": 0
  800. },
  801. "_id": ""
  802. },
  803. {
  804. "__type__": "cc.Node",
  805. "_name": "bg",
  806. "_objFlags": 0,
  807. "__editorExtras__": {},
  808. "_parent": {
  809. "__id__": 31
  810. },
  811. "_children": [],
  812. "_active": true,
  813. "_components": [
  814. {
  815. "__id__": 33
  816. },
  817. {
  818. "__id__": 35
  819. }
  820. ],
  821. "_prefab": {
  822. "__id__": 37
  823. },
  824. "_lpos": {
  825. "__type__": "cc.Vec3",
  826. "x": 0,
  827. "y": 0,
  828. "z": 0
  829. },
  830. "_lrot": {
  831. "__type__": "cc.Quat",
  832. "x": 0,
  833. "y": 0,
  834. "z": 0,
  835. "w": 1
  836. },
  837. "_lscale": {
  838. "__type__": "cc.Vec3",
  839. "x": 1,
  840. "y": 1,
  841. "z": 1
  842. },
  843. "_mobility": 0,
  844. "_layer": 33554432,
  845. "_euler": {
  846. "__type__": "cc.Vec3",
  847. "x": 0,
  848. "y": 0,
  849. "z": 0
  850. },
  851. "_id": ""
  852. },
  853. {
  854. "__type__": "cc.UITransform",
  855. "_name": "",
  856. "_objFlags": 0,
  857. "__editorExtras__": {},
  858. "node": {
  859. "__id__": 32
  860. },
  861. "_enabled": true,
  862. "__prefab": {
  863. "__id__": 34
  864. },
  865. "_contentSize": {
  866. "__type__": "cc.Size",
  867. "width": 668,
  868. "height": 751
  869. },
  870. "_anchorPoint": {
  871. "__type__": "cc.Vec2",
  872. "x": 0.5,
  873. "y": 0.5
  874. },
  875. "_id": ""
  876. },
  877. {
  878. "__type__": "cc.CompPrefabInfo",
  879. "fileId": "f9f+H+ezxMW59K+FqT7kph"
  880. },
  881. {
  882. "__type__": "cc.Sprite",
  883. "_name": "",
  884. "_objFlags": 0,
  885. "__editorExtras__": {},
  886. "node": {
  887. "__id__": 32
  888. },
  889. "_enabled": true,
  890. "__prefab": {
  891. "__id__": 36
  892. },
  893. "_customMaterial": null,
  894. "_srcBlendFactor": 2,
  895. "_dstBlendFactor": 4,
  896. "_color": {
  897. "__type__": "cc.Color",
  898. "r": 255,
  899. "g": 255,
  900. "b": 255,
  901. "a": 255
  902. },
  903. "_spriteFrame": {
  904. "__uuid__": "3e15eeb6-df20-467e-aa83-5f59e2762632@f9941",
  905. "__expectedType__": "cc.SpriteFrame"
  906. },
  907. "_type": 1,
  908. "_fillType": 0,
  909. "_sizeMode": 0,
  910. "_fillCenter": {
  911. "__type__": "cc.Vec2",
  912. "x": 0,
  913. "y": 0
  914. },
  915. "_fillStart": 0,
  916. "_fillRange": 0,
  917. "_isTrimmedMode": true,
  918. "_useGrayscale": false,
  919. "_atlas": null,
  920. "_id": ""
  921. },
  922. {
  923. "__type__": "cc.CompPrefabInfo",
  924. "fileId": "a3KtWQTKBJIJ6r8+dckEGw"
  925. },
  926. {
  927. "__type__": "cc.PrefabInfo",
  928. "root": {
  929. "__id__": 1
  930. },
  931. "asset": {
  932. "__id__": 0
  933. },
  934. "fileId": "bb89IzhyBLwbpb5dbIwz0Z",
  935. "instance": null,
  936. "targetOverrides": null,
  937. "nestedPrefabInstanceRoots": null
  938. },
  939. {
  940. "__type__": "cc.Node",
  941. "_name": "title_tx",
  942. "_objFlags": 0,
  943. "__editorExtras__": {},
  944. "_parent": {
  945. "__id__": 31
  946. },
  947. "_children": [],
  948. "_active": true,
  949. "_components": [
  950. {
  951. "__id__": 39
  952. },
  953. {
  954. "__id__": 41
  955. }
  956. ],
  957. "_prefab": {
  958. "__id__": 43
  959. },
  960. "_lpos": {
  961. "__type__": "cc.Vec3",
  962. "x": 0,
  963. "y": 426,
  964. "z": 0
  965. },
  966. "_lrot": {
  967. "__type__": "cc.Quat",
  968. "x": 0,
  969. "y": 0,
  970. "z": 0,
  971. "w": 1
  972. },
  973. "_lscale": {
  974. "__type__": "cc.Vec3",
  975. "x": 1,
  976. "y": 1,
  977. "z": 1
  978. },
  979. "_mobility": 0,
  980. "_layer": 33554432,
  981. "_euler": {
  982. "__type__": "cc.Vec3",
  983. "x": 0,
  984. "y": 0,
  985. "z": 0
  986. },
  987. "_id": ""
  988. },
  989. {
  990. "__type__": "cc.UITransform",
  991. "_name": "",
  992. "_objFlags": 0,
  993. "__editorExtras__": {},
  994. "node": {
  995. "__id__": 38
  996. },
  997. "_enabled": true,
  998. "__prefab": {
  999. "__id__": 40
  1000. },
  1001. "_contentSize": {
  1002. "__type__": "cc.Size",
  1003. "width": 74.935546875,
  1004. "height": 43.8
  1005. },
  1006. "_anchorPoint": {
  1007. "__type__": "cc.Vec2",
  1008. "x": 0.5,
  1009. "y": 0.5
  1010. },
  1011. "_id": ""
  1012. },
  1013. {
  1014. "__type__": "cc.CompPrefabInfo",
  1015. "fileId": "98BUuHYKxGuK48++bdno84"
  1016. },
  1017. {
  1018. "__type__": "cc.Label",
  1019. "_name": "",
  1020. "_objFlags": 0,
  1021. "__editorExtras__": {},
  1022. "node": {
  1023. "__id__": 38
  1024. },
  1025. "_enabled": true,
  1026. "__prefab": {
  1027. "__id__": 42
  1028. },
  1029. "_customMaterial": null,
  1030. "_srcBlendFactor": 2,
  1031. "_dstBlendFactor": 4,
  1032. "_color": {
  1033. "__type__": "cc.Color",
  1034. "r": 255,
  1035. "g": 239,
  1036. "b": 201,
  1037. "a": 255
  1038. },
  1039. "_string": "邮 件",
  1040. "_horizontalAlign": 1,
  1041. "_verticalAlign": 1,
  1042. "_actualFontSize": 30,
  1043. "_fontSize": 30,
  1044. "_fontFamily": "Arial",
  1045. "_lineHeight": 30,
  1046. "_overflow": 0,
  1047. "_enableWrapText": false,
  1048. "_font": {
  1049. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  1050. "__expectedType__": "cc.TTFFont"
  1051. },
  1052. "_isSystemFontUsed": false,
  1053. "_spacingX": 0,
  1054. "_isItalic": false,
  1055. "_isBold": true,
  1056. "_isUnderline": false,
  1057. "_underlineHeight": 2,
  1058. "_cacheMode": 0,
  1059. "_enableOutline": true,
  1060. "_outlineColor": {
  1061. "__type__": "cc.Color",
  1062. "r": 0,
  1063. "g": 0,
  1064. "b": 0,
  1065. "a": 255
  1066. },
  1067. "_outlineWidth": 3,
  1068. "_enableShadow": false,
  1069. "_shadowColor": {
  1070. "__type__": "cc.Color",
  1071. "r": 0,
  1072. "g": 0,
  1073. "b": 0,
  1074. "a": 255
  1075. },
  1076. "_shadowOffset": {
  1077. "__type__": "cc.Vec2",
  1078. "x": 2,
  1079. "y": 2
  1080. },
  1081. "_shadowBlur": 2,
  1082. "_id": ""
  1083. },
  1084. {
  1085. "__type__": "cc.CompPrefabInfo",
  1086. "fileId": "a3LRPP355Mx4wdg3z3FiGV"
  1087. },
  1088. {
  1089. "__type__": "cc.PrefabInfo",
  1090. "root": {
  1091. "__id__": 1
  1092. },
  1093. "asset": {
  1094. "__id__": 0
  1095. },
  1096. "fileId": "63LritNCJJ4qC6XTs/KRLH",
  1097. "instance": null,
  1098. "targetOverrides": null,
  1099. "nestedPrefabInstanceRoots": null
  1100. },
  1101. {
  1102. "__type__": "cc.Node",
  1103. "_name": "num_tx",
  1104. "_objFlags": 0,
  1105. "__editorExtras__": {},
  1106. "_parent": {
  1107. "__id__": 31
  1108. },
  1109. "_children": [
  1110. {
  1111. "__id__": 45
  1112. }
  1113. ],
  1114. "_active": true,
  1115. "_components": [
  1116. {
  1117. "__id__": 53
  1118. },
  1119. {
  1120. "__id__": 55
  1121. }
  1122. ],
  1123. "_prefab": {
  1124. "__id__": 57
  1125. },
  1126. "_lpos": {
  1127. "__type__": "cc.Vec3",
  1128. "x": 310.13800000000003,
  1129. "y": 348.462,
  1130. "z": 0
  1131. },
  1132. "_lrot": {
  1133. "__type__": "cc.Quat",
  1134. "x": 0,
  1135. "y": 0,
  1136. "z": 0,
  1137. "w": 1
  1138. },
  1139. "_lscale": {
  1140. "__type__": "cc.Vec3",
  1141. "x": 1,
  1142. "y": 1,
  1143. "z": 1
  1144. },
  1145. "_mobility": 0,
  1146. "_layer": 33554432,
  1147. "_euler": {
  1148. "__type__": "cc.Vec3",
  1149. "x": 0,
  1150. "y": 0,
  1151. "z": 0
  1152. },
  1153. "_id": ""
  1154. },
  1155. {
  1156. "__type__": "cc.Node",
  1157. "_name": "num_ico",
  1158. "_objFlags": 0,
  1159. "__editorExtras__": {},
  1160. "_parent": {
  1161. "__id__": 44
  1162. },
  1163. "_children": [],
  1164. "_active": true,
  1165. "_components": [
  1166. {
  1167. "__id__": 46
  1168. },
  1169. {
  1170. "__id__": 48
  1171. },
  1172. {
  1173. "__id__": 50
  1174. }
  1175. ],
  1176. "_prefab": {
  1177. "__id__": 52
  1178. },
  1179. "_lpos": {
  1180. "__type__": "cc.Vec3",
  1181. "x": -194.10738232421875,
  1182. "y": 0,
  1183. "z": 0
  1184. },
  1185. "_lrot": {
  1186. "__type__": "cc.Quat",
  1187. "x": 0,
  1188. "y": 0,
  1189. "z": 0,
  1190. "w": 1
  1191. },
  1192. "_lscale": {
  1193. "__type__": "cc.Vec3",
  1194. "x": 1,
  1195. "y": 1,
  1196. "z": 1
  1197. },
  1198. "_mobility": 0,
  1199. "_layer": 33554432,
  1200. "_euler": {
  1201. "__type__": "cc.Vec3",
  1202. "x": 0,
  1203. "y": 0,
  1204. "z": 0
  1205. },
  1206. "_id": ""
  1207. },
  1208. {
  1209. "__type__": "cc.UITransform",
  1210. "_name": "",
  1211. "_objFlags": 0,
  1212. "__editorExtras__": {},
  1213. "node": {
  1214. "__id__": 45
  1215. },
  1216. "_enabled": true,
  1217. "__prefab": {
  1218. "__id__": 47
  1219. },
  1220. "_contentSize": {
  1221. "__type__": "cc.Size",
  1222. "width": 38,
  1223. "height": 28
  1224. },
  1225. "_anchorPoint": {
  1226. "__type__": "cc.Vec2",
  1227. "x": 1,
  1228. "y": 0.5
  1229. },
  1230. "_id": ""
  1231. },
  1232. {
  1233. "__type__": "cc.CompPrefabInfo",
  1234. "fileId": "09gmHPVv5G74ynpV/6Wsg5"
  1235. },
  1236. {
  1237. "__type__": "cc.Sprite",
  1238. "_name": "",
  1239. "_objFlags": 0,
  1240. "__editorExtras__": {},
  1241. "node": {
  1242. "__id__": 45
  1243. },
  1244. "_enabled": true,
  1245. "__prefab": {
  1246. "__id__": 49
  1247. },
  1248. "_customMaterial": null,
  1249. "_srcBlendFactor": 2,
  1250. "_dstBlendFactor": 4,
  1251. "_color": {
  1252. "__type__": "cc.Color",
  1253. "r": 255,
  1254. "g": 255,
  1255. "b": 255,
  1256. "a": 255
  1257. },
  1258. "_spriteFrame": {
  1259. "__uuid__": "3d7299c2-f38d-44cd-a8be-815cb0ee10ed@f9941",
  1260. "__expectedType__": "cc.SpriteFrame"
  1261. },
  1262. "_type": 0,
  1263. "_fillType": 0,
  1264. "_sizeMode": 1,
  1265. "_fillCenter": {
  1266. "__type__": "cc.Vec2",
  1267. "x": 0,
  1268. "y": 0
  1269. },
  1270. "_fillStart": 0,
  1271. "_fillRange": 0,
  1272. "_isTrimmedMode": true,
  1273. "_useGrayscale": false,
  1274. "_atlas": null,
  1275. "_id": ""
  1276. },
  1277. {
  1278. "__type__": "cc.CompPrefabInfo",
  1279. "fileId": "81rkRLlFtAoLCkvgc3ik9L"
  1280. },
  1281. {
  1282. "__type__": "cc.Widget",
  1283. "_name": "",
  1284. "_objFlags": 0,
  1285. "__editorExtras__": {},
  1286. "node": {
  1287. "__id__": 45
  1288. },
  1289. "_enabled": true,
  1290. "__prefab": {
  1291. "__id__": 51
  1292. },
  1293. "_alignFlags": 8,
  1294. "_target": null,
  1295. "_left": -48.030981567382796,
  1296. "_right": 0,
  1297. "_top": 0,
  1298. "_bottom": 0,
  1299. "_horizontalCenter": 0,
  1300. "_verticalCenter": 0,
  1301. "_isAbsLeft": true,
  1302. "_isAbsRight": true,
  1303. "_isAbsTop": true,
  1304. "_isAbsBottom": true,
  1305. "_isAbsHorizontalCenter": true,
  1306. "_isAbsVerticalCenter": true,
  1307. "_originalWidth": 40,
  1308. "_originalHeight": 0,
  1309. "_alignMode": 2,
  1310. "_lockFlags": 0,
  1311. "_id": ""
  1312. },
  1313. {
  1314. "__type__": "cc.CompPrefabInfo",
  1315. "fileId": "4eMjEMVLhNd4l+PBu9xbbG"
  1316. },
  1317. {
  1318. "__type__": "cc.PrefabInfo",
  1319. "root": {
  1320. "__id__": 1
  1321. },
  1322. "asset": {
  1323. "__id__": 0
  1324. },
  1325. "fileId": "e5N+2ccJBPMYbLCbBiVjch",
  1326. "instance": null,
  1327. "targetOverrides": null,
  1328. "nestedPrefabInstanceRoots": null
  1329. },
  1330. {
  1331. "__type__": "cc.UITransform",
  1332. "_name": "",
  1333. "_objFlags": 0,
  1334. "__editorExtras__": {},
  1335. "node": {
  1336. "__id__": 44
  1337. },
  1338. "_enabled": true,
  1339. "__prefab": {
  1340. "__id__": 54
  1341. },
  1342. "_contentSize": {
  1343. "__type__": "cc.Size",
  1344. "width": 184.07640075683594,
  1345. "height": 30.240000000000002
  1346. },
  1347. "_anchorPoint": {
  1348. "__type__": "cc.Vec2",
  1349. "x": 1,
  1350. "y": 0.5
  1351. },
  1352. "_id": ""
  1353. },
  1354. {
  1355. "__type__": "cc.CompPrefabInfo",
  1356. "fileId": "a5TijodE9PlKyy2OXvWNwP"
  1357. },
  1358. {
  1359. "__type__": "cc.Label",
  1360. "_name": "",
  1361. "_objFlags": 0,
  1362. "__editorExtras__": {},
  1363. "node": {
  1364. "__id__": 44
  1365. },
  1366. "_enabled": true,
  1367. "__prefab": {
  1368. "__id__": 56
  1369. },
  1370. "_customMaterial": null,
  1371. "_srcBlendFactor": 2,
  1372. "_dstBlendFactor": 4,
  1373. "_color": {
  1374. "__type__": "cc.Color",
  1375. "r": 138,
  1376. "g": 98,
  1377. "b": 48,
  1378. "a": 255
  1379. },
  1380. "_string": "邮件数: 999/999",
  1381. "_horizontalAlign": 2,
  1382. "_verticalAlign": 1,
  1383. "_actualFontSize": 24,
  1384. "_fontSize": 24,
  1385. "_fontFamily": "Arial",
  1386. "_lineHeight": 24,
  1387. "_overflow": 0,
  1388. "_enableWrapText": false,
  1389. "_font": {
  1390. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  1391. "__expectedType__": "cc.TTFFont"
  1392. },
  1393. "_isSystemFontUsed": false,
  1394. "_spacingX": 0,
  1395. "_isItalic": false,
  1396. "_isBold": true,
  1397. "_isUnderline": false,
  1398. "_underlineHeight": 2,
  1399. "_cacheMode": 0,
  1400. "_enableOutline": false,
  1401. "_outlineColor": {
  1402. "__type__": "cc.Color",
  1403. "r": 0,
  1404. "g": 0,
  1405. "b": 0,
  1406. "a": 255
  1407. },
  1408. "_outlineWidth": 2,
  1409. "_enableShadow": false,
  1410. "_shadowColor": {
  1411. "__type__": "cc.Color",
  1412. "r": 0,
  1413. "g": 0,
  1414. "b": 0,
  1415. "a": 255
  1416. },
  1417. "_shadowOffset": {
  1418. "__type__": "cc.Vec2",
  1419. "x": 2,
  1420. "y": 2
  1421. },
  1422. "_shadowBlur": 2,
  1423. "_id": ""
  1424. },
  1425. {
  1426. "__type__": "cc.CompPrefabInfo",
  1427. "fileId": "87+vE3SLROJrBWKJHzDMGo"
  1428. },
  1429. {
  1430. "__type__": "cc.PrefabInfo",
  1431. "root": {
  1432. "__id__": 1
  1433. },
  1434. "asset": {
  1435. "__id__": 0
  1436. },
  1437. "fileId": "8fB6YrFK9G9pA1tZT1VVwm",
  1438. "instance": null,
  1439. "targetOverrides": null,
  1440. "nestedPrefabInstanceRoots": null
  1441. },
  1442. {
  1443. "__type__": "cc.Node",
  1444. "_name": "sv",
  1445. "_objFlags": 0,
  1446. "__editorExtras__": {},
  1447. "_parent": {
  1448. "__id__": 31
  1449. },
  1450. "_children": [
  1451. {
  1452. "__id__": 59
  1453. }
  1454. ],
  1455. "_active": true,
  1456. "_components": [
  1457. {
  1458. "__id__": 146
  1459. },
  1460. {
  1461. "__id__": 148
  1462. },
  1463. {
  1464. "__id__": 150
  1465. }
  1466. ],
  1467. "_prefab": {
  1468. "__id__": 155
  1469. },
  1470. "_lpos": {
  1471. "__type__": "cc.Vec3",
  1472. "x": 0,
  1473. "y": -15,
  1474. "z": 0
  1475. },
  1476. "_lrot": {
  1477. "__type__": "cc.Quat",
  1478. "x": 0,
  1479. "y": 0,
  1480. "z": 0,
  1481. "w": 1
  1482. },
  1483. "_lscale": {
  1484. "__type__": "cc.Vec3",
  1485. "x": 1,
  1486. "y": 1,
  1487. "z": 1
  1488. },
  1489. "_mobility": 0,
  1490. "_layer": 33554432,
  1491. "_euler": {
  1492. "__type__": "cc.Vec3",
  1493. "x": 0,
  1494. "y": 0,
  1495. "z": 0
  1496. },
  1497. "_id": ""
  1498. },
  1499. {
  1500. "__type__": "cc.Node",
  1501. "_name": "view",
  1502. "_objFlags": 0,
  1503. "__editorExtras__": {},
  1504. "_parent": {
  1505. "__id__": 58
  1506. },
  1507. "_children": [
  1508. {
  1509. "__id__": 60
  1510. }
  1511. ],
  1512. "_active": true,
  1513. "_components": [
  1514. {
  1515. "__id__": 139
  1516. },
  1517. {
  1518. "__id__": 141
  1519. },
  1520. {
  1521. "__id__": 143
  1522. }
  1523. ],
  1524. "_prefab": {
  1525. "__id__": 145
  1526. },
  1527. "_lpos": {
  1528. "__type__": "cc.Vec3",
  1529. "x": 0,
  1530. "y": 0,
  1531. "z": 0
  1532. },
  1533. "_lrot": {
  1534. "__type__": "cc.Quat",
  1535. "x": 0,
  1536. "y": 0,
  1537. "z": 0,
  1538. "w": 1
  1539. },
  1540. "_lscale": {
  1541. "__type__": "cc.Vec3",
  1542. "x": 1,
  1543. "y": 1,
  1544. "z": 1
  1545. },
  1546. "_mobility": 0,
  1547. "_layer": 33554432,
  1548. "_euler": {
  1549. "__type__": "cc.Vec3",
  1550. "x": 0,
  1551. "y": 0,
  1552. "z": 0
  1553. },
  1554. "_id": ""
  1555. },
  1556. {
  1557. "__type__": "cc.Node",
  1558. "_name": "content",
  1559. "_objFlags": 0,
  1560. "__editorExtras__": {},
  1561. "_parent": {
  1562. "__id__": 59
  1563. },
  1564. "_children": [
  1565. {
  1566. "__id__": 61
  1567. }
  1568. ],
  1569. "_active": true,
  1570. "_components": [
  1571. {
  1572. "__id__": 134
  1573. },
  1574. {
  1575. "__id__": 136
  1576. }
  1577. ],
  1578. "_prefab": {
  1579. "__id__": 138
  1580. },
  1581. "_lpos": {
  1582. "__type__": "cc.Vec3",
  1583. "x": 0,
  1584. "y": 341,
  1585. "z": 0
  1586. },
  1587. "_lrot": {
  1588. "__type__": "cc.Quat",
  1589. "x": 0,
  1590. "y": 0,
  1591. "z": 0,
  1592. "w": 1
  1593. },
  1594. "_lscale": {
  1595. "__type__": "cc.Vec3",
  1596. "x": 1,
  1597. "y": 1,
  1598. "z": 1
  1599. },
  1600. "_mobility": 0,
  1601. "_layer": 33554432,
  1602. "_euler": {
  1603. "__type__": "cc.Vec3",
  1604. "x": 0,
  1605. "y": 0,
  1606. "z": 0
  1607. },
  1608. "_id": ""
  1609. },
  1610. {
  1611. "__type__": "cc.Node",
  1612. "_name": "model",
  1613. "_objFlags": 0,
  1614. "__editorExtras__": {},
  1615. "_parent": {
  1616. "__id__": 60
  1617. },
  1618. "_children": [
  1619. {
  1620. "__id__": 62
  1621. },
  1622. {
  1623. "__id__": 71
  1624. },
  1625. {
  1626. "__id__": 75
  1627. },
  1628. {
  1629. "__id__": 81
  1630. },
  1631. {
  1632. "__id__": 87
  1633. },
  1634. {
  1635. "__id__": 93
  1636. },
  1637. {
  1638. "__id__": 105
  1639. },
  1640. {
  1641. "__id__": 123
  1642. }
  1643. ],
  1644. "_active": true,
  1645. "_components": [
  1646. {
  1647. "__id__": 129
  1648. },
  1649. {
  1650. "__id__": 131
  1651. }
  1652. ],
  1653. "_prefab": {
  1654. "__id__": 133
  1655. },
  1656. "_lpos": {
  1657. "__type__": "cc.Vec3",
  1658. "x": 0,
  1659. "y": -80,
  1660. "z": 0
  1661. },
  1662. "_lrot": {
  1663. "__type__": "cc.Quat",
  1664. "x": 0,
  1665. "y": 0,
  1666. "z": 0,
  1667. "w": 1
  1668. },
  1669. "_lscale": {
  1670. "__type__": "cc.Vec3",
  1671. "x": 1,
  1672. "y": 1,
  1673. "z": 1
  1674. },
  1675. "_mobility": 0,
  1676. "_layer": 33554432,
  1677. "_euler": {
  1678. "__type__": "cc.Vec3",
  1679. "x": 0,
  1680. "y": 0,
  1681. "z": 0
  1682. },
  1683. "_id": ""
  1684. },
  1685. {
  1686. "__type__": "cc.Node",
  1687. "_name": "bg",
  1688. "_objFlags": 0,
  1689. "__editorExtras__": {},
  1690. "_parent": {
  1691. "__id__": 61
  1692. },
  1693. "_children": [],
  1694. "_active": true,
  1695. "_components": [
  1696. {
  1697. "__id__": 63
  1698. },
  1699. {
  1700. "__id__": 65
  1701. },
  1702. {
  1703. "__id__": 67
  1704. }
  1705. ],
  1706. "_prefab": {
  1707. "__id__": 70
  1708. },
  1709. "_lpos": {
  1710. "__type__": "cc.Vec3",
  1711. "x": 0,
  1712. "y": 0,
  1713. "z": 0
  1714. },
  1715. "_lrot": {
  1716. "__type__": "cc.Quat",
  1717. "x": 0,
  1718. "y": 0,
  1719. "z": 0,
  1720. "w": 1
  1721. },
  1722. "_lscale": {
  1723. "__type__": "cc.Vec3",
  1724. "x": 1,
  1725. "y": 1,
  1726. "z": 1
  1727. },
  1728. "_mobility": 0,
  1729. "_layer": 33554432,
  1730. "_euler": {
  1731. "__type__": "cc.Vec3",
  1732. "x": 0,
  1733. "y": 0,
  1734. "z": 0
  1735. },
  1736. "_id": ""
  1737. },
  1738. {
  1739. "__type__": "cc.UITransform",
  1740. "_name": "",
  1741. "_objFlags": 0,
  1742. "__editorExtras__": {},
  1743. "node": {
  1744. "__id__": 62
  1745. },
  1746. "_enabled": true,
  1747. "__prefab": {
  1748. "__id__": 64
  1749. },
  1750. "_contentSize": {
  1751. "__type__": "cc.Size",
  1752. "width": 634,
  1753. "height": 140
  1754. },
  1755. "_anchorPoint": {
  1756. "__type__": "cc.Vec2",
  1757. "x": 0.5,
  1758. "y": 0.5
  1759. },
  1760. "_id": ""
  1761. },
  1762. {
  1763. "__type__": "cc.CompPrefabInfo",
  1764. "fileId": "e8slfaWRpL8ahqK/1cA0qw"
  1765. },
  1766. {
  1767. "__type__": "cc.Sprite",
  1768. "_name": "",
  1769. "_objFlags": 0,
  1770. "__editorExtras__": {},
  1771. "node": {
  1772. "__id__": 62
  1773. },
  1774. "_enabled": true,
  1775. "__prefab": {
  1776. "__id__": 66
  1777. },
  1778. "_customMaterial": null,
  1779. "_srcBlendFactor": 2,
  1780. "_dstBlendFactor": 4,
  1781. "_color": {
  1782. "__type__": "cc.Color",
  1783. "r": 255,
  1784. "g": 255,
  1785. "b": 255,
  1786. "a": 255
  1787. },
  1788. "_spriteFrame": {
  1789. "__uuid__": "14b77576-3bb7-42e7-b2ae-637b2c376a4b@f9941",
  1790. "__expectedType__": "cc.SpriteFrame"
  1791. },
  1792. "_type": 1,
  1793. "_fillType": 0,
  1794. "_sizeMode": 0,
  1795. "_fillCenter": {
  1796. "__type__": "cc.Vec2",
  1797. "x": 0,
  1798. "y": 0
  1799. },
  1800. "_fillStart": 0,
  1801. "_fillRange": 0,
  1802. "_isTrimmedMode": true,
  1803. "_useGrayscale": false,
  1804. "_atlas": null,
  1805. "_id": ""
  1806. },
  1807. {
  1808. "__type__": "cc.CompPrefabInfo",
  1809. "fileId": "09q1YJ6XJFtbwQri8paU8z"
  1810. },
  1811. {
  1812. "__type__": "cc.Button",
  1813. "_name": "",
  1814. "_objFlags": 0,
  1815. "__editorExtras__": {},
  1816. "node": {
  1817. "__id__": 62
  1818. },
  1819. "_enabled": true,
  1820. "__prefab": {
  1821. "__id__": 68
  1822. },
  1823. "clickEvents": [
  1824. {
  1825. "__id__": 69
  1826. }
  1827. ],
  1828. "_interactable": true,
  1829. "_transition": 0,
  1830. "_normalColor": {
  1831. "__type__": "cc.Color",
  1832. "r": 255,
  1833. "g": 255,
  1834. "b": 255,
  1835. "a": 255
  1836. },
  1837. "_hoverColor": {
  1838. "__type__": "cc.Color",
  1839. "r": 211,
  1840. "g": 211,
  1841. "b": 211,
  1842. "a": 255
  1843. },
  1844. "_pressedColor": {
  1845. "__type__": "cc.Color",
  1846. "r": 255,
  1847. "g": 255,
  1848. "b": 255,
  1849. "a": 255
  1850. },
  1851. "_disabledColor": {
  1852. "__type__": "cc.Color",
  1853. "r": 124,
  1854. "g": 124,
  1855. "b": 124,
  1856. "a": 255
  1857. },
  1858. "_normalSprite": null,
  1859. "_hoverSprite": null,
  1860. "_pressedSprite": null,
  1861. "_disabledSprite": null,
  1862. "_duration": 0.1,
  1863. "_zoomScale": 1.2,
  1864. "_target": null,
  1865. "_id": ""
  1866. },
  1867. {
  1868. "__type__": "cc.CompPrefabInfo",
  1869. "fileId": "ddtLlEojFBea6fPVYgesbZ"
  1870. },
  1871. {
  1872. "__type__": "cc.ClickEvent",
  1873. "target": {
  1874. "__id__": 61
  1875. },
  1876. "component": "",
  1877. "_componentId": "69b76mWo1tM/KKAK1rIhSQ7",
  1878. "handler": "onTouchButton",
  1879. "customEventData": ""
  1880. },
  1881. {
  1882. "__type__": "cc.PrefabInfo",
  1883. "root": {
  1884. "__id__": 1
  1885. },
  1886. "asset": {
  1887. "__id__": 0
  1888. },
  1889. "fileId": "4f2pCFI/tHxp/7+bOYjGdd",
  1890. "instance": null,
  1891. "targetOverrides": null,
  1892. "nestedPrefabInstanceRoots": null
  1893. },
  1894. {
  1895. "__type__": "cc.Node",
  1896. "_name": "award_node",
  1897. "_objFlags": 0,
  1898. "__editorExtras__": {},
  1899. "_parent": {
  1900. "__id__": 61
  1901. },
  1902. "_children": [],
  1903. "_active": true,
  1904. "_components": [
  1905. {
  1906. "__id__": 72
  1907. }
  1908. ],
  1909. "_prefab": {
  1910. "__id__": 74
  1911. },
  1912. "_lpos": {
  1913. "__type__": "cc.Vec3",
  1914. "x": -250,
  1915. "y": 0,
  1916. "z": 0
  1917. },
  1918. "_lrot": {
  1919. "__type__": "cc.Quat",
  1920. "x": 0,
  1921. "y": 0,
  1922. "z": 0,
  1923. "w": 1
  1924. },
  1925. "_lscale": {
  1926. "__type__": "cc.Vec3",
  1927. "x": 1,
  1928. "y": 1,
  1929. "z": 1
  1930. },
  1931. "_mobility": 0,
  1932. "_layer": 33554432,
  1933. "_euler": {
  1934. "__type__": "cc.Vec3",
  1935. "x": 0,
  1936. "y": 0,
  1937. "z": 0
  1938. },
  1939. "_id": ""
  1940. },
  1941. {
  1942. "__type__": "cc.UITransform",
  1943. "_name": "",
  1944. "_objFlags": 0,
  1945. "__editorExtras__": {},
  1946. "node": {
  1947. "__id__": 71
  1948. },
  1949. "_enabled": true,
  1950. "__prefab": {
  1951. "__id__": 73
  1952. },
  1953. "_contentSize": {
  1954. "__type__": "cc.Size",
  1955. "width": 0,
  1956. "height": 0
  1957. },
  1958. "_anchorPoint": {
  1959. "__type__": "cc.Vec2",
  1960. "x": 0.5,
  1961. "y": 0.5
  1962. },
  1963. "_id": ""
  1964. },
  1965. {
  1966. "__type__": "cc.CompPrefabInfo",
  1967. "fileId": "5fSf4zEuZFPL/qbBcinoz0"
  1968. },
  1969. {
  1970. "__type__": "cc.PrefabInfo",
  1971. "root": {
  1972. "__id__": 1
  1973. },
  1974. "asset": {
  1975. "__id__": 0
  1976. },
  1977. "fileId": "f7q08iIipI86VW5v8ZtfiL",
  1978. "instance": null,
  1979. "targetOverrides": null,
  1980. "nestedPrefabInstanceRoots": null
  1981. },
  1982. {
  1983. "__type__": "cc.Node",
  1984. "_name": "award_bg",
  1985. "_objFlags": 0,
  1986. "__editorExtras__": {},
  1987. "_parent": {
  1988. "__id__": 61
  1989. },
  1990. "_children": [],
  1991. "_active": true,
  1992. "_components": [
  1993. {
  1994. "__id__": 76
  1995. },
  1996. {
  1997. "__id__": 78
  1998. }
  1999. ],
  2000. "_prefab": {
  2001. "__id__": 80
  2002. },
  2003. "_lpos": {
  2004. "__type__": "cc.Vec3",
  2005. "x": -250,
  2006. "y": 0,
  2007. "z": 0
  2008. },
  2009. "_lrot": {
  2010. "__type__": "cc.Quat",
  2011. "x": 0,
  2012. "y": 0,
  2013. "z": 0,
  2014. "w": 1
  2015. },
  2016. "_lscale": {
  2017. "__type__": "cc.Vec3",
  2018. "x": 1,
  2019. "y": 1,
  2020. "z": 1
  2021. },
  2022. "_mobility": 0,
  2023. "_layer": 33554432,
  2024. "_euler": {
  2025. "__type__": "cc.Vec3",
  2026. "x": 0,
  2027. "y": 0,
  2028. "z": 0
  2029. },
  2030. "_id": ""
  2031. },
  2032. {
  2033. "__type__": "cc.UITransform",
  2034. "_name": "",
  2035. "_objFlags": 0,
  2036. "__editorExtras__": {},
  2037. "node": {
  2038. "__id__": 75
  2039. },
  2040. "_enabled": true,
  2041. "__prefab": {
  2042. "__id__": 77
  2043. },
  2044. "_contentSize": {
  2045. "__type__": "cc.Size",
  2046. "width": 77,
  2047. "height": 71
  2048. },
  2049. "_anchorPoint": {
  2050. "__type__": "cc.Vec2",
  2051. "x": 0.5,
  2052. "y": 0.5
  2053. },
  2054. "_id": ""
  2055. },
  2056. {
  2057. "__type__": "cc.CompPrefabInfo",
  2058. "fileId": "34WRW2HIVOaYcNDxJ85NUu"
  2059. },
  2060. {
  2061. "__type__": "cc.Sprite",
  2062. "_name": "",
  2063. "_objFlags": 0,
  2064. "__editorExtras__": {},
  2065. "node": {
  2066. "__id__": 75
  2067. },
  2068. "_enabled": true,
  2069. "__prefab": {
  2070. "__id__": 79
  2071. },
  2072. "_customMaterial": null,
  2073. "_srcBlendFactor": 2,
  2074. "_dstBlendFactor": 4,
  2075. "_color": {
  2076. "__type__": "cc.Color",
  2077. "r": 255,
  2078. "g": 255,
  2079. "b": 255,
  2080. "a": 255
  2081. },
  2082. "_spriteFrame": {
  2083. "__uuid__": "b7fb019c-5be7-4cfe-a16a-1fc81f1a81ac@f9941",
  2084. "__expectedType__": "cc.SpriteFrame"
  2085. },
  2086. "_type": 0,
  2087. "_fillType": 0,
  2088. "_sizeMode": 1,
  2089. "_fillCenter": {
  2090. "__type__": "cc.Vec2",
  2091. "x": 0,
  2092. "y": 0
  2093. },
  2094. "_fillStart": 0,
  2095. "_fillRange": 0,
  2096. "_isTrimmedMode": true,
  2097. "_useGrayscale": false,
  2098. "_atlas": null,
  2099. "_id": ""
  2100. },
  2101. {
  2102. "__type__": "cc.CompPrefabInfo",
  2103. "fileId": "b2zJGH4K5Ea4pP0BeG9qB4"
  2104. },
  2105. {
  2106. "__type__": "cc.PrefabInfo",
  2107. "root": {
  2108. "__id__": 1
  2109. },
  2110. "asset": {
  2111. "__id__": 0
  2112. },
  2113. "fileId": "670Zy6mDlJ0LFp3G5k88Aj",
  2114. "instance": null,
  2115. "targetOverrides": null,
  2116. "nestedPrefabInstanceRoots": null
  2117. },
  2118. {
  2119. "__type__": "cc.Node",
  2120. "_name": "title_tx",
  2121. "_objFlags": 0,
  2122. "__editorExtras__": {},
  2123. "_parent": {
  2124. "__id__": 61
  2125. },
  2126. "_children": [],
  2127. "_active": true,
  2128. "_components": [
  2129. {
  2130. "__id__": 82
  2131. },
  2132. {
  2133. "__id__": 84
  2134. }
  2135. ],
  2136. "_prefab": {
  2137. "__id__": 86
  2138. },
  2139. "_lpos": {
  2140. "__type__": "cc.Vec3",
  2141. "x": -184,
  2142. "y": 22.413999999999987,
  2143. "z": 0
  2144. },
  2145. "_lrot": {
  2146. "__type__": "cc.Quat",
  2147. "x": 0,
  2148. "y": 0,
  2149. "z": 0,
  2150. "w": 1
  2151. },
  2152. "_lscale": {
  2153. "__type__": "cc.Vec3",
  2154. "x": 1,
  2155. "y": 1,
  2156. "z": 1
  2157. },
  2158. "_mobility": 0,
  2159. "_layer": 33554432,
  2160. "_euler": {
  2161. "__type__": "cc.Vec3",
  2162. "x": 0,
  2163. "y": 0,
  2164. "z": 0
  2165. },
  2166. "_id": ""
  2167. },
  2168. {
  2169. "__type__": "cc.UITransform",
  2170. "_name": "",
  2171. "_objFlags": 0,
  2172. "__editorExtras__": {},
  2173. "node": {
  2174. "__id__": 81
  2175. },
  2176. "_enabled": true,
  2177. "__prefab": {
  2178. "__id__": 83
  2179. },
  2180. "_contentSize": {
  2181. "__type__": "cc.Size",
  2182. "width": 102,
  2183. "height": 36.24
  2184. },
  2185. "_anchorPoint": {
  2186. "__type__": "cc.Vec2",
  2187. "x": 0,
  2188. "y": 0.5
  2189. },
  2190. "_id": ""
  2191. },
  2192. {
  2193. "__type__": "cc.CompPrefabInfo",
  2194. "fileId": "e1gPR7s99K479XyFgJIcqS"
  2195. },
  2196. {
  2197. "__type__": "cc.Label",
  2198. "_name": "",
  2199. "_objFlags": 0,
  2200. "__editorExtras__": {},
  2201. "node": {
  2202. "__id__": 81
  2203. },
  2204. "_enabled": true,
  2205. "__prefab": {
  2206. "__id__": 85
  2207. },
  2208. "_customMaterial": null,
  2209. "_srcBlendFactor": 2,
  2210. "_dstBlendFactor": 4,
  2211. "_color": {
  2212. "__type__": "cc.Color",
  2213. "r": 255,
  2214. "g": 239,
  2215. "b": 201,
  2216. "a": 255
  2217. },
  2218. "_string": "邮件标题",
  2219. "_horizontalAlign": 0,
  2220. "_verticalAlign": 1,
  2221. "_actualFontSize": 24,
  2222. "_fontSize": 24,
  2223. "_fontFamily": "Arial",
  2224. "_lineHeight": 24,
  2225. "_overflow": 0,
  2226. "_enableWrapText": false,
  2227. "_font": {
  2228. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  2229. "__expectedType__": "cc.TTFFont"
  2230. },
  2231. "_isSystemFontUsed": false,
  2232. "_spacingX": 0,
  2233. "_isItalic": false,
  2234. "_isBold": true,
  2235. "_isUnderline": false,
  2236. "_underlineHeight": 2,
  2237. "_cacheMode": 0,
  2238. "_enableOutline": true,
  2239. "_outlineColor": {
  2240. "__type__": "cc.Color",
  2241. "r": 0,
  2242. "g": 0,
  2243. "b": 0,
  2244. "a": 255
  2245. },
  2246. "_outlineWidth": 3,
  2247. "_enableShadow": false,
  2248. "_shadowColor": {
  2249. "__type__": "cc.Color",
  2250. "r": 0,
  2251. "g": 0,
  2252. "b": 0,
  2253. "a": 255
  2254. },
  2255. "_shadowOffset": {
  2256. "__type__": "cc.Vec2",
  2257. "x": 2,
  2258. "y": 2
  2259. },
  2260. "_shadowBlur": 2,
  2261. "_id": ""
  2262. },
  2263. {
  2264. "__type__": "cc.CompPrefabInfo",
  2265. "fileId": "9ehY5LjnlB45kZtbFqm48q"
  2266. },
  2267. {
  2268. "__type__": "cc.PrefabInfo",
  2269. "root": {
  2270. "__id__": 1
  2271. },
  2272. "asset": {
  2273. "__id__": 0
  2274. },
  2275. "fileId": "8cxuCwzmNJ37jmxb9rX5aB",
  2276. "instance": null,
  2277. "targetOverrides": null,
  2278. "nestedPrefabInstanceRoots": null
  2279. },
  2280. {
  2281. "__type__": "cc.Node",
  2282. "_name": "time_tx",
  2283. "_objFlags": 0,
  2284. "__editorExtras__": {},
  2285. "_parent": {
  2286. "__id__": 61
  2287. },
  2288. "_children": [],
  2289. "_active": true,
  2290. "_components": [
  2291. {
  2292. "__id__": 88
  2293. },
  2294. {
  2295. "__id__": 90
  2296. }
  2297. ],
  2298. "_prefab": {
  2299. "__id__": 92
  2300. },
  2301. "_lpos": {
  2302. "__type__": "cc.Vec3",
  2303. "x": -184,
  2304. "y": -20.528999999999996,
  2305. "z": 0
  2306. },
  2307. "_lrot": {
  2308. "__type__": "cc.Quat",
  2309. "x": 0,
  2310. "y": 0,
  2311. "z": 0,
  2312. "w": 1
  2313. },
  2314. "_lscale": {
  2315. "__type__": "cc.Vec3",
  2316. "x": 1,
  2317. "y": 1,
  2318. "z": 1
  2319. },
  2320. "_mobility": 0,
  2321. "_layer": 33554432,
  2322. "_euler": {
  2323. "__type__": "cc.Vec3",
  2324. "x": 0,
  2325. "y": 0,
  2326. "z": 0
  2327. },
  2328. "_id": ""
  2329. },
  2330. {
  2331. "__type__": "cc.UITransform",
  2332. "_name": "",
  2333. "_objFlags": 0,
  2334. "__editorExtras__": {},
  2335. "node": {
  2336. "__id__": 87
  2337. },
  2338. "_enabled": true,
  2339. "__prefab": {
  2340. "__id__": 89
  2341. },
  2342. "_contentSize": {
  2343. "__type__": "cc.Size",
  2344. "width": 144.23992919921875,
  2345. "height": 30.240000000000002
  2346. },
  2347. "_anchorPoint": {
  2348. "__type__": "cc.Vec2",
  2349. "x": 0,
  2350. "y": 0.5
  2351. },
  2352. "_id": ""
  2353. },
  2354. {
  2355. "__type__": "cc.CompPrefabInfo",
  2356. "fileId": "ef+L4DbpxBhpOqEo2rRD4w"
  2357. },
  2358. {
  2359. "__type__": "cc.Label",
  2360. "_name": "",
  2361. "_objFlags": 0,
  2362. "__editorExtras__": {},
  2363. "node": {
  2364. "__id__": 87
  2365. },
  2366. "_enabled": true,
  2367. "__prefab": {
  2368. "__id__": 91
  2369. },
  2370. "_customMaterial": null,
  2371. "_srcBlendFactor": 2,
  2372. "_dstBlendFactor": 4,
  2373. "_color": {
  2374. "__type__": "cc.Color",
  2375. "r": 138,
  2376. "g": 98,
  2377. "b": 48,
  2378. "a": 255
  2379. },
  2380. "_string": "9999-99-99",
  2381. "_horizontalAlign": 0,
  2382. "_verticalAlign": 1,
  2383. "_actualFontSize": 24,
  2384. "_fontSize": 24,
  2385. "_fontFamily": "Arial",
  2386. "_lineHeight": 24,
  2387. "_overflow": 0,
  2388. "_enableWrapText": false,
  2389. "_font": {
  2390. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  2391. "__expectedType__": "cc.TTFFont"
  2392. },
  2393. "_isSystemFontUsed": false,
  2394. "_spacingX": 0,
  2395. "_isItalic": false,
  2396. "_isBold": true,
  2397. "_isUnderline": false,
  2398. "_underlineHeight": 2,
  2399. "_cacheMode": 0,
  2400. "_enableOutline": false,
  2401. "_outlineColor": {
  2402. "__type__": "cc.Color",
  2403. "r": 0,
  2404. "g": 0,
  2405. "b": 0,
  2406. "a": 255
  2407. },
  2408. "_outlineWidth": 3,
  2409. "_enableShadow": false,
  2410. "_shadowColor": {
  2411. "__type__": "cc.Color",
  2412. "r": 0,
  2413. "g": 0,
  2414. "b": 0,
  2415. "a": 255
  2416. },
  2417. "_shadowOffset": {
  2418. "__type__": "cc.Vec2",
  2419. "x": 2,
  2420. "y": 2
  2421. },
  2422. "_shadowBlur": 2,
  2423. "_id": ""
  2424. },
  2425. {
  2426. "__type__": "cc.CompPrefabInfo",
  2427. "fileId": "8ahfuIMSJHLIAhxHWNkMBo"
  2428. },
  2429. {
  2430. "__type__": "cc.PrefabInfo",
  2431. "root": {
  2432. "__id__": 1
  2433. },
  2434. "asset": {
  2435. "__id__": 0
  2436. },
  2437. "fileId": "17tANsFdNDAJ/H3uXnCbhV",
  2438. "instance": null,
  2439. "targetOverrides": null,
  2440. "nestedPrefabInstanceRoots": null
  2441. },
  2442. {
  2443. "__type__": "cc.Node",
  2444. "_name": "red_ico",
  2445. "_objFlags": 0,
  2446. "__editorExtras__": {},
  2447. "_parent": {
  2448. "__id__": 61
  2449. },
  2450. "_children": [
  2451. {
  2452. "__id__": 94
  2453. }
  2454. ],
  2455. "_active": true,
  2456. "_components": [
  2457. {
  2458. "__id__": 100
  2459. },
  2460. {
  2461. "__id__": 102
  2462. }
  2463. ],
  2464. "_prefab": {
  2465. "__id__": 104
  2466. },
  2467. "_lpos": {
  2468. "__type__": "cc.Vec3",
  2469. "x": 230,
  2470. "y": 0.41399999999998727,
  2471. "z": 0
  2472. },
  2473. "_lrot": {
  2474. "__type__": "cc.Quat",
  2475. "x": 0,
  2476. "y": 0,
  2477. "z": 0,
  2478. "w": 1
  2479. },
  2480. "_lscale": {
  2481. "__type__": "cc.Vec3",
  2482. "x": 1,
  2483. "y": 1,
  2484. "z": 1
  2485. },
  2486. "_mobility": 0,
  2487. "_layer": 33554432,
  2488. "_euler": {
  2489. "__type__": "cc.Vec3",
  2490. "x": 0,
  2491. "y": 0,
  2492. "z": 0
  2493. },
  2494. "_id": ""
  2495. },
  2496. {
  2497. "__type__": "cc.Node",
  2498. "_name": "tx",
  2499. "_objFlags": 0,
  2500. "__editorExtras__": {},
  2501. "_parent": {
  2502. "__id__": 93
  2503. },
  2504. "_children": [],
  2505. "_active": true,
  2506. "_components": [
  2507. {
  2508. "__id__": 95
  2509. },
  2510. {
  2511. "__id__": 97
  2512. }
  2513. ],
  2514. "_prefab": {
  2515. "__id__": 99
  2516. },
  2517. "_lpos": {
  2518. "__type__": "cc.Vec3",
  2519. "x": 0,
  2520. "y": 0,
  2521. "z": 0
  2522. },
  2523. "_lrot": {
  2524. "__type__": "cc.Quat",
  2525. "x": 0,
  2526. "y": 0,
  2527. "z": 0,
  2528. "w": 1
  2529. },
  2530. "_lscale": {
  2531. "__type__": "cc.Vec3",
  2532. "x": 1,
  2533. "y": 1,
  2534. "z": 1
  2535. },
  2536. "_mobility": 0,
  2537. "_layer": 33554432,
  2538. "_euler": {
  2539. "__type__": "cc.Vec3",
  2540. "x": 0,
  2541. "y": 0,
  2542. "z": 0
  2543. },
  2544. "_id": ""
  2545. },
  2546. {
  2547. "__type__": "cc.UITransform",
  2548. "_name": "",
  2549. "_objFlags": 0,
  2550. "__editorExtras__": {},
  2551. "node": {
  2552. "__id__": 94
  2553. },
  2554. "_enabled": true,
  2555. "__prefab": {
  2556. "__id__": 96
  2557. },
  2558. "_contentSize": {
  2559. "__type__": "cc.Size",
  2560. "width": 44,
  2561. "height": 27.72
  2562. },
  2563. "_anchorPoint": {
  2564. "__type__": "cc.Vec2",
  2565. "x": 0.5,
  2566. "y": 0.5
  2567. },
  2568. "_id": ""
  2569. },
  2570. {
  2571. "__type__": "cc.CompPrefabInfo",
  2572. "fileId": "4dvKGGMURGbJBr4e78WxKD"
  2573. },
  2574. {
  2575. "__type__": "cc.Label",
  2576. "_name": "",
  2577. "_objFlags": 0,
  2578. "__editorExtras__": {},
  2579. "node": {
  2580. "__id__": 94
  2581. },
  2582. "_enabled": true,
  2583. "__prefab": {
  2584. "__id__": 98
  2585. },
  2586. "_customMaterial": null,
  2587. "_srcBlendFactor": 2,
  2588. "_dstBlendFactor": 4,
  2589. "_color": {
  2590. "__type__": "cc.Color",
  2591. "r": 138,
  2592. "g": 98,
  2593. "b": 48,
  2594. "a": 255
  2595. },
  2596. "_string": "已读",
  2597. "_horizontalAlign": 1,
  2598. "_verticalAlign": 1,
  2599. "_actualFontSize": 22,
  2600. "_fontSize": 22,
  2601. "_fontFamily": "Arial",
  2602. "_lineHeight": 22,
  2603. "_overflow": 0,
  2604. "_enableWrapText": false,
  2605. "_font": {
  2606. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  2607. "__expectedType__": "cc.TTFFont"
  2608. },
  2609. "_isSystemFontUsed": false,
  2610. "_spacingX": 0,
  2611. "_isItalic": false,
  2612. "_isBold": true,
  2613. "_isUnderline": false,
  2614. "_underlineHeight": 2,
  2615. "_cacheMode": 0,
  2616. "_enableOutline": false,
  2617. "_outlineColor": {
  2618. "__type__": "cc.Color",
  2619. "r": 0,
  2620. "g": 0,
  2621. "b": 0,
  2622. "a": 255
  2623. },
  2624. "_outlineWidth": 3,
  2625. "_enableShadow": false,
  2626. "_shadowColor": {
  2627. "__type__": "cc.Color",
  2628. "r": 0,
  2629. "g": 0,
  2630. "b": 0,
  2631. "a": 255
  2632. },
  2633. "_shadowOffset": {
  2634. "__type__": "cc.Vec2",
  2635. "x": 2,
  2636. "y": 2
  2637. },
  2638. "_shadowBlur": 2,
  2639. "_id": ""
  2640. },
  2641. {
  2642. "__type__": "cc.CompPrefabInfo",
  2643. "fileId": "b3vq228ehCyKPzgI1xbQ27"
  2644. },
  2645. {
  2646. "__type__": "cc.PrefabInfo",
  2647. "root": {
  2648. "__id__": 1
  2649. },
  2650. "asset": {
  2651. "__id__": 0
  2652. },
  2653. "fileId": "a0+PrE3SFADKMEI50LhQhp",
  2654. "instance": null,
  2655. "targetOverrides": null,
  2656. "nestedPrefabInstanceRoots": null
  2657. },
  2658. {
  2659. "__type__": "cc.UITransform",
  2660. "_name": "",
  2661. "_objFlags": 0,
  2662. "__editorExtras__": {},
  2663. "node": {
  2664. "__id__": 93
  2665. },
  2666. "_enabled": true,
  2667. "__prefab": {
  2668. "__id__": 101
  2669. },
  2670. "_contentSize": {
  2671. "__type__": "cc.Size",
  2672. "width": 90,
  2673. "height": 90
  2674. },
  2675. "_anchorPoint": {
  2676. "__type__": "cc.Vec2",
  2677. "x": 0.5,
  2678. "y": 0.5
  2679. },
  2680. "_id": ""
  2681. },
  2682. {
  2683. "__type__": "cc.CompPrefabInfo",
  2684. "fileId": "6bJfdRLDFOQrNrUJJiliTy"
  2685. },
  2686. {
  2687. "__type__": "cc.Sprite",
  2688. "_name": "",
  2689. "_objFlags": 0,
  2690. "__editorExtras__": {},
  2691. "node": {
  2692. "__id__": 93
  2693. },
  2694. "_enabled": true,
  2695. "__prefab": {
  2696. "__id__": 103
  2697. },
  2698. "_customMaterial": null,
  2699. "_srcBlendFactor": 2,
  2700. "_dstBlendFactor": 4,
  2701. "_color": {
  2702. "__type__": "cc.Color",
  2703. "r": 255,
  2704. "g": 255,
  2705. "b": 255,
  2706. "a": 255
  2707. },
  2708. "_spriteFrame": {
  2709. "__uuid__": "0e8644fe-d019-4885-85da-5ed67f2612f2@f9941",
  2710. "__expectedType__": "cc.SpriteFrame"
  2711. },
  2712. "_type": 0,
  2713. "_fillType": 0,
  2714. "_sizeMode": 1,
  2715. "_fillCenter": {
  2716. "__type__": "cc.Vec2",
  2717. "x": 0,
  2718. "y": 0
  2719. },
  2720. "_fillStart": 0,
  2721. "_fillRange": 0,
  2722. "_isTrimmedMode": true,
  2723. "_useGrayscale": false,
  2724. "_atlas": null,
  2725. "_id": ""
  2726. },
  2727. {
  2728. "__type__": "cc.CompPrefabInfo",
  2729. "fileId": "34xVKNPpFJEoiRQQs7nv1d"
  2730. },
  2731. {
  2732. "__type__": "cc.PrefabInfo",
  2733. "root": {
  2734. "__id__": 1
  2735. },
  2736. "asset": {
  2737. "__id__": 0
  2738. },
  2739. "fileId": "64pa3xH3VOjqA1rHBEaY/O",
  2740. "instance": null,
  2741. "targetOverrides": null,
  2742. "nestedPrefabInstanceRoots": null
  2743. },
  2744. {
  2745. "__type__": "cc.Node",
  2746. "_name": "award_tips",
  2747. "_objFlags": 0,
  2748. "__editorExtras__": {},
  2749. "_parent": {
  2750. "__id__": 61
  2751. },
  2752. "_children": [
  2753. {
  2754. "__id__": 106
  2755. },
  2756. {
  2757. "__id__": 112
  2758. }
  2759. ],
  2760. "_active": true,
  2761. "_components": [
  2762. {
  2763. "__id__": 118
  2764. },
  2765. {
  2766. "__id__": 120
  2767. }
  2768. ],
  2769. "_prefab": {
  2770. "__id__": 122
  2771. },
  2772. "_lpos": {
  2773. "__type__": "cc.Vec3",
  2774. "x": 230,
  2775. "y": 74.41399999999999,
  2776. "z": 0
  2777. },
  2778. "_lrot": {
  2779. "__type__": "cc.Quat",
  2780. "x": 0,
  2781. "y": 0,
  2782. "z": 0,
  2783. "w": 1
  2784. },
  2785. "_lscale": {
  2786. "__type__": "cc.Vec3",
  2787. "x": 1,
  2788. "y": 1,
  2789. "z": 1
  2790. },
  2791. "_mobility": 0,
  2792. "_layer": 33554432,
  2793. "_euler": {
  2794. "__type__": "cc.Vec3",
  2795. "x": 0,
  2796. "y": 0,
  2797. "z": 0
  2798. },
  2799. "_id": ""
  2800. },
  2801. {
  2802. "__type__": "cc.Node",
  2803. "_name": "ico",
  2804. "_objFlags": 0,
  2805. "__editorExtras__": {},
  2806. "_parent": {
  2807. "__id__": 105
  2808. },
  2809. "_children": [],
  2810. "_active": true,
  2811. "_components": [
  2812. {
  2813. "__id__": 107
  2814. },
  2815. {
  2816. "__id__": 109
  2817. }
  2818. ],
  2819. "_prefab": {
  2820. "__id__": 111
  2821. },
  2822. "_lpos": {
  2823. "__type__": "cc.Vec3",
  2824. "x": 0,
  2825. "y": -46,
  2826. "z": 0
  2827. },
  2828. "_lrot": {
  2829. "__type__": "cc.Quat",
  2830. "x": 0,
  2831. "y": 0,
  2832. "z": 0,
  2833. "w": 1
  2834. },
  2835. "_lscale": {
  2836. "__type__": "cc.Vec3",
  2837. "x": 1,
  2838. "y": 1,
  2839. "z": 1
  2840. },
  2841. "_mobility": 0,
  2842. "_layer": 33554432,
  2843. "_euler": {
  2844. "__type__": "cc.Vec3",
  2845. "x": 0,
  2846. "y": 0,
  2847. "z": 0
  2848. },
  2849. "_id": ""
  2850. },
  2851. {
  2852. "__type__": "cc.UITransform",
  2853. "_name": "",
  2854. "_objFlags": 0,
  2855. "__editorExtras__": {},
  2856. "node": {
  2857. "__id__": 106
  2858. },
  2859. "_enabled": true,
  2860. "__prefab": {
  2861. "__id__": 108
  2862. },
  2863. "_contentSize": {
  2864. "__type__": "cc.Size",
  2865. "width": 68,
  2866. "height": 51
  2867. },
  2868. "_anchorPoint": {
  2869. "__type__": "cc.Vec2",
  2870. "x": 0.5,
  2871. "y": 0.5
  2872. },
  2873. "_id": ""
  2874. },
  2875. {
  2876. "__type__": "cc.CompPrefabInfo",
  2877. "fileId": "26KKZlsW5G9Ifo3nbolZeC"
  2878. },
  2879. {
  2880. "__type__": "cc.Sprite",
  2881. "_name": "",
  2882. "_objFlags": 0,
  2883. "__editorExtras__": {},
  2884. "node": {
  2885. "__id__": 106
  2886. },
  2887. "_enabled": true,
  2888. "__prefab": {
  2889. "__id__": 110
  2890. },
  2891. "_customMaterial": null,
  2892. "_srcBlendFactor": 2,
  2893. "_dstBlendFactor": 4,
  2894. "_color": {
  2895. "__type__": "cc.Color",
  2896. "r": 255,
  2897. "g": 255,
  2898. "b": 255,
  2899. "a": 255
  2900. },
  2901. "_spriteFrame": {
  2902. "__uuid__": "d8f6d93e-84bc-41c6-a34e-f61b6e24a1cd@f9941",
  2903. "__expectedType__": "cc.SpriteFrame"
  2904. },
  2905. "_type": 0,
  2906. "_fillType": 0,
  2907. "_sizeMode": 1,
  2908. "_fillCenter": {
  2909. "__type__": "cc.Vec2",
  2910. "x": 0,
  2911. "y": 0
  2912. },
  2913. "_fillStart": 0,
  2914. "_fillRange": 0,
  2915. "_isTrimmedMode": true,
  2916. "_useGrayscale": false,
  2917. "_atlas": null,
  2918. "_id": ""
  2919. },
  2920. {
  2921. "__type__": "cc.CompPrefabInfo",
  2922. "fileId": "a1XwANBDdB/4g6ErXyPjph"
  2923. },
  2924. {
  2925. "__type__": "cc.PrefabInfo",
  2926. "root": {
  2927. "__id__": 1
  2928. },
  2929. "asset": {
  2930. "__id__": 0
  2931. },
  2932. "fileId": "913qp1cYdCfbA9H4rSQiJ/",
  2933. "instance": null,
  2934. "targetOverrides": null,
  2935. "nestedPrefabInstanceRoots": null
  2936. },
  2937. {
  2938. "__type__": "cc.Node",
  2939. "_name": "tx",
  2940. "_objFlags": 0,
  2941. "__editorExtras__": {},
  2942. "_parent": {
  2943. "__id__": 105
  2944. },
  2945. "_children": [],
  2946. "_active": true,
  2947. "_components": [
  2948. {
  2949. "__id__": 113
  2950. },
  2951. {
  2952. "__id__": 115
  2953. }
  2954. ],
  2955. "_prefab": {
  2956. "__id__": 117
  2957. },
  2958. "_lpos": {
  2959. "__type__": "cc.Vec3",
  2960. "x": 0,
  2961. "y": -120,
  2962. "z": 0
  2963. },
  2964. "_lrot": {
  2965. "__type__": "cc.Quat",
  2966. "x": 0,
  2967. "y": 0,
  2968. "z": 0,
  2969. "w": 1
  2970. },
  2971. "_lscale": {
  2972. "__type__": "cc.Vec3",
  2973. "x": 1,
  2974. "y": 1,
  2975. "z": 1
  2976. },
  2977. "_mobility": 0,
  2978. "_layer": 33554432,
  2979. "_euler": {
  2980. "__type__": "cc.Vec3",
  2981. "x": 0,
  2982. "y": 0,
  2983. "z": 0
  2984. },
  2985. "_id": ""
  2986. },
  2987. {
  2988. "__type__": "cc.UITransform",
  2989. "_name": "",
  2990. "_objFlags": 0,
  2991. "__editorExtras__": {},
  2992. "node": {
  2993. "__id__": 112
  2994. },
  2995. "_enabled": true,
  2996. "__prefab": {
  2997. "__id__": 114
  2998. },
  2999. "_contentSize": {
  3000. "__type__": "cc.Size",
  3001. "width": 44,
  3002. "height": 27.72
  3003. },
  3004. "_anchorPoint": {
  3005. "__type__": "cc.Vec2",
  3006. "x": 0.5,
  3007. "y": 0.5
  3008. },
  3009. "_id": ""
  3010. },
  3011. {
  3012. "__type__": "cc.CompPrefabInfo",
  3013. "fileId": "42bW1+OV1OI4fRqoeAjcRK"
  3014. },
  3015. {
  3016. "__type__": "cc.Label",
  3017. "_name": "",
  3018. "_objFlags": 0,
  3019. "__editorExtras__": {},
  3020. "node": {
  3021. "__id__": 112
  3022. },
  3023. "_enabled": true,
  3024. "__prefab": {
  3025. "__id__": 116
  3026. },
  3027. "_customMaterial": null,
  3028. "_srcBlendFactor": 2,
  3029. "_dstBlendFactor": 4,
  3030. "_color": {
  3031. "__type__": "cc.Color",
  3032. "r": 138,
  3033. "g": 98,
  3034. "b": 48,
  3035. "a": 255
  3036. },
  3037. "_string": "附件",
  3038. "_horizontalAlign": 1,
  3039. "_verticalAlign": 1,
  3040. "_actualFontSize": 22,
  3041. "_fontSize": 22,
  3042. "_fontFamily": "Arial",
  3043. "_lineHeight": 22,
  3044. "_overflow": 0,
  3045. "_enableWrapText": false,
  3046. "_font": {
  3047. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  3048. "__expectedType__": "cc.TTFFont"
  3049. },
  3050. "_isSystemFontUsed": false,
  3051. "_spacingX": 0,
  3052. "_isItalic": false,
  3053. "_isBold": true,
  3054. "_isUnderline": false,
  3055. "_underlineHeight": 2,
  3056. "_cacheMode": 0,
  3057. "_enableOutline": false,
  3058. "_outlineColor": {
  3059. "__type__": "cc.Color",
  3060. "r": 0,
  3061. "g": 0,
  3062. "b": 0,
  3063. "a": 255
  3064. },
  3065. "_outlineWidth": 3,
  3066. "_enableShadow": false,
  3067. "_shadowColor": {
  3068. "__type__": "cc.Color",
  3069. "r": 0,
  3070. "g": 0,
  3071. "b": 0,
  3072. "a": 255
  3073. },
  3074. "_shadowOffset": {
  3075. "__type__": "cc.Vec2",
  3076. "x": 2,
  3077. "y": 2
  3078. },
  3079. "_shadowBlur": 2,
  3080. "_id": ""
  3081. },
  3082. {
  3083. "__type__": "cc.CompPrefabInfo",
  3084. "fileId": "5aN8OCIoVLF4XvEp20dq9M"
  3085. },
  3086. {
  3087. "__type__": "cc.PrefabInfo",
  3088. "root": {
  3089. "__id__": 1
  3090. },
  3091. "asset": {
  3092. "__id__": 0
  3093. },
  3094. "fileId": "42KlrzeJlCjIKOTGb/9M3P",
  3095. "instance": null,
  3096. "targetOverrides": null,
  3097. "nestedPrefabInstanceRoots": null
  3098. },
  3099. {
  3100. "__type__": "cc.UITransform",
  3101. "_name": "",
  3102. "_objFlags": 0,
  3103. "__editorExtras__": {},
  3104. "node": {
  3105. "__id__": 105
  3106. },
  3107. "_enabled": true,
  3108. "__prefab": {
  3109. "__id__": 119
  3110. },
  3111. "_contentSize": {
  3112. "__type__": "cc.Size",
  3113. "width": 114,
  3114. "height": 101
  3115. },
  3116. "_anchorPoint": {
  3117. "__type__": "cc.Vec2",
  3118. "x": 0.5,
  3119. "y": 1
  3120. },
  3121. "_id": ""
  3122. },
  3123. {
  3124. "__type__": "cc.CompPrefabInfo",
  3125. "fileId": "0c9LdLCuxNE7tWirk5g55E"
  3126. },
  3127. {
  3128. "__type__": "cc.Sprite",
  3129. "_name": "",
  3130. "_objFlags": 0,
  3131. "__editorExtras__": {},
  3132. "node": {
  3133. "__id__": 105
  3134. },
  3135. "_enabled": true,
  3136. "__prefab": {
  3137. "__id__": 121
  3138. },
  3139. "_customMaterial": null,
  3140. "_srcBlendFactor": 2,
  3141. "_dstBlendFactor": 4,
  3142. "_color": {
  3143. "__type__": "cc.Color",
  3144. "r": 255,
  3145. "g": 255,
  3146. "b": 255,
  3147. "a": 255
  3148. },
  3149. "_spriteFrame": {
  3150. "__uuid__": "f8fd7736-e3bf-4cdf-830f-c4da5713e04a@f9941",
  3151. "__expectedType__": "cc.SpriteFrame"
  3152. },
  3153. "_type": 0,
  3154. "_fillType": 0,
  3155. "_sizeMode": 1,
  3156. "_fillCenter": {
  3157. "__type__": "cc.Vec2",
  3158. "x": 0,
  3159. "y": 0
  3160. },
  3161. "_fillStart": 0,
  3162. "_fillRange": 0,
  3163. "_isTrimmedMode": true,
  3164. "_useGrayscale": false,
  3165. "_atlas": null,
  3166. "_id": ""
  3167. },
  3168. {
  3169. "__type__": "cc.CompPrefabInfo",
  3170. "fileId": "76Qz7jTIBL8YrzNzl2UPYh"
  3171. },
  3172. {
  3173. "__type__": "cc.PrefabInfo",
  3174. "root": {
  3175. "__id__": 1
  3176. },
  3177. "asset": {
  3178. "__id__": 0
  3179. },
  3180. "fileId": "5dukEIXUlF8qOh1G7hv8qU",
  3181. "instance": null,
  3182. "targetOverrides": null,
  3183. "nestedPrefabInstanceRoots": null
  3184. },
  3185. {
  3186. "__type__": "cc.Node",
  3187. "_name": "mask_img",
  3188. "_objFlags": 0,
  3189. "__editorExtras__": {},
  3190. "_parent": {
  3191. "__id__": 61
  3192. },
  3193. "_children": [],
  3194. "_active": true,
  3195. "_components": [
  3196. {
  3197. "__id__": 124
  3198. },
  3199. {
  3200. "__id__": 126
  3201. }
  3202. ],
  3203. "_prefab": {
  3204. "__id__": 128
  3205. },
  3206. "_lpos": {
  3207. "__type__": "cc.Vec3",
  3208. "x": 0,
  3209. "y": 0.41399999999998727,
  3210. "z": 0
  3211. },
  3212. "_lrot": {
  3213. "__type__": "cc.Quat",
  3214. "x": 0,
  3215. "y": 0,
  3216. "z": 0,
  3217. "w": 1
  3218. },
  3219. "_lscale": {
  3220. "__type__": "cc.Vec3",
  3221. "x": 1,
  3222. "y": 1,
  3223. "z": 1
  3224. },
  3225. "_mobility": 0,
  3226. "_layer": 33554432,
  3227. "_euler": {
  3228. "__type__": "cc.Vec3",
  3229. "x": 0,
  3230. "y": 0,
  3231. "z": 0
  3232. },
  3233. "_id": ""
  3234. },
  3235. {
  3236. "__type__": "cc.UITransform",
  3237. "_name": "",
  3238. "_objFlags": 0,
  3239. "__editorExtras__": {},
  3240. "node": {
  3241. "__id__": 123
  3242. },
  3243. "_enabled": true,
  3244. "__prefab": {
  3245. "__id__": 125
  3246. },
  3247. "_contentSize": {
  3248. "__type__": "cc.Size",
  3249. "width": 634,
  3250. "height": 140
  3251. },
  3252. "_anchorPoint": {
  3253. "__type__": "cc.Vec2",
  3254. "x": 0.5,
  3255. "y": 0.5
  3256. },
  3257. "_id": ""
  3258. },
  3259. {
  3260. "__type__": "cc.CompPrefabInfo",
  3261. "fileId": "7bWjgD1jdItZ9ajnPTuNBb"
  3262. },
  3263. {
  3264. "__type__": "cc.Sprite",
  3265. "_name": "",
  3266. "_objFlags": 0,
  3267. "__editorExtras__": {},
  3268. "node": {
  3269. "__id__": 123
  3270. },
  3271. "_enabled": true,
  3272. "__prefab": {
  3273. "__id__": 127
  3274. },
  3275. "_customMaterial": null,
  3276. "_srcBlendFactor": 2,
  3277. "_dstBlendFactor": 4,
  3278. "_color": {
  3279. "__type__": "cc.Color",
  3280. "r": 255,
  3281. "g": 255,
  3282. "b": 255,
  3283. "a": 255
  3284. },
  3285. "_spriteFrame": {
  3286. "__uuid__": "9718924a-6536-46bb-94b9-2ae2d59dd3dd@f9941",
  3287. "__expectedType__": "cc.SpriteFrame"
  3288. },
  3289. "_type": 1,
  3290. "_fillType": 0,
  3291. "_sizeMode": 0,
  3292. "_fillCenter": {
  3293. "__type__": "cc.Vec2",
  3294. "x": 0,
  3295. "y": 0
  3296. },
  3297. "_fillStart": 0,
  3298. "_fillRange": 0,
  3299. "_isTrimmedMode": true,
  3300. "_useGrayscale": false,
  3301. "_atlas": null,
  3302. "_id": ""
  3303. },
  3304. {
  3305. "__type__": "cc.CompPrefabInfo",
  3306. "fileId": "fej15pWj5LYaKhBWxOwegT"
  3307. },
  3308. {
  3309. "__type__": "cc.PrefabInfo",
  3310. "root": {
  3311. "__id__": 1
  3312. },
  3313. "asset": {
  3314. "__id__": 0
  3315. },
  3316. "fileId": "d0dSowuO9Fb7EaAaJd268M",
  3317. "instance": null,
  3318. "targetOverrides": null,
  3319. "nestedPrefabInstanceRoots": null
  3320. },
  3321. {
  3322. "__type__": "cc.UITransform",
  3323. "_name": "",
  3324. "_objFlags": 0,
  3325. "__editorExtras__": {},
  3326. "node": {
  3327. "__id__": 61
  3328. },
  3329. "_enabled": true,
  3330. "__prefab": {
  3331. "__id__": 130
  3332. },
  3333. "_contentSize": {
  3334. "__type__": "cc.Size",
  3335. "width": 634,
  3336. "height": 140
  3337. },
  3338. "_anchorPoint": {
  3339. "__type__": "cc.Vec2",
  3340. "x": 0.5,
  3341. "y": 0.5
  3342. },
  3343. "_id": ""
  3344. },
  3345. {
  3346. "__type__": "cc.CompPrefabInfo",
  3347. "fileId": "5cjWfyXRBIh6GxyuPuBCFC"
  3348. },
  3349. {
  3350. "__type__": "69b76mWo1tM/KKAK1rIhSQ7",
  3351. "_name": "",
  3352. "_objFlags": 0,
  3353. "__editorExtras__": {},
  3354. "node": {
  3355. "__id__": 61
  3356. },
  3357. "_enabled": true,
  3358. "__prefab": {
  3359. "__id__": 132
  3360. },
  3361. "frame_load": false,
  3362. "load_priority": 0,
  3363. "awardBg": {
  3364. "__id__": 75
  3365. },
  3366. "awardNode": {
  3367. "__id__": 71
  3368. },
  3369. "titleTx": {
  3370. "__id__": 84
  3371. },
  3372. "timeTx": {
  3373. "__id__": 90
  3374. },
  3375. "readIco": {
  3376. "__id__": 93
  3377. },
  3378. "readIcoTx": {
  3379. "__id__": 97
  3380. },
  3381. "awardTips": {
  3382. "__id__": 105
  3383. },
  3384. "awardTipsTx": {
  3385. "__id__": 115
  3386. },
  3387. "maskImg": {
  3388. "__id__": 123
  3389. },
  3390. "_id": ""
  3391. },
  3392. {
  3393. "__type__": "cc.CompPrefabInfo",
  3394. "fileId": "7b1rkWKddMVJhL6F1cNAre"
  3395. },
  3396. {
  3397. "__type__": "cc.PrefabInfo",
  3398. "root": {
  3399. "__id__": 1
  3400. },
  3401. "asset": {
  3402. "__id__": 0
  3403. },
  3404. "fileId": "d6l87ANP9F564zuhd5YTRX",
  3405. "instance": null,
  3406. "targetOverrides": null,
  3407. "nestedPrefabInstanceRoots": null
  3408. },
  3409. {
  3410. "__type__": "cc.UITransform",
  3411. "_name": "",
  3412. "_objFlags": 0,
  3413. "__editorExtras__": {},
  3414. "node": {
  3415. "__id__": 60
  3416. },
  3417. "_enabled": true,
  3418. "__prefab": {
  3419. "__id__": 135
  3420. },
  3421. "_contentSize": {
  3422. "__type__": "cc.Size",
  3423. "width": 634,
  3424. "height": 150
  3425. },
  3426. "_anchorPoint": {
  3427. "__type__": "cc.Vec2",
  3428. "x": 0.5,
  3429. "y": 1
  3430. },
  3431. "_id": ""
  3432. },
  3433. {
  3434. "__type__": "cc.CompPrefabInfo",
  3435. "fileId": "e3K7Rv5gBNaId+Mg/0xXKa"
  3436. },
  3437. {
  3438. "__type__": "cc.Layout",
  3439. "_name": "",
  3440. "_objFlags": 0,
  3441. "__editorExtras__": {},
  3442. "node": {
  3443. "__id__": 60
  3444. },
  3445. "_enabled": true,
  3446. "__prefab": {
  3447. "__id__": 137
  3448. },
  3449. "_resizeMode": 1,
  3450. "_layoutType": 2,
  3451. "_cellSize": {
  3452. "__type__": "cc.Size",
  3453. "width": 40,
  3454. "height": 40
  3455. },
  3456. "_startAxis": 0,
  3457. "_paddingLeft": 0,
  3458. "_paddingRight": 0,
  3459. "_paddingTop": 10,
  3460. "_paddingBottom": 0,
  3461. "_spacingX": 0,
  3462. "_spacingY": 10,
  3463. "_verticalDirection": 1,
  3464. "_horizontalDirection": 0,
  3465. "_constraint": 0,
  3466. "_constraintNum": 2,
  3467. "_affectedByScale": false,
  3468. "_isAlign": false,
  3469. "_id": ""
  3470. },
  3471. {
  3472. "__type__": "cc.CompPrefabInfo",
  3473. "fileId": "a98Pe7/7hLqYbulhByRicg"
  3474. },
  3475. {
  3476. "__type__": "cc.PrefabInfo",
  3477. "root": {
  3478. "__id__": 1
  3479. },
  3480. "asset": {
  3481. "__id__": 0
  3482. },
  3483. "fileId": "4b0gdEhzRDMoSTcPBwdL7G",
  3484. "instance": null,
  3485. "targetOverrides": null,
  3486. "nestedPrefabInstanceRoots": null
  3487. },
  3488. {
  3489. "__type__": "cc.UITransform",
  3490. "_name": "",
  3491. "_objFlags": 0,
  3492. "__editorExtras__": {},
  3493. "node": {
  3494. "__id__": 59
  3495. },
  3496. "_enabled": true,
  3497. "__prefab": {
  3498. "__id__": 140
  3499. },
  3500. "_contentSize": {
  3501. "__type__": "cc.Size",
  3502. "width": 634,
  3503. "height": 682
  3504. },
  3505. "_anchorPoint": {
  3506. "__type__": "cc.Vec2",
  3507. "x": 0.5,
  3508. "y": 0.5
  3509. },
  3510. "_id": ""
  3511. },
  3512. {
  3513. "__type__": "cc.CompPrefabInfo",
  3514. "fileId": "12/YBLYmVOE5JwhdN4sYrz"
  3515. },
  3516. {
  3517. "__type__": "cc.Mask",
  3518. "_name": "",
  3519. "_objFlags": 0,
  3520. "__editorExtras__": {},
  3521. "node": {
  3522. "__id__": 59
  3523. },
  3524. "_enabled": true,
  3525. "__prefab": {
  3526. "__id__": 142
  3527. },
  3528. "_type": 0,
  3529. "_inverted": false,
  3530. "_segments": 64,
  3531. "_alphaThreshold": 0.1,
  3532. "_id": ""
  3533. },
  3534. {
  3535. "__type__": "cc.CompPrefabInfo",
  3536. "fileId": "b2TMj4PFNP75xM24MncjZQ"
  3537. },
  3538. {
  3539. "__type__": "cc.Graphics",
  3540. "_name": "",
  3541. "_objFlags": 0,
  3542. "__editorExtras__": {},
  3543. "node": {
  3544. "__id__": 59
  3545. },
  3546. "_enabled": true,
  3547. "__prefab": {
  3548. "__id__": 144
  3549. },
  3550. "_customMaterial": null,
  3551. "_srcBlendFactor": 2,
  3552. "_dstBlendFactor": 4,
  3553. "_color": {
  3554. "__type__": "cc.Color",
  3555. "r": 255,
  3556. "g": 255,
  3557. "b": 255,
  3558. "a": 255
  3559. },
  3560. "_lineWidth": 1,
  3561. "_strokeColor": {
  3562. "__type__": "cc.Color",
  3563. "r": 0,
  3564. "g": 0,
  3565. "b": 0,
  3566. "a": 255
  3567. },
  3568. "_lineJoin": 2,
  3569. "_lineCap": 0,
  3570. "_fillColor": {
  3571. "__type__": "cc.Color",
  3572. "r": 255,
  3573. "g": 255,
  3574. "b": 255,
  3575. "a": 0
  3576. },
  3577. "_miterLimit": 10,
  3578. "_id": ""
  3579. },
  3580. {
  3581. "__type__": "cc.CompPrefabInfo",
  3582. "fileId": "f3JLSVb4JMaKuf5mX56XOi"
  3583. },
  3584. {
  3585. "__type__": "cc.PrefabInfo",
  3586. "root": {
  3587. "__id__": 1
  3588. },
  3589. "asset": {
  3590. "__id__": 0
  3591. },
  3592. "fileId": "773rFV8Y5KDINLLO9rv+mW",
  3593. "instance": null,
  3594. "targetOverrides": null,
  3595. "nestedPrefabInstanceRoots": null
  3596. },
  3597. {
  3598. "__type__": "cc.UITransform",
  3599. "_name": "",
  3600. "_objFlags": 0,
  3601. "__editorExtras__": {},
  3602. "node": {
  3603. "__id__": 58
  3604. },
  3605. "_enabled": true,
  3606. "__prefab": {
  3607. "__id__": 147
  3608. },
  3609. "_contentSize": {
  3610. "__type__": "cc.Size",
  3611. "width": 634,
  3612. "height": 682
  3613. },
  3614. "_anchorPoint": {
  3615. "__type__": "cc.Vec2",
  3616. "x": 0.5,
  3617. "y": 0.5
  3618. },
  3619. "_id": ""
  3620. },
  3621. {
  3622. "__type__": "cc.CompPrefabInfo",
  3623. "fileId": "39rBu9CHdHd56Lmdi6hP+s"
  3624. },
  3625. {
  3626. "__type__": "cc.ScrollView",
  3627. "_name": "",
  3628. "_objFlags": 0,
  3629. "__editorExtras__": {},
  3630. "node": {
  3631. "__id__": 58
  3632. },
  3633. "_enabled": true,
  3634. "__prefab": {
  3635. "__id__": 149
  3636. },
  3637. "bounceDuration": 0.23,
  3638. "brake": 0.75,
  3639. "elastic": true,
  3640. "inertia": true,
  3641. "horizontal": false,
  3642. "vertical": true,
  3643. "cancelInnerEvents": true,
  3644. "scrollEvents": [],
  3645. "_content": {
  3646. "__id__": 60
  3647. },
  3648. "_horizontalScrollBar": null,
  3649. "_verticalScrollBar": null,
  3650. "_id": ""
  3651. },
  3652. {
  3653. "__type__": "cc.CompPrefabInfo",
  3654. "fileId": "56q/8onjZDablvxII4v7ju"
  3655. },
  3656. {
  3657. "__type__": "b3be3x8rnhKRZd5v1Xo0Flv",
  3658. "_name": "",
  3659. "_objFlags": 0,
  3660. "__editorExtras__": {},
  3661. "node": {
  3662. "__id__": 58
  3663. },
  3664. "_enabled": true,
  3665. "__prefab": {
  3666. "__id__": 151
  3667. },
  3668. "templateType": 1,
  3669. "tmpNode": {
  3670. "__id__": 62
  3671. },
  3672. "tmpPrefab": null,
  3673. "_slideMode": 1,
  3674. "pageDistance": 0.3,
  3675. "pageChangeEvent": {
  3676. "__id__": 152
  3677. },
  3678. "_virtual": true,
  3679. "cyclic": false,
  3680. "lackCenter": false,
  3681. "lackSlide": true,
  3682. "_updateRate": 0,
  3683. "frameByFrameRenderNum": 0,
  3684. "renderEvent": {
  3685. "__id__": 153
  3686. },
  3687. "selectedMode": 0,
  3688. "selectedEvent": {
  3689. "__id__": 154
  3690. },
  3691. "repeatEventSingle": false,
  3692. "_id": ""
  3693. },
  3694. {
  3695. "__type__": "cc.CompPrefabInfo",
  3696. "fileId": "c2HmLkBW5JerASW0ojGpt1"
  3697. },
  3698. {
  3699. "__type__": "cc.ClickEvent",
  3700. "target": null,
  3701. "component": "",
  3702. "_componentId": "",
  3703. "handler": "",
  3704. "customEventData": ""
  3705. },
  3706. {
  3707. "__type__": "cc.ClickEvent",
  3708. "target": {
  3709. "__id__": 1
  3710. },
  3711. "component": "",
  3712. "_componentId": "995a5ONk2pJD7rK6RU/nsFU",
  3713. "handler": "onEventList",
  3714. "customEventData": ""
  3715. },
  3716. {
  3717. "__type__": "cc.ClickEvent",
  3718. "target": null,
  3719. "component": "",
  3720. "_componentId": "",
  3721. "handler": "",
  3722. "customEventData": ""
  3723. },
  3724. {
  3725. "__type__": "cc.PrefabInfo",
  3726. "root": {
  3727. "__id__": 1
  3728. },
  3729. "asset": {
  3730. "__id__": 0
  3731. },
  3732. "fileId": "259s3YAXZD5IcFtdbaDK4p",
  3733. "instance": null,
  3734. "targetOverrides": null,
  3735. "nestedPrefabInstanceRoots": null
  3736. },
  3737. {
  3738. "__type__": "cc.Node",
  3739. "_name": "auto_del_btn",
  3740. "_objFlags": 0,
  3741. "__editorExtras__": {},
  3742. "_parent": {
  3743. "__id__": 31
  3744. },
  3745. "_children": [
  3746. {
  3747. "__id__": 157
  3748. }
  3749. ],
  3750. "_active": true,
  3751. "_components": [
  3752. {
  3753. "__id__": 163
  3754. },
  3755. {
  3756. "__id__": 165
  3757. },
  3758. {
  3759. "__id__": 167
  3760. }
  3761. ],
  3762. "_prefab": {
  3763. "__id__": 170
  3764. },
  3765. "_lpos": {
  3766. "__type__": "cc.Vec3",
  3767. "x": -170,
  3768. "y": -420.645,
  3769. "z": 0
  3770. },
  3771. "_lrot": {
  3772. "__type__": "cc.Quat",
  3773. "x": 0,
  3774. "y": 0,
  3775. "z": 0,
  3776. "w": 1
  3777. },
  3778. "_lscale": {
  3779. "__type__": "cc.Vec3",
  3780. "x": 0.75,
  3781. "y": 0.75,
  3782. "z": 1
  3783. },
  3784. "_mobility": 0,
  3785. "_layer": 33554432,
  3786. "_euler": {
  3787. "__type__": "cc.Vec3",
  3788. "x": 0,
  3789. "y": 0,
  3790. "z": 0
  3791. },
  3792. "_id": ""
  3793. },
  3794. {
  3795. "__type__": "cc.Node",
  3796. "_name": "btn_tx",
  3797. "_objFlags": 0,
  3798. "__editorExtras__": {},
  3799. "_parent": {
  3800. "__id__": 156
  3801. },
  3802. "_children": [],
  3803. "_active": true,
  3804. "_components": [
  3805. {
  3806. "__id__": 158
  3807. },
  3808. {
  3809. "__id__": 160
  3810. }
  3811. ],
  3812. "_prefab": {
  3813. "__id__": 162
  3814. },
  3815. "_lpos": {
  3816. "__type__": "cc.Vec3",
  3817. "x": 0,
  3818. "y": 0,
  3819. "z": 0
  3820. },
  3821. "_lrot": {
  3822. "__type__": "cc.Quat",
  3823. "x": 0,
  3824. "y": 0,
  3825. "z": 0,
  3826. "w": 1
  3827. },
  3828. "_lscale": {
  3829. "__type__": "cc.Vec3",
  3830. "x": 1,
  3831. "y": 1,
  3832. "z": 1
  3833. },
  3834. "_mobility": 0,
  3835. "_layer": 33554432,
  3836. "_euler": {
  3837. "__type__": "cc.Vec3",
  3838. "x": 0,
  3839. "y": 0,
  3840. "z": 0
  3841. },
  3842. "_id": ""
  3843. },
  3844. {
  3845. "__type__": "cc.UITransform",
  3846. "_name": "",
  3847. "_objFlags": 0,
  3848. "__editorExtras__": {},
  3849. "node": {
  3850. "__id__": 157
  3851. },
  3852. "_enabled": true,
  3853. "__prefab": {
  3854. "__id__": 159
  3855. },
  3856. "_contentSize": {
  3857. "__type__": "cc.Size",
  3858. "width": 118,
  3859. "height": 41.28
  3860. },
  3861. "_anchorPoint": {
  3862. "__type__": "cc.Vec2",
  3863. "x": 0.5,
  3864. "y": 0.5
  3865. },
  3866. "_id": ""
  3867. },
  3868. {
  3869. "__type__": "cc.CompPrefabInfo",
  3870. "fileId": "42hJ3ojABKxo0UEnYU/TaJ"
  3871. },
  3872. {
  3873. "__type__": "cc.Label",
  3874. "_name": "",
  3875. "_objFlags": 0,
  3876. "__editorExtras__": {},
  3877. "node": {
  3878. "__id__": 157
  3879. },
  3880. "_enabled": true,
  3881. "__prefab": {
  3882. "__id__": 161
  3883. },
  3884. "_customMaterial": null,
  3885. "_srcBlendFactor": 2,
  3886. "_dstBlendFactor": 4,
  3887. "_color": {
  3888. "__type__": "cc.Color",
  3889. "r": 255,
  3890. "g": 255,
  3891. "b": 255,
  3892. "a": 255
  3893. },
  3894. "_string": "一键删除",
  3895. "_horizontalAlign": 1,
  3896. "_verticalAlign": 1,
  3897. "_actualFontSize": 28,
  3898. "_fontSize": 28,
  3899. "_fontFamily": "Arial",
  3900. "_lineHeight": 28,
  3901. "_overflow": 0,
  3902. "_enableWrapText": false,
  3903. "_font": {
  3904. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  3905. "__expectedType__": "cc.TTFFont"
  3906. },
  3907. "_isSystemFontUsed": false,
  3908. "_spacingX": 0,
  3909. "_isItalic": false,
  3910. "_isBold": true,
  3911. "_isUnderline": false,
  3912. "_underlineHeight": 2,
  3913. "_cacheMode": 0,
  3914. "_enableOutline": true,
  3915. "_outlineColor": {
  3916. "__type__": "cc.Color",
  3917. "r": 40,
  3918. "g": 86,
  3919. "b": 115,
  3920. "a": 255
  3921. },
  3922. "_outlineWidth": 3,
  3923. "_enableShadow": false,
  3924. "_shadowColor": {
  3925. "__type__": "cc.Color",
  3926. "r": 0,
  3927. "g": 0,
  3928. "b": 0,
  3929. "a": 255
  3930. },
  3931. "_shadowOffset": {
  3932. "__type__": "cc.Vec2",
  3933. "x": 2,
  3934. "y": 2
  3935. },
  3936. "_shadowBlur": 2,
  3937. "_id": ""
  3938. },
  3939. {
  3940. "__type__": "cc.CompPrefabInfo",
  3941. "fileId": "41Z1emClNL25Mpp62qIDgn"
  3942. },
  3943. {
  3944. "__type__": "cc.PrefabInfo",
  3945. "root": {
  3946. "__id__": 1
  3947. },
  3948. "asset": {
  3949. "__id__": 0
  3950. },
  3951. "fileId": "6dMy3qLoFKpqOWlBgEJab0",
  3952. "instance": null,
  3953. "targetOverrides": null,
  3954. "nestedPrefabInstanceRoots": null
  3955. },
  3956. {
  3957. "__type__": "cc.UITransform",
  3958. "_name": "",
  3959. "_objFlags": 0,
  3960. "__editorExtras__": {},
  3961. "node": {
  3962. "__id__": 156
  3963. },
  3964. "_enabled": true,
  3965. "__prefab": {
  3966. "__id__": 164
  3967. },
  3968. "_contentSize": {
  3969. "__type__": "cc.Size",
  3970. "width": 182,
  3971. "height": 90
  3972. },
  3973. "_anchorPoint": {
  3974. "__type__": "cc.Vec2",
  3975. "x": 0.5,
  3976. "y": 0.5
  3977. },
  3978. "_id": ""
  3979. },
  3980. {
  3981. "__type__": "cc.CompPrefabInfo",
  3982. "fileId": "9d7/7mECZNcIFRMpSZFhHl"
  3983. },
  3984. {
  3985. "__type__": "cc.Sprite",
  3986. "_name": "",
  3987. "_objFlags": 0,
  3988. "__editorExtras__": {},
  3989. "node": {
  3990. "__id__": 156
  3991. },
  3992. "_enabled": true,
  3993. "__prefab": {
  3994. "__id__": 166
  3995. },
  3996. "_customMaterial": null,
  3997. "_srcBlendFactor": 2,
  3998. "_dstBlendFactor": 4,
  3999. "_color": {
  4000. "__type__": "cc.Color",
  4001. "r": 255,
  4002. "g": 255,
  4003. "b": 255,
  4004. "a": 255
  4005. },
  4006. "_spriteFrame": {
  4007. "__uuid__": "a08bf7db-92e5-4606-b525-0487cd0c3154@f9941",
  4008. "__expectedType__": "cc.SpriteFrame"
  4009. },
  4010. "_type": 0,
  4011. "_fillType": 0,
  4012. "_sizeMode": 1,
  4013. "_fillCenter": {
  4014. "__type__": "cc.Vec2",
  4015. "x": 0,
  4016. "y": 0
  4017. },
  4018. "_fillStart": 0,
  4019. "_fillRange": 0,
  4020. "_isTrimmedMode": true,
  4021. "_useGrayscale": false,
  4022. "_atlas": null,
  4023. "_id": ""
  4024. },
  4025. {
  4026. "__type__": "cc.CompPrefabInfo",
  4027. "fileId": "2c1GdR2b9ANpL31EFHEZCD"
  4028. },
  4029. {
  4030. "__type__": "cc.Button",
  4031. "_name": "",
  4032. "_objFlags": 0,
  4033. "__editorExtras__": {},
  4034. "node": {
  4035. "__id__": 156
  4036. },
  4037. "_enabled": true,
  4038. "__prefab": {
  4039. "__id__": 168
  4040. },
  4041. "clickEvents": [
  4042. {
  4043. "__id__": 169
  4044. }
  4045. ],
  4046. "_interactable": true,
  4047. "_transition": 3,
  4048. "_normalColor": {
  4049. "__type__": "cc.Color",
  4050. "r": 214,
  4051. "g": 214,
  4052. "b": 214,
  4053. "a": 255
  4054. },
  4055. "_hoverColor": {
  4056. "__type__": "cc.Color",
  4057. "r": 211,
  4058. "g": 211,
  4059. "b": 211,
  4060. "a": 255
  4061. },
  4062. "_pressedColor": {
  4063. "__type__": "cc.Color",
  4064. "r": 255,
  4065. "g": 255,
  4066. "b": 255,
  4067. "a": 255
  4068. },
  4069. "_disabledColor": {
  4070. "__type__": "cc.Color",
  4071. "r": 124,
  4072. "g": 124,
  4073. "b": 124,
  4074. "a": 255
  4075. },
  4076. "_normalSprite": null,
  4077. "_hoverSprite": null,
  4078. "_pressedSprite": null,
  4079. "_disabledSprite": null,
  4080. "_duration": 0.1,
  4081. "_zoomScale": 0.8,
  4082. "_target": {
  4083. "__id__": 156
  4084. },
  4085. "_id": ""
  4086. },
  4087. {
  4088. "__type__": "cc.CompPrefabInfo",
  4089. "fileId": "09RNhis7NO9quA5Sd50Rt0"
  4090. },
  4091. {
  4092. "__type__": "cc.ClickEvent",
  4093. "target": {
  4094. "__id__": 1
  4095. },
  4096. "component": "",
  4097. "_componentId": "995a5ONk2pJD7rK6RU/nsFU",
  4098. "handler": "onTouchButton",
  4099. "customEventData": ""
  4100. },
  4101. {
  4102. "__type__": "cc.PrefabInfo",
  4103. "root": {
  4104. "__id__": 1
  4105. },
  4106. "asset": {
  4107. "__id__": 0
  4108. },
  4109. "fileId": "9e/9ArYKxDa5oU2qIh7qW7",
  4110. "instance": null,
  4111. "targetOverrides": null,
  4112. "nestedPrefabInstanceRoots": null
  4113. },
  4114. {
  4115. "__type__": "cc.Node",
  4116. "_name": "auto_get_btn",
  4117. "_objFlags": 0,
  4118. "__editorExtras__": {},
  4119. "_parent": {
  4120. "__id__": 31
  4121. },
  4122. "_children": [
  4123. {
  4124. "__id__": 172
  4125. }
  4126. ],
  4127. "_active": true,
  4128. "_components": [
  4129. {
  4130. "__id__": 178
  4131. },
  4132. {
  4133. "__id__": 180
  4134. },
  4135. {
  4136. "__id__": 182
  4137. }
  4138. ],
  4139. "_prefab": {
  4140. "__id__": 185
  4141. },
  4142. "_lpos": {
  4143. "__type__": "cc.Vec3",
  4144. "x": 170,
  4145. "y": -420.645,
  4146. "z": 0
  4147. },
  4148. "_lrot": {
  4149. "__type__": "cc.Quat",
  4150. "x": 0,
  4151. "y": 0,
  4152. "z": 0,
  4153. "w": 1
  4154. },
  4155. "_lscale": {
  4156. "__type__": "cc.Vec3",
  4157. "x": 0.75,
  4158. "y": 0.75,
  4159. "z": 1
  4160. },
  4161. "_mobility": 0,
  4162. "_layer": 33554432,
  4163. "_euler": {
  4164. "__type__": "cc.Vec3",
  4165. "x": 0,
  4166. "y": 0,
  4167. "z": 0
  4168. },
  4169. "_id": ""
  4170. },
  4171. {
  4172. "__type__": "cc.Node",
  4173. "_name": "btn_tx",
  4174. "_objFlags": 0,
  4175. "__editorExtras__": {},
  4176. "_parent": {
  4177. "__id__": 171
  4178. },
  4179. "_children": [],
  4180. "_active": true,
  4181. "_components": [
  4182. {
  4183. "__id__": 173
  4184. },
  4185. {
  4186. "__id__": 175
  4187. }
  4188. ],
  4189. "_prefab": {
  4190. "__id__": 177
  4191. },
  4192. "_lpos": {
  4193. "__type__": "cc.Vec3",
  4194. "x": 0,
  4195. "y": 0,
  4196. "z": 0
  4197. },
  4198. "_lrot": {
  4199. "__type__": "cc.Quat",
  4200. "x": 0,
  4201. "y": 0,
  4202. "z": 0,
  4203. "w": 1
  4204. },
  4205. "_lscale": {
  4206. "__type__": "cc.Vec3",
  4207. "x": 1,
  4208. "y": 1,
  4209. "z": 1
  4210. },
  4211. "_mobility": 0,
  4212. "_layer": 33554432,
  4213. "_euler": {
  4214. "__type__": "cc.Vec3",
  4215. "x": 0,
  4216. "y": 0,
  4217. "z": 0
  4218. },
  4219. "_id": ""
  4220. },
  4221. {
  4222. "__type__": "cc.UITransform",
  4223. "_name": "",
  4224. "_objFlags": 0,
  4225. "__editorExtras__": {},
  4226. "node": {
  4227. "__id__": 172
  4228. },
  4229. "_enabled": true,
  4230. "__prefab": {
  4231. "__id__": 174
  4232. },
  4233. "_contentSize": {
  4234. "__type__": "cc.Size",
  4235. "width": 116,
  4236. "height": 39.28
  4237. },
  4238. "_anchorPoint": {
  4239. "__type__": "cc.Vec2",
  4240. "x": 0.5,
  4241. "y": 0.5
  4242. },
  4243. "_id": ""
  4244. },
  4245. {
  4246. "__type__": "cc.CompPrefabInfo",
  4247. "fileId": "9cJ6Om4HxEU70A6WhADA2n"
  4248. },
  4249. {
  4250. "__type__": "cc.Label",
  4251. "_name": "",
  4252. "_objFlags": 0,
  4253. "__editorExtras__": {},
  4254. "node": {
  4255. "__id__": 172
  4256. },
  4257. "_enabled": true,
  4258. "__prefab": {
  4259. "__id__": 176
  4260. },
  4261. "_customMaterial": null,
  4262. "_srcBlendFactor": 2,
  4263. "_dstBlendFactor": 4,
  4264. "_color": {
  4265. "__type__": "cc.Color",
  4266. "r": 255,
  4267. "g": 255,
  4268. "b": 255,
  4269. "a": 255
  4270. },
  4271. "_string": "一键领取",
  4272. "_horizontalAlign": 1,
  4273. "_verticalAlign": 1,
  4274. "_actualFontSize": 27,
  4275. "_fontSize": 28,
  4276. "_fontFamily": "Arial",
  4277. "_lineHeight": 28,
  4278. "_overflow": 2,
  4279. "_enableWrapText": false,
  4280. "_font": {
  4281. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  4282. "__expectedType__": "cc.TTFFont"
  4283. },
  4284. "_isSystemFontUsed": false,
  4285. "_spacingX": 0,
  4286. "_isItalic": false,
  4287. "_isBold": true,
  4288. "_isUnderline": false,
  4289. "_underlineHeight": 2,
  4290. "_cacheMode": 0,
  4291. "_enableOutline": true,
  4292. "_outlineColor": {
  4293. "__type__": "cc.Color",
  4294. "r": 117,
  4295. "g": 71,
  4296. "b": 16,
  4297. "a": 255
  4298. },
  4299. "_outlineWidth": 3,
  4300. "_enableShadow": false,
  4301. "_shadowColor": {
  4302. "__type__": "cc.Color",
  4303. "r": 0,
  4304. "g": 0,
  4305. "b": 0,
  4306. "a": 255
  4307. },
  4308. "_shadowOffset": {
  4309. "__type__": "cc.Vec2",
  4310. "x": 2,
  4311. "y": 2
  4312. },
  4313. "_shadowBlur": 2,
  4314. "_id": ""
  4315. },
  4316. {
  4317. "__type__": "cc.CompPrefabInfo",
  4318. "fileId": "60LCqSa0FPJalRXuTvYeKP"
  4319. },
  4320. {
  4321. "__type__": "cc.PrefabInfo",
  4322. "root": {
  4323. "__id__": 1
  4324. },
  4325. "asset": {
  4326. "__id__": 0
  4327. },
  4328. "fileId": "05+Nkf6s5NoqfiyKc3oX+j",
  4329. "instance": null,
  4330. "targetOverrides": null,
  4331. "nestedPrefabInstanceRoots": null
  4332. },
  4333. {
  4334. "__type__": "cc.UITransform",
  4335. "_name": "",
  4336. "_objFlags": 0,
  4337. "__editorExtras__": {},
  4338. "node": {
  4339. "__id__": 171
  4340. },
  4341. "_enabled": true,
  4342. "__prefab": {
  4343. "__id__": 179
  4344. },
  4345. "_contentSize": {
  4346. "__type__": "cc.Size",
  4347. "width": 182,
  4348. "height": 90
  4349. },
  4350. "_anchorPoint": {
  4351. "__type__": "cc.Vec2",
  4352. "x": 0.5,
  4353. "y": 0.5
  4354. },
  4355. "_id": ""
  4356. },
  4357. {
  4358. "__type__": "cc.CompPrefabInfo",
  4359. "fileId": "c3U2blA4FPzraVQFvcdv+/"
  4360. },
  4361. {
  4362. "__type__": "cc.Sprite",
  4363. "_name": "",
  4364. "_objFlags": 0,
  4365. "__editorExtras__": {},
  4366. "node": {
  4367. "__id__": 171
  4368. },
  4369. "_enabled": true,
  4370. "__prefab": {
  4371. "__id__": 181
  4372. },
  4373. "_customMaterial": null,
  4374. "_srcBlendFactor": 2,
  4375. "_dstBlendFactor": 4,
  4376. "_color": {
  4377. "__type__": "cc.Color",
  4378. "r": 255,
  4379. "g": 255,
  4380. "b": 255,
  4381. "a": 255
  4382. },
  4383. "_spriteFrame": {
  4384. "__uuid__": "34877f34-75e1-4cbb-8ec9-f1eda8f303fc@f9941",
  4385. "__expectedType__": "cc.SpriteFrame"
  4386. },
  4387. "_type": 0,
  4388. "_fillType": 0,
  4389. "_sizeMode": 1,
  4390. "_fillCenter": {
  4391. "__type__": "cc.Vec2",
  4392. "x": 0,
  4393. "y": 0
  4394. },
  4395. "_fillStart": 0,
  4396. "_fillRange": 0,
  4397. "_isTrimmedMode": true,
  4398. "_useGrayscale": false,
  4399. "_atlas": null,
  4400. "_id": ""
  4401. },
  4402. {
  4403. "__type__": "cc.CompPrefabInfo",
  4404. "fileId": "418ie8xv1JPIen/D9YAMzk"
  4405. },
  4406. {
  4407. "__type__": "cc.Button",
  4408. "_name": "",
  4409. "_objFlags": 0,
  4410. "__editorExtras__": {},
  4411. "node": {
  4412. "__id__": 171
  4413. },
  4414. "_enabled": true,
  4415. "__prefab": {
  4416. "__id__": 183
  4417. },
  4418. "clickEvents": [
  4419. {
  4420. "__id__": 184
  4421. }
  4422. ],
  4423. "_interactable": true,
  4424. "_transition": 3,
  4425. "_normalColor": {
  4426. "__type__": "cc.Color",
  4427. "r": 214,
  4428. "g": 214,
  4429. "b": 214,
  4430. "a": 255
  4431. },
  4432. "_hoverColor": {
  4433. "__type__": "cc.Color",
  4434. "r": 211,
  4435. "g": 211,
  4436. "b": 211,
  4437. "a": 255
  4438. },
  4439. "_pressedColor": {
  4440. "__type__": "cc.Color",
  4441. "r": 255,
  4442. "g": 255,
  4443. "b": 255,
  4444. "a": 255
  4445. },
  4446. "_disabledColor": {
  4447. "__type__": "cc.Color",
  4448. "r": 124,
  4449. "g": 124,
  4450. "b": 124,
  4451. "a": 255
  4452. },
  4453. "_normalSprite": null,
  4454. "_hoverSprite": null,
  4455. "_pressedSprite": null,
  4456. "_disabledSprite": null,
  4457. "_duration": 0.1,
  4458. "_zoomScale": 0.8,
  4459. "_target": {
  4460. "__id__": 171
  4461. },
  4462. "_id": ""
  4463. },
  4464. {
  4465. "__type__": "cc.CompPrefabInfo",
  4466. "fileId": "4c/LVUqTNAprNwqVKYVkY6"
  4467. },
  4468. {
  4469. "__type__": "cc.ClickEvent",
  4470. "target": {
  4471. "__id__": 1
  4472. },
  4473. "component": "",
  4474. "_componentId": "995a5ONk2pJD7rK6RU/nsFU",
  4475. "handler": "onTouchButton",
  4476. "customEventData": ""
  4477. },
  4478. {
  4479. "__type__": "cc.PrefabInfo",
  4480. "root": {
  4481. "__id__": 1
  4482. },
  4483. "asset": {
  4484. "__id__": 0
  4485. },
  4486. "fileId": "ebKus36bxGLobBjEHMHH3c",
  4487. "instance": null,
  4488. "targetOverrides": null,
  4489. "nestedPrefabInstanceRoots": null
  4490. },
  4491. {
  4492. "__type__": "cc.Node",
  4493. "_name": "none_node",
  4494. "_objFlags": 0,
  4495. "__editorExtras__": {},
  4496. "_parent": {
  4497. "__id__": 31
  4498. },
  4499. "_children": [
  4500. {
  4501. "__id__": 187
  4502. },
  4503. {
  4504. "__id__": 193
  4505. },
  4506. {
  4507. "__id__": 199
  4508. }
  4509. ],
  4510. "_active": true,
  4511. "_components": [
  4512. {
  4513. "__id__": 205
  4514. }
  4515. ],
  4516. "_prefab": {
  4517. "__id__": 207
  4518. },
  4519. "_lpos": {
  4520. "__type__": "cc.Vec3",
  4521. "x": 0,
  4522. "y": 0,
  4523. "z": 0
  4524. },
  4525. "_lrot": {
  4526. "__type__": "cc.Quat",
  4527. "x": 0,
  4528. "y": 0,
  4529. "z": 0,
  4530. "w": 1
  4531. },
  4532. "_lscale": {
  4533. "__type__": "cc.Vec3",
  4534. "x": 1,
  4535. "y": 1,
  4536. "z": 1
  4537. },
  4538. "_mobility": 0,
  4539. "_layer": 33554432,
  4540. "_euler": {
  4541. "__type__": "cc.Vec3",
  4542. "x": 0,
  4543. "y": 0,
  4544. "z": 0
  4545. },
  4546. "_id": ""
  4547. },
  4548. {
  4549. "__type__": "cc.Node",
  4550. "_name": "man_img",
  4551. "_objFlags": 0,
  4552. "__editorExtras__": {},
  4553. "_parent": {
  4554. "__id__": 186
  4555. },
  4556. "_children": [],
  4557. "_active": true,
  4558. "_components": [
  4559. {
  4560. "__id__": 188
  4561. },
  4562. {
  4563. "__id__": 190
  4564. }
  4565. ],
  4566. "_prefab": {
  4567. "__id__": 192
  4568. },
  4569. "_lpos": {
  4570. "__type__": "cc.Vec3",
  4571. "x": 107.86200000000002,
  4572. "y": 0,
  4573. "z": 0
  4574. },
  4575. "_lrot": {
  4576. "__type__": "cc.Quat",
  4577. "x": 0,
  4578. "y": 0,
  4579. "z": 0,
  4580. "w": 1
  4581. },
  4582. "_lscale": {
  4583. "__type__": "cc.Vec3",
  4584. "x": 1,
  4585. "y": 1,
  4586. "z": 1
  4587. },
  4588. "_mobility": 0,
  4589. "_layer": 33554432,
  4590. "_euler": {
  4591. "__type__": "cc.Vec3",
  4592. "x": 0,
  4593. "y": 0,
  4594. "z": 0
  4595. },
  4596. "_id": ""
  4597. },
  4598. {
  4599. "__type__": "cc.UITransform",
  4600. "_name": "",
  4601. "_objFlags": 0,
  4602. "__editorExtras__": {},
  4603. "node": {
  4604. "__id__": 187
  4605. },
  4606. "_enabled": true,
  4607. "__prefab": {
  4608. "__id__": 189
  4609. },
  4610. "_contentSize": {
  4611. "__type__": "cc.Size",
  4612. "width": 358,
  4613. "height": 407
  4614. },
  4615. "_anchorPoint": {
  4616. "__type__": "cc.Vec2",
  4617. "x": 0.5,
  4618. "y": 0.5
  4619. },
  4620. "_id": ""
  4621. },
  4622. {
  4623. "__type__": "cc.CompPrefabInfo",
  4624. "fileId": "24kbBNLv9BDLf+UC1IDQcF"
  4625. },
  4626. {
  4627. "__type__": "cc.Sprite",
  4628. "_name": "",
  4629. "_objFlags": 0,
  4630. "__editorExtras__": {},
  4631. "node": {
  4632. "__id__": 187
  4633. },
  4634. "_enabled": true,
  4635. "__prefab": {
  4636. "__id__": 191
  4637. },
  4638. "_customMaterial": null,
  4639. "_srcBlendFactor": 2,
  4640. "_dstBlendFactor": 4,
  4641. "_color": {
  4642. "__type__": "cc.Color",
  4643. "r": 255,
  4644. "g": 255,
  4645. "b": 255,
  4646. "a": 255
  4647. },
  4648. "_spriteFrame": {
  4649. "__uuid__": "e875cbe1-f65b-49f7-a6ff-b366afb3bceb@f9941",
  4650. "__expectedType__": "cc.SpriteFrame"
  4651. },
  4652. "_type": 0,
  4653. "_fillType": 0,
  4654. "_sizeMode": 1,
  4655. "_fillCenter": {
  4656. "__type__": "cc.Vec2",
  4657. "x": 0,
  4658. "y": 0
  4659. },
  4660. "_fillStart": 0,
  4661. "_fillRange": 0,
  4662. "_isTrimmedMode": true,
  4663. "_useGrayscale": false,
  4664. "_atlas": null,
  4665. "_id": ""
  4666. },
  4667. {
  4668. "__type__": "cc.CompPrefabInfo",
  4669. "fileId": "65kesmBZhHg7lj2brBfFeR"
  4670. },
  4671. {
  4672. "__type__": "cc.PrefabInfo",
  4673. "root": {
  4674. "__id__": 1
  4675. },
  4676. "asset": {
  4677. "__id__": 0
  4678. },
  4679. "fileId": "56VKrET0dBLYFTjBKNCan3",
  4680. "instance": null,
  4681. "targetOverrides": null,
  4682. "nestedPrefabInstanceRoots": null
  4683. },
  4684. {
  4685. "__type__": "cc.Node",
  4686. "_name": "tips_bg",
  4687. "_objFlags": 0,
  4688. "__editorExtras__": {},
  4689. "_parent": {
  4690. "__id__": 186
  4691. },
  4692. "_children": [],
  4693. "_active": true,
  4694. "_components": [
  4695. {
  4696. "__id__": 194
  4697. },
  4698. {
  4699. "__id__": 196
  4700. }
  4701. ],
  4702. "_prefab": {
  4703. "__id__": 198
  4704. },
  4705. "_lpos": {
  4706. "__type__": "cc.Vec3",
  4707. "x": -111.743,
  4708. "y": 89.15700000000004,
  4709. "z": 0
  4710. },
  4711. "_lrot": {
  4712. "__type__": "cc.Quat",
  4713. "x": 0,
  4714. "y": 0,
  4715. "z": 0,
  4716. "w": 1
  4717. },
  4718. "_lscale": {
  4719. "__type__": "cc.Vec3",
  4720. "x": 1,
  4721. "y": 1,
  4722. "z": 1
  4723. },
  4724. "_mobility": 0,
  4725. "_layer": 33554432,
  4726. "_euler": {
  4727. "__type__": "cc.Vec3",
  4728. "x": 0,
  4729. "y": 0,
  4730. "z": 0
  4731. },
  4732. "_id": ""
  4733. },
  4734. {
  4735. "__type__": "cc.UITransform",
  4736. "_name": "",
  4737. "_objFlags": 0,
  4738. "__editorExtras__": {},
  4739. "node": {
  4740. "__id__": 193
  4741. },
  4742. "_enabled": true,
  4743. "__prefab": {
  4744. "__id__": 195
  4745. },
  4746. "_contentSize": {
  4747. "__type__": "cc.Size",
  4748. "width": 300,
  4749. "height": 130
  4750. },
  4751. "_anchorPoint": {
  4752. "__type__": "cc.Vec2",
  4753. "x": 0.5,
  4754. "y": 0.5
  4755. },
  4756. "_id": ""
  4757. },
  4758. {
  4759. "__type__": "cc.CompPrefabInfo",
  4760. "fileId": "88aHjo4FdAPLYL4CEJYuCQ"
  4761. },
  4762. {
  4763. "__type__": "cc.Sprite",
  4764. "_name": "",
  4765. "_objFlags": 0,
  4766. "__editorExtras__": {},
  4767. "node": {
  4768. "__id__": 193
  4769. },
  4770. "_enabled": true,
  4771. "__prefab": {
  4772. "__id__": 197
  4773. },
  4774. "_customMaterial": null,
  4775. "_srcBlendFactor": 2,
  4776. "_dstBlendFactor": 4,
  4777. "_color": {
  4778. "__type__": "cc.Color",
  4779. "r": 255,
  4780. "g": 255,
  4781. "b": 255,
  4782. "a": 255
  4783. },
  4784. "_spriteFrame": {
  4785. "__uuid__": "00c5649f-0f66-4789-9c4b-9926eb4b20c1@f9941",
  4786. "__expectedType__": "cc.SpriteFrame"
  4787. },
  4788. "_type": 0,
  4789. "_fillType": 0,
  4790. "_sizeMode": 0,
  4791. "_fillCenter": {
  4792. "__type__": "cc.Vec2",
  4793. "x": 0,
  4794. "y": 0
  4795. },
  4796. "_fillStart": 0,
  4797. "_fillRange": 0,
  4798. "_isTrimmedMode": true,
  4799. "_useGrayscale": false,
  4800. "_atlas": null,
  4801. "_id": ""
  4802. },
  4803. {
  4804. "__type__": "cc.CompPrefabInfo",
  4805. "fileId": "1cEyOYMV9C1aebHH7bsbH3"
  4806. },
  4807. {
  4808. "__type__": "cc.PrefabInfo",
  4809. "root": {
  4810. "__id__": 1
  4811. },
  4812. "asset": {
  4813. "__id__": 0
  4814. },
  4815. "fileId": "44mZ+EbApL55XVfuErqbJY",
  4816. "instance": null,
  4817. "targetOverrides": null,
  4818. "nestedPrefabInstanceRoots": null
  4819. },
  4820. {
  4821. "__type__": "cc.Node",
  4822. "_name": "tips_tx",
  4823. "_objFlags": 0,
  4824. "__editorExtras__": {},
  4825. "_parent": {
  4826. "__id__": 186
  4827. },
  4828. "_children": [],
  4829. "_active": true,
  4830. "_components": [
  4831. {
  4832. "__id__": 200
  4833. },
  4834. {
  4835. "__id__": 202
  4836. }
  4837. ],
  4838. "_prefab": {
  4839. "__id__": 204
  4840. },
  4841. "_lpos": {
  4842. "__type__": "cc.Vec3",
  4843. "x": -113.15199999999999,
  4844. "y": 88.08799999999997,
  4845. "z": 0
  4846. },
  4847. "_lrot": {
  4848. "__type__": "cc.Quat",
  4849. "x": 0,
  4850. "y": 0,
  4851. "z": 0,
  4852. "w": 1
  4853. },
  4854. "_lscale": {
  4855. "__type__": "cc.Vec3",
  4856. "x": 1,
  4857. "y": 1,
  4858. "z": 1
  4859. },
  4860. "_mobility": 0,
  4861. "_layer": 33554432,
  4862. "_euler": {
  4863. "__type__": "cc.Vec3",
  4864. "x": 0,
  4865. "y": 0,
  4866. "z": 0
  4867. },
  4868. "_id": ""
  4869. },
  4870. {
  4871. "__type__": "cc.UITransform",
  4872. "_name": "",
  4873. "_objFlags": 0,
  4874. "__editorExtras__": {},
  4875. "node": {
  4876. "__id__": 199
  4877. },
  4878. "_enabled": true,
  4879. "__prefab": {
  4880. "__id__": 201
  4881. },
  4882. "_contentSize": {
  4883. "__type__": "cc.Size",
  4884. "width": 226.923,
  4885. "height": 114.545
  4886. },
  4887. "_anchorPoint": {
  4888. "__type__": "cc.Vec2",
  4889. "x": 0.5,
  4890. "y": 0.5
  4891. },
  4892. "_id": ""
  4893. },
  4894. {
  4895. "__type__": "cc.CompPrefabInfo",
  4896. "fileId": "f3PAm/ONVCnaEGylbNHBW4"
  4897. },
  4898. {
  4899. "__type__": "cc.Label",
  4900. "_name": "",
  4901. "_objFlags": 0,
  4902. "__editorExtras__": {},
  4903. "node": {
  4904. "__id__": 199
  4905. },
  4906. "_enabled": true,
  4907. "__prefab": {
  4908. "__id__": 203
  4909. },
  4910. "_customMaterial": null,
  4911. "_srcBlendFactor": 2,
  4912. "_dstBlendFactor": 4,
  4913. "_color": {
  4914. "__type__": "cc.Color",
  4915. "r": 138,
  4916. "g": 98,
  4917. "b": 48,
  4918. "a": 255
  4919. },
  4920. "_string": "当前空空如也哦~",
  4921. "_horizontalAlign": 0,
  4922. "_verticalAlign": 1,
  4923. "_actualFontSize": 25,
  4924. "_fontSize": 24,
  4925. "_fontFamily": "Arial",
  4926. "_lineHeight": 24,
  4927. "_overflow": 2,
  4928. "_enableWrapText": true,
  4929. "_font": {
  4930. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  4931. "__expectedType__": "cc.TTFFont"
  4932. },
  4933. "_isSystemFontUsed": false,
  4934. "_spacingX": 0,
  4935. "_isItalic": false,
  4936. "_isBold": true,
  4937. "_isUnderline": false,
  4938. "_underlineHeight": 2,
  4939. "_cacheMode": 0,
  4940. "_enableOutline": false,
  4941. "_outlineColor": {
  4942. "__type__": "cc.Color",
  4943. "r": 0,
  4944. "g": 0,
  4945. "b": 0,
  4946. "a": 255
  4947. },
  4948. "_outlineWidth": 3,
  4949. "_enableShadow": false,
  4950. "_shadowColor": {
  4951. "__type__": "cc.Color",
  4952. "r": 0,
  4953. "g": 0,
  4954. "b": 0,
  4955. "a": 255
  4956. },
  4957. "_shadowOffset": {
  4958. "__type__": "cc.Vec2",
  4959. "x": 2,
  4960. "y": 2
  4961. },
  4962. "_shadowBlur": 2,
  4963. "_id": ""
  4964. },
  4965. {
  4966. "__type__": "cc.CompPrefabInfo",
  4967. "fileId": "06iBujFOBOzal/OkljedgK"
  4968. },
  4969. {
  4970. "__type__": "cc.PrefabInfo",
  4971. "root": {
  4972. "__id__": 1
  4973. },
  4974. "asset": {
  4975. "__id__": 0
  4976. },
  4977. "fileId": "deM6nPublDibwOx1KtYQna",
  4978. "instance": null,
  4979. "targetOverrides": null,
  4980. "nestedPrefabInstanceRoots": null
  4981. },
  4982. {
  4983. "__type__": "cc.UITransform",
  4984. "_name": "",
  4985. "_objFlags": 0,
  4986. "__editorExtras__": {},
  4987. "node": {
  4988. "__id__": 186
  4989. },
  4990. "_enabled": true,
  4991. "__prefab": {
  4992. "__id__": 206
  4993. },
  4994. "_contentSize": {
  4995. "__type__": "cc.Size",
  4996. "width": 100,
  4997. "height": 100
  4998. },
  4999. "_anchorPoint": {
  5000. "__type__": "cc.Vec2",
  5001. "x": 0.5,
  5002. "y": 0.5
  5003. },
  5004. "_id": ""
  5005. },
  5006. {
  5007. "__type__": "cc.CompPrefabInfo",
  5008. "fileId": "c9e+37N99JJ4fKViYnbBlR"
  5009. },
  5010. {
  5011. "__type__": "cc.PrefabInfo",
  5012. "root": {
  5013. "__id__": 1
  5014. },
  5015. "asset": {
  5016. "__id__": 0
  5017. },
  5018. "fileId": "b9uy15G11BNrTw/nxfPLpm",
  5019. "instance": null,
  5020. "targetOverrides": null,
  5021. "nestedPrefabInstanceRoots": null
  5022. },
  5023. {
  5024. "__type__": "cc.UITransform",
  5025. "_name": "",
  5026. "_objFlags": 0,
  5027. "__editorExtras__": {},
  5028. "node": {
  5029. "__id__": 31
  5030. },
  5031. "_enabled": true,
  5032. "__prefab": {
  5033. "__id__": 209
  5034. },
  5035. "_contentSize": {
  5036. "__type__": "cc.Size",
  5037. "width": 704,
  5038. "height": 952
  5039. },
  5040. "_anchorPoint": {
  5041. "__type__": "cc.Vec2",
  5042. "x": 0.5,
  5043. "y": 0.5
  5044. },
  5045. "_id": ""
  5046. },
  5047. {
  5048. "__type__": "cc.CompPrefabInfo",
  5049. "fileId": "58SY+x0rlNIo6UON3U1Y++"
  5050. },
  5051. {
  5052. "__type__": "cc.Sprite",
  5053. "_name": "",
  5054. "_objFlags": 0,
  5055. "__editorExtras__": {},
  5056. "node": {
  5057. "__id__": 31
  5058. },
  5059. "_enabled": true,
  5060. "__prefab": {
  5061. "__id__": 211
  5062. },
  5063. "_customMaterial": null,
  5064. "_srcBlendFactor": 2,
  5065. "_dstBlendFactor": 4,
  5066. "_color": {
  5067. "__type__": "cc.Color",
  5068. "r": 255,
  5069. "g": 255,
  5070. "b": 255,
  5071. "a": 255
  5072. },
  5073. "_spriteFrame": {
  5074. "__uuid__": "a4e9b2b4-69c4-49c9-97d7-1f9aa4d7418c@f9941",
  5075. "__expectedType__": "cc.SpriteFrame"
  5076. },
  5077. "_type": 1,
  5078. "_fillType": 0,
  5079. "_sizeMode": 0,
  5080. "_fillCenter": {
  5081. "__type__": "cc.Vec2",
  5082. "x": 0,
  5083. "y": 0
  5084. },
  5085. "_fillStart": 0,
  5086. "_fillRange": 0,
  5087. "_isTrimmedMode": true,
  5088. "_useGrayscale": false,
  5089. "_atlas": null,
  5090. "_id": ""
  5091. },
  5092. {
  5093. "__type__": "cc.CompPrefabInfo",
  5094. "fileId": "05y4QLm2NMhKvIUFPerk7S"
  5095. },
  5096. {
  5097. "__type__": "cc.Widget",
  5098. "_name": "",
  5099. "_objFlags": 0,
  5100. "__editorExtras__": {},
  5101. "node": {
  5102. "__id__": 31
  5103. },
  5104. "_enabled": true,
  5105. "__prefab": {
  5106. "__id__": 213
  5107. },
  5108. "_alignFlags": 18,
  5109. "_target": null,
  5110. "_left": 0,
  5111. "_right": 0,
  5112. "_top": 0,
  5113. "_bottom": 0,
  5114. "_horizontalCenter": 0,
  5115. "_verticalCenter": 0,
  5116. "_isAbsLeft": true,
  5117. "_isAbsRight": true,
  5118. "_isAbsTop": true,
  5119. "_isAbsBottom": true,
  5120. "_isAbsHorizontalCenter": true,
  5121. "_isAbsVerticalCenter": true,
  5122. "_originalWidth": 0,
  5123. "_originalHeight": 0,
  5124. "_alignMode": 2,
  5125. "_lockFlags": 0,
  5126. "_id": ""
  5127. },
  5128. {
  5129. "__type__": "cc.CompPrefabInfo",
  5130. "fileId": "36dYVU8CdAo4Onx+ZVi6br"
  5131. },
  5132. {
  5133. "__type__": "cc.BlockInputEvents",
  5134. "_name": "",
  5135. "_objFlags": 0,
  5136. "__editorExtras__": {},
  5137. "node": {
  5138. "__id__": 31
  5139. },
  5140. "_enabled": true,
  5141. "__prefab": {
  5142. "__id__": 215
  5143. },
  5144. "_id": ""
  5145. },
  5146. {
  5147. "__type__": "cc.CompPrefabInfo",
  5148. "fileId": "d7Ub2nJAxJ9KtrhQGI33jW"
  5149. },
  5150. {
  5151. "__type__": "cc.PrefabInfo",
  5152. "root": {
  5153. "__id__": 1
  5154. },
  5155. "asset": {
  5156. "__id__": 0
  5157. },
  5158. "fileId": "16osAoBkdHlKLt3lxNjBsc",
  5159. "instance": null,
  5160. "targetOverrides": null,
  5161. "nestedPrefabInstanceRoots": null
  5162. },
  5163. {
  5164. "__type__": "cc.UITransform",
  5165. "_name": "",
  5166. "_objFlags": 0,
  5167. "__editorExtras__": {},
  5168. "node": {
  5169. "__id__": 1
  5170. },
  5171. "_enabled": true,
  5172. "__prefab": {
  5173. "__id__": 218
  5174. },
  5175. "_contentSize": {
  5176. "__type__": "cc.Size",
  5177. "width": 750,
  5178. "height": 1334
  5179. },
  5180. "_anchorPoint": {
  5181. "__type__": "cc.Vec2",
  5182. "x": 0.5,
  5183. "y": 0.5
  5184. },
  5185. "_id": ""
  5186. },
  5187. {
  5188. "__type__": "cc.CompPrefabInfo",
  5189. "fileId": "55Xtfq6iZLi4VV+eKSX0+l"
  5190. },
  5191. {
  5192. "__type__": "cc.Widget",
  5193. "_name": "",
  5194. "_objFlags": 0,
  5195. "__editorExtras__": {},
  5196. "node": {
  5197. "__id__": 1
  5198. },
  5199. "_enabled": true,
  5200. "__prefab": {
  5201. "__id__": 220
  5202. },
  5203. "_alignFlags": 45,
  5204. "_target": null,
  5205. "_left": 0,
  5206. "_right": 0,
  5207. "_top": 0,
  5208. "_bottom": 0,
  5209. "_horizontalCenter": 0,
  5210. "_verticalCenter": 0,
  5211. "_isAbsLeft": true,
  5212. "_isAbsRight": true,
  5213. "_isAbsTop": true,
  5214. "_isAbsBottom": true,
  5215. "_isAbsHorizontalCenter": true,
  5216. "_isAbsVerticalCenter": true,
  5217. "_originalWidth": 100,
  5218. "_originalHeight": 100,
  5219. "_alignMode": 2,
  5220. "_lockFlags": 0,
  5221. "_id": ""
  5222. },
  5223. {
  5224. "__type__": "cc.CompPrefabInfo",
  5225. "fileId": "66b+7e7GRBzYBxbdeHY31r"
  5226. },
  5227. {
  5228. "__type__": "995a5ONk2pJD7rK6RU/nsFU",
  5229. "_name": "",
  5230. "_objFlags": 0,
  5231. "__editorExtras__": {},
  5232. "node": {
  5233. "__id__": 1
  5234. },
  5235. "_enabled": true,
  5236. "__prefab": {
  5237. "__id__": 222
  5238. },
  5239. "frame_load": false,
  5240. "load_priority": 0,
  5241. "ui_type": 0,
  5242. "_base_view_full": false,
  5243. "_base_view_block": false,
  5244. "_base_quick_close": false,
  5245. "_base_quick_close_exclude_node": [],
  5246. "_base_quick_close_destroy": true,
  5247. "closeTips": {
  5248. "__id__": 15
  5249. },
  5250. "titlteTx": {
  5251. "__id__": 41
  5252. },
  5253. "numTx": {
  5254. "__id__": 55
  5255. },
  5256. "sv": {
  5257. "__id__": 150
  5258. },
  5259. "noneNode": {
  5260. "__id__": 186
  5261. },
  5262. "noneTx": {
  5263. "__id__": 202
  5264. },
  5265. "delAutoBtn": {
  5266. "__id__": 156
  5267. },
  5268. "delAutoBtnTx": {
  5269. "__id__": 160
  5270. },
  5271. "getAutoBtn": {
  5272. "__id__": 171
  5273. },
  5274. "getAutoBtnTx": {
  5275. "__id__": 175
  5276. },
  5277. "_id": ""
  5278. },
  5279. {
  5280. "__type__": "cc.CompPrefabInfo",
  5281. "fileId": "c0gT/6ji9PTJX0ec5J0VZd"
  5282. },
  5283. {
  5284. "__type__": "cc.PrefabInfo",
  5285. "root": {
  5286. "__id__": 1
  5287. },
  5288. "asset": {
  5289. "__id__": 0
  5290. },
  5291. "fileId": "c46/YsCPVOJYA4mWEpNYRx",
  5292. "instance": null,
  5293. "targetOverrides": null
  5294. }
  5295. ]