849eb1f2-bf5c-4963-abe4-f41f5568636f.json 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "WithdrawalPanel",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "WithdrawalPanel",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 7
  25. }
  26. ],
  27. "_active": true,
  28. "_level": 1,
  29. "_components": [
  30. {
  31. "__id__": 98
  32. },
  33. {
  34. "__id__": 99
  35. }
  36. ],
  37. "_prefab": {
  38. "__id__": 100
  39. },
  40. "_opacity": 255,
  41. "_color": {
  42. "__type__": "cc.Color",
  43. "r": 255,
  44. "g": 255,
  45. "b": 255,
  46. "a": 255
  47. },
  48. "_contentSize": {
  49. "__type__": "cc.Size",
  50. "width": 1080,
  51. "height": 1920
  52. },
  53. "_anchorPoint": {
  54. "__type__": "cc.Vec2",
  55. "x": 0.5,
  56. "y": 0.5
  57. },
  58. "_quat": {
  59. "__type__": "cc.Quat",
  60. "x": 0,
  61. "y": 0,
  62. "z": 0,
  63. "w": 1
  64. },
  65. "_skewX": 0,
  66. "_skewY": 0,
  67. "groupIndex": 0,
  68. "_id": "",
  69. "_trs": {
  70. "__type__": "TypedArray",
  71. "ctor": "Float64Array",
  72. "array": [
  73. 540,
  74. 960,
  75. 0,
  76. 0,
  77. 0,
  78. 0,
  79. 1,
  80. 1,
  81. 1,
  82. 1
  83. ]
  84. }
  85. },
  86. {
  87. "__type__": "cc.Node",
  88. "_name": "Mask",
  89. "_objFlags": 0,
  90. "_parent": {
  91. "__id__": 1
  92. },
  93. "_children": [],
  94. "_active": true,
  95. "_level": 0,
  96. "_components": [
  97. {
  98. "__id__": 3
  99. },
  100. {
  101. "__id__": 4
  102. },
  103. {
  104. "__id__": 5
  105. }
  106. ],
  107. "_prefab": {
  108. "__id__": 6
  109. },
  110. "_opacity": 120,
  111. "_color": {
  112. "__type__": "cc.Color",
  113. "r": 0,
  114. "g": 0,
  115. "b": 0,
  116. "a": 255
  117. },
  118. "_contentSize": {
  119. "__type__": "cc.Size",
  120. "width": 1080,
  121. "height": 1920
  122. },
  123. "_anchorPoint": {
  124. "__type__": "cc.Vec2",
  125. "x": 0.5,
  126. "y": 0.5
  127. },
  128. "_quat": {
  129. "__type__": "cc.Quat",
  130. "x": 0,
  131. "y": 0,
  132. "z": 0,
  133. "w": 1
  134. },
  135. "_skewX": 0,
  136. "_skewY": 0,
  137. "groupIndex": 0,
  138. "_id": "",
  139. "_trs": {
  140. "__type__": "TypedArray",
  141. "ctor": "Float64Array",
  142. "array": [
  143. 0,
  144. 0,
  145. 0,
  146. 0,
  147. 0,
  148. 0,
  149. 1,
  150. 1,
  151. 1,
  152. 1
  153. ]
  154. }
  155. },
  156. {
  157. "__type__": "cc.Sprite",
  158. "_name": "",
  159. "_objFlags": 0,
  160. "node": {
  161. "__id__": 2
  162. },
  163. "_enabled": true,
  164. "_spriteFrame": {
  165. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  166. },
  167. "_type": 0,
  168. "_sizeMode": 0,
  169. "_fillType": 0,
  170. "_fillCenter": {
  171. "__type__": "cc.Vec2",
  172. "x": 0,
  173. "y": 0
  174. },
  175. "_fillStart": 0,
  176. "_fillRange": 0,
  177. "_isTrimmedMode": true,
  178. "_state": 0,
  179. "_atlas": null,
  180. "_srcBlendFactor": 770,
  181. "_dstBlendFactor": 771,
  182. "_id": ""
  183. },
  184. {
  185. "__type__": "cc.Widget",
  186. "_name": "",
  187. "_objFlags": 0,
  188. "node": {
  189. "__id__": 2
  190. },
  191. "_enabled": true,
  192. "alignMode": 1,
  193. "_target": null,
  194. "_alignFlags": 45,
  195. "_left": 0,
  196. "_right": 0,
  197. "_top": 0,
  198. "_bottom": 0,
  199. "_verticalCenter": 0,
  200. "_horizontalCenter": 0,
  201. "_isAbsLeft": true,
  202. "_isAbsRight": true,
  203. "_isAbsTop": true,
  204. "_isAbsBottom": true,
  205. "_isAbsHorizontalCenter": true,
  206. "_isAbsVerticalCenter": true,
  207. "_originalWidth": 100,
  208. "_originalHeight": 100,
  209. "_id": ""
  210. },
  211. {
  212. "__type__": "cc.BlockInputEvents",
  213. "_name": "",
  214. "_objFlags": 0,
  215. "node": {
  216. "__id__": 2
  217. },
  218. "_enabled": true,
  219. "_id": ""
  220. },
  221. {
  222. "__type__": "cc.PrefabInfo",
  223. "root": {
  224. "__id__": 1
  225. },
  226. "asset": {
  227. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  228. },
  229. "fileId": "e6HQMH5YVLX42NcV5W1Rrt",
  230. "sync": false
  231. },
  232. {
  233. "__type__": "cc.Node",
  234. "_name": "Panel",
  235. "_objFlags": 0,
  236. "_parent": {
  237. "__id__": 1
  238. },
  239. "_children": [
  240. {
  241. "__id__": 8
  242. },
  243. {
  244. "__id__": 11
  245. },
  246. {
  247. "__id__": 16
  248. },
  249. {
  250. "__id__": 19
  251. },
  252. {
  253. "__id__": 22
  254. },
  255. {
  256. "__id__": 27
  257. },
  258. {
  259. "__id__": 82
  260. }
  261. ],
  262. "_active": true,
  263. "_level": 0,
  264. "_components": [
  265. {
  266. "__id__": 96
  267. }
  268. ],
  269. "_prefab": {
  270. "__id__": 97
  271. },
  272. "_opacity": 255,
  273. "_color": {
  274. "__type__": "cc.Color",
  275. "r": 255,
  276. "g": 255,
  277. "b": 255,
  278. "a": 255
  279. },
  280. "_contentSize": {
  281. "__type__": "cc.Size",
  282. "width": 1080,
  283. "height": 1920
  284. },
  285. "_anchorPoint": {
  286. "__type__": "cc.Vec2",
  287. "x": 0.5,
  288. "y": 0.5
  289. },
  290. "_quat": {
  291. "__type__": "cc.Quat",
  292. "x": 0,
  293. "y": 0,
  294. "z": 0,
  295. "w": 1
  296. },
  297. "_skewX": 0,
  298. "_skewY": 0,
  299. "groupIndex": 0,
  300. "_id": "",
  301. "_trs": {
  302. "__type__": "TypedArray",
  303. "ctor": "Float64Array",
  304. "array": [
  305. 0,
  306. 0,
  307. 0,
  308. 0,
  309. 0,
  310. 0,
  311. 1,
  312. 1,
  313. 1,
  314. 1
  315. ]
  316. }
  317. },
  318. {
  319. "__type__": "cc.Node",
  320. "_name": "more_game_2",
  321. "_objFlags": 0,
  322. "_parent": {
  323. "__id__": 7
  324. },
  325. "_children": [],
  326. "_active": true,
  327. "_level": 0,
  328. "_components": [
  329. {
  330. "__id__": 9
  331. }
  332. ],
  333. "_prefab": {
  334. "__id__": 10
  335. },
  336. "_opacity": 255,
  337. "_color": {
  338. "__type__": "cc.Color",
  339. "r": 255,
  340. "g": 255,
  341. "b": 255,
  342. "a": 255
  343. },
  344. "_contentSize": {
  345. "__type__": "cc.Size",
  346. "width": 883,
  347. "height": 1318
  348. },
  349. "_anchorPoint": {
  350. "__type__": "cc.Vec2",
  351. "x": 0.5,
  352. "y": 0.5
  353. },
  354. "_quat": {
  355. "__type__": "cc.Quat",
  356. "x": 0,
  357. "y": 0,
  358. "z": 0,
  359. "w": 1
  360. },
  361. "_skewX": 0,
  362. "_skewY": 0,
  363. "groupIndex": 0,
  364. "_id": "",
  365. "_trs": {
  366. "__type__": "TypedArray",
  367. "ctor": "Float64Array",
  368. "array": [
  369. 0,
  370. 116,
  371. 0,
  372. 0,
  373. 0,
  374. 0,
  375. 1,
  376. 1,
  377. 1,
  378. 1
  379. ]
  380. }
  381. },
  382. {
  383. "__type__": "cc.Sprite",
  384. "_name": "",
  385. "_objFlags": 0,
  386. "node": {
  387. "__id__": 8
  388. },
  389. "_enabled": true,
  390. "_spriteFrame": {
  391. "__uuid__": "c5234894-73a4-4188-a059-01155da7bdf0"
  392. },
  393. "_type": 0,
  394. "_sizeMode": 0,
  395. "_fillType": 0,
  396. "_fillCenter": {
  397. "__type__": "cc.Vec2",
  398. "x": 0,
  399. "y": 0
  400. },
  401. "_fillStart": 0,
  402. "_fillRange": 0,
  403. "_isTrimmedMode": true,
  404. "_state": 0,
  405. "_atlas": {
  406. "__uuid__": "69625eba-6ba7-426a-a4d8-5b9d565a9e9b"
  407. },
  408. "_srcBlendFactor": 770,
  409. "_dstBlendFactor": 771,
  410. "_id": ""
  411. },
  412. {
  413. "__type__": "cc.PrefabInfo",
  414. "root": {
  415. "__id__": 1
  416. },
  417. "asset": {
  418. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  419. },
  420. "fileId": "7bYbsdPRlF2bhdDxKACXu5",
  421. "sync": false
  422. },
  423. {
  424. "__type__": "cc.Node",
  425. "_name": "btnClose",
  426. "_objFlags": 0,
  427. "_parent": {
  428. "__id__": 7
  429. },
  430. "_children": [],
  431. "_active": true,
  432. "_level": 0,
  433. "_components": [
  434. {
  435. "__id__": 12
  436. },
  437. {
  438. "__id__": 13
  439. }
  440. ],
  441. "_prefab": {
  442. "__id__": 15
  443. },
  444. "_opacity": 255,
  445. "_color": {
  446. "__type__": "cc.Color",
  447. "r": 255,
  448. "g": 255,
  449. "b": 255,
  450. "a": 255
  451. },
  452. "_contentSize": {
  453. "__type__": "cc.Size",
  454. "width": 119,
  455. "height": 109
  456. },
  457. "_anchorPoint": {
  458. "__type__": "cc.Vec2",
  459. "x": 0.5,
  460. "y": 0.5
  461. },
  462. "_quat": {
  463. "__type__": "cc.Quat",
  464. "x": 0,
  465. "y": 0,
  466. "z": 0,
  467. "w": 1
  468. },
  469. "_skewX": 0,
  470. "_skewY": 0,
  471. "groupIndex": 0,
  472. "_id": "",
  473. "_trs": {
  474. "__type__": "TypedArray",
  475. "ctor": "Float64Array",
  476. "array": [
  477. 471.3,
  478. 563.6,
  479. 0,
  480. 0,
  481. 0,
  482. 0,
  483. 1,
  484. 1,
  485. 1,
  486. 1
  487. ]
  488. }
  489. },
  490. {
  491. "__type__": "cc.Sprite",
  492. "_name": "",
  493. "_objFlags": 0,
  494. "node": {
  495. "__id__": 11
  496. },
  497. "_enabled": true,
  498. "_spriteFrame": {
  499. "__uuid__": "3832c9e1-9f11-45df-86ce-6ee837b56b2d"
  500. },
  501. "_type": 0,
  502. "_sizeMode": 0,
  503. "_fillType": 0,
  504. "_fillCenter": {
  505. "__type__": "cc.Vec2",
  506. "x": 0,
  507. "y": 0
  508. },
  509. "_fillStart": 0,
  510. "_fillRange": 0,
  511. "_isTrimmedMode": true,
  512. "_state": 0,
  513. "_atlas": {
  514. "__uuid__": "69625eba-6ba7-426a-a4d8-5b9d565a9e9b"
  515. },
  516. "_srcBlendFactor": 770,
  517. "_dstBlendFactor": 771,
  518. "_id": ""
  519. },
  520. {
  521. "__type__": "cc.Button",
  522. "_name": "",
  523. "_objFlags": 0,
  524. "node": {
  525. "__id__": 11
  526. },
  527. "_enabled": true,
  528. "duration": 0.1,
  529. "zoomScale": 1.2,
  530. "clickEvents": [
  531. {
  532. "__id__": 14
  533. }
  534. ],
  535. "_N$interactable": true,
  536. "_N$enableAutoGrayEffect": false,
  537. "_N$transition": 3,
  538. "transition": 3,
  539. "_N$normalColor": {
  540. "__type__": "cc.Color",
  541. "r": 230,
  542. "g": 230,
  543. "b": 230,
  544. "a": 255
  545. },
  546. "_N$pressedColor": {
  547. "__type__": "cc.Color",
  548. "r": 200,
  549. "g": 200,
  550. "b": 200,
  551. "a": 255
  552. },
  553. "pressedColor": {
  554. "__type__": "cc.Color",
  555. "r": 200,
  556. "g": 200,
  557. "b": 200,
  558. "a": 255
  559. },
  560. "_N$hoverColor": {
  561. "__type__": "cc.Color",
  562. "r": 255,
  563. "g": 255,
  564. "b": 255,
  565. "a": 255
  566. },
  567. "hoverColor": {
  568. "__type__": "cc.Color",
  569. "r": 255,
  570. "g": 255,
  571. "b": 255,
  572. "a": 255
  573. },
  574. "_N$disabledColor": {
  575. "__type__": "cc.Color",
  576. "r": 120,
  577. "g": 120,
  578. "b": 120,
  579. "a": 200
  580. },
  581. "_N$normalSprite": {
  582. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  583. },
  584. "_N$pressedSprite": {
  585. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  586. },
  587. "pressedSprite": {
  588. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  589. },
  590. "_N$hoverSprite": {
  591. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  592. },
  593. "hoverSprite": {
  594. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  595. },
  596. "_N$disabledSprite": {
  597. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  598. },
  599. "_N$target": null,
  600. "_id": ""
  601. },
  602. {
  603. "__type__": "cc.ClickEvent",
  604. "target": {
  605. "__id__": 1
  606. },
  607. "component": "",
  608. "_componentId": "4495aojZMBHxqGZ7aIISklf",
  609. "handler": "hide",
  610. "customEventData": ""
  611. },
  612. {
  613. "__type__": "cc.PrefabInfo",
  614. "root": {
  615. "__id__": 1
  616. },
  617. "asset": {
  618. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  619. },
  620. "fileId": "60qY693ypET7lzv5Y00BEU",
  621. "sync": false
  622. },
  623. {
  624. "__type__": "cc.Node",
  625. "_name": "tripLabel",
  626. "_objFlags": 0,
  627. "_parent": {
  628. "__id__": 7
  629. },
  630. "_children": [],
  631. "_active": true,
  632. "_level": 1,
  633. "_components": [
  634. {
  635. "__id__": 17
  636. }
  637. ],
  638. "_prefab": {
  639. "__id__": 18
  640. },
  641. "_opacity": 255,
  642. "_color": {
  643. "__type__": "cc.Color",
  644. "r": 120,
  645. "g": 71,
  646. "b": 4,
  647. "a": 255
  648. },
  649. "_contentSize": {
  650. "__type__": "cc.Size",
  651. "width": 160,
  652. "height": 45
  653. },
  654. "_anchorPoint": {
  655. "__type__": "cc.Vec2",
  656. "x": 0.5,
  657. "y": 0.5
  658. },
  659. "_quat": {
  660. "__type__": "cc.Quat",
  661. "x": 0,
  662. "y": 0,
  663. "z": 0,
  664. "w": 1
  665. },
  666. "_skewX": 0,
  667. "_skewY": 0,
  668. "groupIndex": 0,
  669. "_id": "",
  670. "_trs": {
  671. "__type__": "TypedArray",
  672. "ctor": "Float64Array",
  673. "array": [
  674. -273.2,
  675. 559.5,
  676. 0,
  677. 0,
  678. 0,
  679. 0,
  680. 1,
  681. 1,
  682. 1,
  683. 1
  684. ]
  685. }
  686. },
  687. {
  688. "__type__": "cc.Label",
  689. "_name": "",
  690. "_objFlags": 0,
  691. "node": {
  692. "__id__": 16
  693. },
  694. "_enabled": true,
  695. "_useOriginalSize": false,
  696. "_string": "我的余额",
  697. "_N$string": "我的余额",
  698. "_fontSize": 40,
  699. "_lineHeight": 45,
  700. "_enableWrapText": true,
  701. "_N$file": null,
  702. "_isSystemFontUsed": true,
  703. "_spacingX": 0,
  704. "_batchAsBitmap": false,
  705. "_N$horizontalAlign": 1,
  706. "_N$verticalAlign": 1,
  707. "_N$fontFamily": "Arial",
  708. "_N$overflow": 0,
  709. "_N$cacheMode": 0,
  710. "_id": ""
  711. },
  712. {
  713. "__type__": "cc.PrefabInfo",
  714. "root": {
  715. "__id__": 1
  716. },
  717. "asset": {
  718. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  719. },
  720. "fileId": "3fBGwVajtP249SiMix5aYU",
  721. "sync": false
  722. },
  723. {
  724. "__type__": "cc.Node",
  725. "_name": "balanceLabel",
  726. "_objFlags": 0,
  727. "_parent": {
  728. "__id__": 7
  729. },
  730. "_children": [],
  731. "_active": true,
  732. "_level": 1,
  733. "_components": [
  734. {
  735. "__id__": 20
  736. }
  737. ],
  738. "_prefab": {
  739. "__id__": 21
  740. },
  741. "_opacity": 255,
  742. "_color": {
  743. "__type__": "cc.Color",
  744. "r": 255,
  745. "g": 113,
  746. "b": 41,
  747. "a": 255
  748. },
  749. "_contentSize": {
  750. "__type__": "cc.Size",
  751. "width": 162.05,
  752. "height": 60
  753. },
  754. "_anchorPoint": {
  755. "__type__": "cc.Vec2",
  756. "x": 0.5,
  757. "y": 0.5
  758. },
  759. "_quat": {
  760. "__type__": "cc.Quat",
  761. "x": 0,
  762. "y": 0,
  763. "z": 0,
  764. "w": 1
  765. },
  766. "_skewX": 0,
  767. "_skewY": 0,
  768. "groupIndex": 0,
  769. "_id": "",
  770. "_trs": {
  771. "__type__": "TypedArray",
  772. "ctor": "Float64Array",
  773. "array": [
  774. -269,
  775. 485,
  776. 0,
  777. 0,
  778. 0,
  779. 0,
  780. 1,
  781. 1,
  782. 1,
  783. 1
  784. ]
  785. }
  786. },
  787. {
  788. "__type__": "cc.Label",
  789. "_name": "",
  790. "_objFlags": 0,
  791. "node": {
  792. "__id__": 19
  793. },
  794. "_enabled": true,
  795. "_useOriginalSize": false,
  796. "_string": "0.00元",
  797. "_N$string": "0.00元",
  798. "_fontSize": 55,
  799. "_lineHeight": 60,
  800. "_enableWrapText": true,
  801. "_N$file": null,
  802. "_isSystemFontUsed": true,
  803. "_spacingX": 0,
  804. "_batchAsBitmap": false,
  805. "_N$horizontalAlign": 1,
  806. "_N$verticalAlign": 1,
  807. "_N$fontFamily": "Arial",
  808. "_N$overflow": 0,
  809. "_N$cacheMode": 0,
  810. "_id": ""
  811. },
  812. {
  813. "__type__": "cc.PrefabInfo",
  814. "root": {
  815. "__id__": 1
  816. },
  817. "asset": {
  818. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  819. },
  820. "fileId": "8eE2LmK9VHQIzeUBOhB9ij",
  821. "sync": false
  822. },
  823. {
  824. "__type__": "cc.Node",
  825. "_name": "btnWithdrawal",
  826. "_objFlags": 0,
  827. "_parent": {
  828. "__id__": 7
  829. },
  830. "_children": [],
  831. "_active": true,
  832. "_level": 1,
  833. "_components": [
  834. {
  835. "__id__": 23
  836. },
  837. {
  838. "__id__": 24
  839. }
  840. ],
  841. "_prefab": {
  842. "__id__": 26
  843. },
  844. "_opacity": 255,
  845. "_color": {
  846. "__type__": "cc.Color",
  847. "r": 255,
  848. "g": 255,
  849. "b": 255,
  850. "a": 255
  851. },
  852. "_contentSize": {
  853. "__type__": "cc.Size",
  854. "width": 435,
  855. "height": 106
  856. },
  857. "_anchorPoint": {
  858. "__type__": "cc.Vec2",
  859. "x": 0.5,
  860. "y": 0.5
  861. },
  862. "_quat": {
  863. "__type__": "cc.Quat",
  864. "x": 0,
  865. "y": 0,
  866. "z": 0,
  867. "w": 1
  868. },
  869. "_skewX": 0,
  870. "_skewY": 0,
  871. "groupIndex": 0,
  872. "_id": "",
  873. "_trs": {
  874. "__type__": "TypedArray",
  875. "ctor": "Float64Array",
  876. "array": [
  877. 0,
  878. -77,
  879. 0,
  880. 0,
  881. 0,
  882. 0,
  883. 1,
  884. 1,
  885. 1,
  886. 1
  887. ]
  888. }
  889. },
  890. {
  891. "__type__": "cc.Sprite",
  892. "_name": "",
  893. "_objFlags": 0,
  894. "node": {
  895. "__id__": 22
  896. },
  897. "_enabled": true,
  898. "_spriteFrame": {
  899. "__uuid__": "337d3023-7c4a-46cf-940b-ebbd42fca96a"
  900. },
  901. "_type": 0,
  902. "_sizeMode": 1,
  903. "_fillType": 0,
  904. "_fillCenter": {
  905. "__type__": "cc.Vec2",
  906. "x": 0,
  907. "y": 0
  908. },
  909. "_fillStart": 0,
  910. "_fillRange": 0,
  911. "_isTrimmedMode": true,
  912. "_state": 0,
  913. "_atlas": {
  914. "__uuid__": "69625eba-6ba7-426a-a4d8-5b9d565a9e9b"
  915. },
  916. "_srcBlendFactor": 770,
  917. "_dstBlendFactor": 771,
  918. "_id": ""
  919. },
  920. {
  921. "__type__": "cc.Button",
  922. "_name": "",
  923. "_objFlags": 0,
  924. "node": {
  925. "__id__": 22
  926. },
  927. "_enabled": true,
  928. "duration": 0.1,
  929. "zoomScale": 1.2,
  930. "clickEvents": [
  931. {
  932. "__id__": 25
  933. }
  934. ],
  935. "_N$interactable": true,
  936. "_N$enableAutoGrayEffect": false,
  937. "_N$transition": 3,
  938. "transition": 3,
  939. "_N$normalColor": {
  940. "__type__": "cc.Color",
  941. "r": 214,
  942. "g": 214,
  943. "b": 214,
  944. "a": 255
  945. },
  946. "_N$pressedColor": {
  947. "__type__": "cc.Color",
  948. "r": 211,
  949. "g": 211,
  950. "b": 211,
  951. "a": 255
  952. },
  953. "pressedColor": {
  954. "__type__": "cc.Color",
  955. "r": 211,
  956. "g": 211,
  957. "b": 211,
  958. "a": 255
  959. },
  960. "_N$hoverColor": {
  961. "__type__": "cc.Color",
  962. "r": 255,
  963. "g": 255,
  964. "b": 255,
  965. "a": 255
  966. },
  967. "hoverColor": {
  968. "__type__": "cc.Color",
  969. "r": 255,
  970. "g": 255,
  971. "b": 255,
  972. "a": 255
  973. },
  974. "_N$disabledColor": {
  975. "__type__": "cc.Color",
  976. "r": 124,
  977. "g": 124,
  978. "b": 124,
  979. "a": 255
  980. },
  981. "_N$normalSprite": null,
  982. "_N$pressedSprite": null,
  983. "pressedSprite": null,
  984. "_N$hoverSprite": null,
  985. "hoverSprite": null,
  986. "_N$disabledSprite": null,
  987. "_N$target": null,
  988. "_id": ""
  989. },
  990. {
  991. "__type__": "cc.ClickEvent",
  992. "target": {
  993. "__id__": 1
  994. },
  995. "component": "",
  996. "_componentId": "4495aojZMBHxqGZ7aIISklf",
  997. "handler": "withDrawalMoney",
  998. "customEventData": ""
  999. },
  1000. {
  1001. "__type__": "cc.PrefabInfo",
  1002. "root": {
  1003. "__id__": 1
  1004. },
  1005. "asset": {
  1006. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  1007. },
  1008. "fileId": "34GoMzSZBM/aztvaPDkNVH",
  1009. "sync": false
  1010. },
  1011. {
  1012. "__type__": "cc.Node",
  1013. "_name": "WithdrawalPriceNodes",
  1014. "_objFlags": 0,
  1015. "_parent": {
  1016. "__id__": 7
  1017. },
  1018. "_children": [
  1019. {
  1020. "__id__": 28
  1021. },
  1022. {
  1023. "__id__": 44
  1024. },
  1025. {
  1026. "__id__": 54
  1027. },
  1028. {
  1029. "__id__": 70
  1030. }
  1031. ],
  1032. "_active": true,
  1033. "_level": 1,
  1034. "_components": [
  1035. {
  1036. "__id__": 80
  1037. }
  1038. ],
  1039. "_prefab": {
  1040. "__id__": 81
  1041. },
  1042. "_opacity": 255,
  1043. "_color": {
  1044. "__type__": "cc.Color",
  1045. "r": 255,
  1046. "g": 255,
  1047. "b": 255,
  1048. "a": 255
  1049. },
  1050. "_contentSize": {
  1051. "__type__": "cc.Size",
  1052. "width": 738,
  1053. "height": 411
  1054. },
  1055. "_anchorPoint": {
  1056. "__type__": "cc.Vec2",
  1057. "x": 0.5,
  1058. "y": 0.5
  1059. },
  1060. "_quat": {
  1061. "__type__": "cc.Quat",
  1062. "x": 0,
  1063. "y": 0,
  1064. "z": 0,
  1065. "w": 1
  1066. },
  1067. "_skewX": 0,
  1068. "_skewY": 0,
  1069. "groupIndex": 0,
  1070. "_id": "",
  1071. "_trs": {
  1072. "__type__": "TypedArray",
  1073. "ctor": "Float64Array",
  1074. "array": [
  1075. -2,
  1076. 244,
  1077. 0,
  1078. 0,
  1079. 0,
  1080. 0,
  1081. 1,
  1082. 1,
  1083. 1,
  1084. 1
  1085. ]
  1086. }
  1087. },
  1088. {
  1089. "__type__": "cc.Node",
  1090. "_name": "item1",
  1091. "_objFlags": 0,
  1092. "_parent": {
  1093. "__id__": 27
  1094. },
  1095. "_children": [
  1096. {
  1097. "__id__": 29
  1098. },
  1099. {
  1100. "__id__": 32
  1101. },
  1102. {
  1103. "__id__": 38
  1104. }
  1105. ],
  1106. "_active": true,
  1107. "_level": 2,
  1108. "_components": [
  1109. {
  1110. "__id__": 41
  1111. },
  1112. {
  1113. "__id__": 42
  1114. }
  1115. ],
  1116. "_prefab": {
  1117. "__id__": 43
  1118. },
  1119. "_opacity": 255,
  1120. "_color": {
  1121. "__type__": "cc.Color",
  1122. "r": 255,
  1123. "g": 255,
  1124. "b": 255,
  1125. "a": 255
  1126. },
  1127. "_contentSize": {
  1128. "__type__": "cc.Size",
  1129. "width": 326,
  1130. "height": 169
  1131. },
  1132. "_anchorPoint": {
  1133. "__type__": "cc.Vec2",
  1134. "x": 0.5,
  1135. "y": 0.5
  1136. },
  1137. "_quat": {
  1138. "__type__": "cc.Quat",
  1139. "x": 0,
  1140. "y": 0,
  1141. "z": 0,
  1142. "w": 1
  1143. },
  1144. "_skewX": 0,
  1145. "_skewY": 0,
  1146. "groupIndex": 0,
  1147. "_id": "",
  1148. "_trs": {
  1149. "__type__": "TypedArray",
  1150. "ctor": "Float64Array",
  1151. "array": [
  1152. -194,
  1153. 107,
  1154. 0,
  1155. 0,
  1156. 0,
  1157. 0,
  1158. 1,
  1159. 1,
  1160. 1,
  1161. 1
  1162. ]
  1163. }
  1164. },
  1165. {
  1166. "__type__": "cc.Node",
  1167. "_name": "selectedBg",
  1168. "_objFlags": 0,
  1169. "_parent": {
  1170. "__id__": 28
  1171. },
  1172. "_children": [],
  1173. "_active": false,
  1174. "_level": 3,
  1175. "_components": [
  1176. {
  1177. "__id__": 30
  1178. }
  1179. ],
  1180. "_prefab": {
  1181. "__id__": 31
  1182. },
  1183. "_opacity": 255,
  1184. "_color": {
  1185. "__type__": "cc.Color",
  1186. "r": 255,
  1187. "g": 255,
  1188. "b": 255,
  1189. "a": 255
  1190. },
  1191. "_contentSize": {
  1192. "__type__": "cc.Size",
  1193. "width": 326,
  1194. "height": 169
  1195. },
  1196. "_anchorPoint": {
  1197. "__type__": "cc.Vec2",
  1198. "x": 0.5,
  1199. "y": 0.5
  1200. },
  1201. "_quat": {
  1202. "__type__": "cc.Quat",
  1203. "x": 0,
  1204. "y": 0,
  1205. "z": 0,
  1206. "w": 1
  1207. },
  1208. "_skewX": 0,
  1209. "_skewY": 0,
  1210. "groupIndex": 0,
  1211. "_id": "",
  1212. "_trs": {
  1213. "__type__": "TypedArray",
  1214. "ctor": "Float64Array",
  1215. "array": [
  1216. 0,
  1217. 0,
  1218. 0,
  1219. 0,
  1220. 0,
  1221. 0,
  1222. 1,
  1223. 1,
  1224. 1,
  1225. 1
  1226. ]
  1227. }
  1228. },
  1229. {
  1230. "__type__": "cc.Sprite",
  1231. "_name": "",
  1232. "_objFlags": 0,
  1233. "node": {
  1234. "__id__": 29
  1235. },
  1236. "_enabled": true,
  1237. "_spriteFrame": {
  1238. "__uuid__": "aaf02428-1c2b-42bf-8aaf-1cb248f7a0f2"
  1239. },
  1240. "_type": 0,
  1241. "_sizeMode": 1,
  1242. "_fillType": 0,
  1243. "_fillCenter": {
  1244. "__type__": "cc.Vec2",
  1245. "x": 0,
  1246. "y": 0
  1247. },
  1248. "_fillStart": 0,
  1249. "_fillRange": 0,
  1250. "_isTrimmedMode": true,
  1251. "_state": 0,
  1252. "_atlas": {
  1253. "__uuid__": "69625eba-6ba7-426a-a4d8-5b9d565a9e9b"
  1254. },
  1255. "_srcBlendFactor": 770,
  1256. "_dstBlendFactor": 771,
  1257. "_id": ""
  1258. },
  1259. {
  1260. "__type__": "cc.PrefabInfo",
  1261. "root": {
  1262. "__id__": 1
  1263. },
  1264. "asset": {
  1265. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  1266. },
  1267. "fileId": "f3oZLX8I9ApYQcjPluviBt",
  1268. "sync": false
  1269. },
  1270. {
  1271. "__type__": "cc.Node",
  1272. "_name": "tixianLS",
  1273. "_objFlags": 0,
  1274. "_parent": {
  1275. "__id__": 28
  1276. },
  1277. "_children": [
  1278. {
  1279. "__id__": 33
  1280. }
  1281. ],
  1282. "_active": false,
  1283. "_level": 3,
  1284. "_components": [
  1285. {
  1286. "__id__": 36
  1287. }
  1288. ],
  1289. "_prefab": {
  1290. "__id__": 37
  1291. },
  1292. "_opacity": 255,
  1293. "_color": {
  1294. "__type__": "cc.Color",
  1295. "r": 255,
  1296. "g": 255,
  1297. "b": 255,
  1298. "a": 255
  1299. },
  1300. "_contentSize": {
  1301. "__type__": "cc.Size",
  1302. "width": 95,
  1303. "height": 44
  1304. },
  1305. "_anchorPoint": {
  1306. "__type__": "cc.Vec2",
  1307. "x": 0.5,
  1308. "y": 0.5
  1309. },
  1310. "_quat": {
  1311. "__type__": "cc.Quat",
  1312. "x": 0,
  1313. "y": 0,
  1314. "z": 0,
  1315. "w": 1
  1316. },
  1317. "_skewX": 0,
  1318. "_skewY": 0,
  1319. "groupIndex": 0,
  1320. "_id": "",
  1321. "_trs": {
  1322. "__type__": "TypedArray",
  1323. "ctor": "Float64Array",
  1324. "array": [
  1325. 115.2,
  1326. 62.1,
  1327. 0,
  1328. 0,
  1329. 0,
  1330. 0,
  1331. 1,
  1332. 1,
  1333. 1,
  1334. 1
  1335. ]
  1336. }
  1337. },
  1338. {
  1339. "__type__": "cc.Node",
  1340. "_name": "New Label",
  1341. "_objFlags": 0,
  1342. "_parent": {
  1343. "__id__": 32
  1344. },
  1345. "_children": [],
  1346. "_active": true,
  1347. "_level": 4,
  1348. "_components": [
  1349. {
  1350. "__id__": 34
  1351. }
  1352. ],
  1353. "_prefab": {
  1354. "__id__": 35
  1355. },
  1356. "_opacity": 255,
  1357. "_color": {
  1358. "__type__": "cc.Color",
  1359. "r": 255,
  1360. "g": 255,
  1361. "b": 255,
  1362. "a": 255
  1363. },
  1364. "_contentSize": {
  1365. "__type__": "cc.Size",
  1366. "width": 71.57,
  1367. "height": 40
  1368. },
  1369. "_anchorPoint": {
  1370. "__type__": "cc.Vec2",
  1371. "x": 0.5,
  1372. "y": 0.5
  1373. },
  1374. "_quat": {
  1375. "__type__": "cc.Quat",
  1376. "x": 0,
  1377. "y": 0,
  1378. "z": 0,
  1379. "w": 1
  1380. },
  1381. "_skewX": 0,
  1382. "_skewY": 0,
  1383. "groupIndex": 0,
  1384. "_id": "",
  1385. "_trs": {
  1386. "__type__": "TypedArray",
  1387. "ctor": "Float64Array",
  1388. "array": [
  1389. 0,
  1390. 0,
  1391. 0,
  1392. 0,
  1393. 0,
  1394. 0,
  1395. 1,
  1396. 1,
  1397. 1,
  1398. 1
  1399. ]
  1400. }
  1401. },
  1402. {
  1403. "__type__": "cc.Label",
  1404. "_name": "",
  1405. "_objFlags": 0,
  1406. "node": {
  1407. "__id__": 33
  1408. },
  1409. "_enabled": true,
  1410. "_useOriginalSize": false,
  1411. "_string": "剩1次",
  1412. "_N$string": "剩1次",
  1413. "_fontSize": 28,
  1414. "_lineHeight": 40,
  1415. "_enableWrapText": true,
  1416. "_N$file": null,
  1417. "_isSystemFontUsed": true,
  1418. "_spacingX": 0,
  1419. "_batchAsBitmap": false,
  1420. "_N$horizontalAlign": 1,
  1421. "_N$verticalAlign": 1,
  1422. "_N$fontFamily": "Arial",
  1423. "_N$overflow": 0,
  1424. "_N$cacheMode": 0,
  1425. "_id": ""
  1426. },
  1427. {
  1428. "__type__": "cc.PrefabInfo",
  1429. "root": {
  1430. "__id__": 1
  1431. },
  1432. "asset": {
  1433. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  1434. },
  1435. "fileId": "37Q9fOhtRNTYOvCb4r31kJ",
  1436. "sync": false
  1437. },
  1438. {
  1439. "__type__": "cc.Sprite",
  1440. "_name": "",
  1441. "_objFlags": 0,
  1442. "node": {
  1443. "__id__": 32
  1444. },
  1445. "_enabled": true,
  1446. "_spriteFrame": {
  1447. "__uuid__": "286f6016-7cea-41d1-b2b9-bf3c6a63e62e"
  1448. },
  1449. "_type": 0,
  1450. "_sizeMode": 1,
  1451. "_fillType": 0,
  1452. "_fillCenter": {
  1453. "__type__": "cc.Vec2",
  1454. "x": 0,
  1455. "y": 0
  1456. },
  1457. "_fillStart": 0,
  1458. "_fillRange": 0,
  1459. "_isTrimmedMode": true,
  1460. "_state": 0,
  1461. "_atlas": {
  1462. "__uuid__": "69625eba-6ba7-426a-a4d8-5b9d565a9e9b"
  1463. },
  1464. "_srcBlendFactor": 770,
  1465. "_dstBlendFactor": 771,
  1466. "_id": ""
  1467. },
  1468. {
  1469. "__type__": "cc.PrefabInfo",
  1470. "root": {
  1471. "__id__": 1
  1472. },
  1473. "asset": {
  1474. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  1475. },
  1476. "fileId": "3an8iwMGdLp6N2bcD+QNyk",
  1477. "sync": false
  1478. },
  1479. {
  1480. "__type__": "cc.Node",
  1481. "_name": "PriceLbl",
  1482. "_objFlags": 0,
  1483. "_parent": {
  1484. "__id__": 28
  1485. },
  1486. "_children": [],
  1487. "_active": true,
  1488. "_level": 3,
  1489. "_components": [
  1490. {
  1491. "__id__": 39
  1492. }
  1493. ],
  1494. "_prefab": {
  1495. "__id__": 40
  1496. },
  1497. "_opacity": 255,
  1498. "_color": {
  1499. "__type__": "cc.Color",
  1500. "r": 120,
  1501. "g": 71,
  1502. "b": 4,
  1503. "a": 255
  1504. },
  1505. "_contentSize": {
  1506. "__type__": "cc.Size",
  1507. "width": 147.31,
  1508. "height": 50
  1509. },
  1510. "_anchorPoint": {
  1511. "__type__": "cc.Vec2",
  1512. "x": 0.5,
  1513. "y": 0.5
  1514. },
  1515. "_quat": {
  1516. "__type__": "cc.Quat",
  1517. "x": 0,
  1518. "y": 0,
  1519. "z": 0,
  1520. "w": 1
  1521. },
  1522. "_skewX": 0,
  1523. "_skewY": 0,
  1524. "groupIndex": 0,
  1525. "_id": "",
  1526. "_trs": {
  1527. "__type__": "TypedArray",
  1528. "ctor": "Float64Array",
  1529. "array": [
  1530. 0,
  1531. 0,
  1532. 0,
  1533. 0,
  1534. 0,
  1535. 0,
  1536. 1,
  1537. 1,
  1538. 1,
  1539. 1
  1540. ]
  1541. }
  1542. },
  1543. {
  1544. "__type__": "cc.Label",
  1545. "_name": "",
  1546. "_objFlags": 0,
  1547. "node": {
  1548. "__id__": 38
  1549. },
  1550. "_enabled": true,
  1551. "_useOriginalSize": false,
  1552. "_string": "0.01元",
  1553. "_N$string": "0.01元",
  1554. "_fontSize": 50,
  1555. "_lineHeight": 50,
  1556. "_enableWrapText": true,
  1557. "_N$file": null,
  1558. "_isSystemFontUsed": true,
  1559. "_spacingX": 0,
  1560. "_batchAsBitmap": false,
  1561. "_N$horizontalAlign": 1,
  1562. "_N$verticalAlign": 1,
  1563. "_N$fontFamily": "Arial",
  1564. "_N$overflow": 0,
  1565. "_N$cacheMode": 0,
  1566. "_id": ""
  1567. },
  1568. {
  1569. "__type__": "cc.PrefabInfo",
  1570. "root": {
  1571. "__id__": 1
  1572. },
  1573. "asset": {
  1574. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  1575. },
  1576. "fileId": "c8b5MujiNDGZfHqwoIxNQp",
  1577. "sync": false
  1578. },
  1579. {
  1580. "__type__": "cc.Sprite",
  1581. "_name": "",
  1582. "_objFlags": 0,
  1583. "node": {
  1584. "__id__": 28
  1585. },
  1586. "_enabled": true,
  1587. "_spriteFrame": {
  1588. "__uuid__": "4ff4edcb-09fe-4abe-914a-d708d5fe425b"
  1589. },
  1590. "_type": 0,
  1591. "_sizeMode": 1,
  1592. "_fillType": 0,
  1593. "_fillCenter": {
  1594. "__type__": "cc.Vec2",
  1595. "x": 0,
  1596. "y": 0
  1597. },
  1598. "_fillStart": 0,
  1599. "_fillRange": 0,
  1600. "_isTrimmedMode": true,
  1601. "_state": 0,
  1602. "_atlas": {
  1603. "__uuid__": "69625eba-6ba7-426a-a4d8-5b9d565a9e9b"
  1604. },
  1605. "_srcBlendFactor": 770,
  1606. "_dstBlendFactor": 771,
  1607. "_id": ""
  1608. },
  1609. {
  1610. "__type__": "cc.Button",
  1611. "_name": "",
  1612. "_objFlags": 0,
  1613. "node": {
  1614. "__id__": 28
  1615. },
  1616. "_enabled": true,
  1617. "duration": 0.1,
  1618. "zoomScale": 1.2,
  1619. "clickEvents": [],
  1620. "_N$interactable": true,
  1621. "_N$enableAutoGrayEffect": false,
  1622. "_N$transition": 3,
  1623. "transition": 3,
  1624. "_N$normalColor": {
  1625. "__type__": "cc.Color",
  1626. "r": 214,
  1627. "g": 214,
  1628. "b": 214,
  1629. "a": 255
  1630. },
  1631. "_N$pressedColor": {
  1632. "__type__": "cc.Color",
  1633. "r": 211,
  1634. "g": 211,
  1635. "b": 211,
  1636. "a": 255
  1637. },
  1638. "pressedColor": {
  1639. "__type__": "cc.Color",
  1640. "r": 211,
  1641. "g": 211,
  1642. "b": 211,
  1643. "a": 255
  1644. },
  1645. "_N$hoverColor": {
  1646. "__type__": "cc.Color",
  1647. "r": 255,
  1648. "g": 255,
  1649. "b": 255,
  1650. "a": 255
  1651. },
  1652. "hoverColor": {
  1653. "__type__": "cc.Color",
  1654. "r": 255,
  1655. "g": 255,
  1656. "b": 255,
  1657. "a": 255
  1658. },
  1659. "_N$disabledColor": {
  1660. "__type__": "cc.Color",
  1661. "r": 124,
  1662. "g": 124,
  1663. "b": 124,
  1664. "a": 255
  1665. },
  1666. "_N$normalSprite": null,
  1667. "_N$pressedSprite": null,
  1668. "pressedSprite": null,
  1669. "_N$hoverSprite": null,
  1670. "hoverSprite": null,
  1671. "_N$disabledSprite": null,
  1672. "_N$target": null,
  1673. "_id": ""
  1674. },
  1675. {
  1676. "__type__": "cc.PrefabInfo",
  1677. "root": {
  1678. "__id__": 1
  1679. },
  1680. "asset": {
  1681. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  1682. },
  1683. "fileId": "7bwbXdEYNCq5QMelpssiiX",
  1684. "sync": false
  1685. },
  1686. {
  1687. "__type__": "cc.Node",
  1688. "_name": "item2",
  1689. "_objFlags": 0,
  1690. "_parent": {
  1691. "__id__": 27
  1692. },
  1693. "_children": [
  1694. {
  1695. "__id__": 45
  1696. },
  1697. {
  1698. "__id__": 48
  1699. }
  1700. ],
  1701. "_active": true,
  1702. "_level": 2,
  1703. "_components": [
  1704. {
  1705. "__id__": 51
  1706. },
  1707. {
  1708. "__id__": 52
  1709. }
  1710. ],
  1711. "_prefab": {
  1712. "__id__": 53
  1713. },
  1714. "_opacity": 255,
  1715. "_color": {
  1716. "__type__": "cc.Color",
  1717. "r": 255,
  1718. "g": 255,
  1719. "b": 255,
  1720. "a": 255
  1721. },
  1722. "_contentSize": {
  1723. "__type__": "cc.Size",
  1724. "width": 326,
  1725. "height": 169
  1726. },
  1727. "_anchorPoint": {
  1728. "__type__": "cc.Vec2",
  1729. "x": 0.5,
  1730. "y": 0.5
  1731. },
  1732. "_quat": {
  1733. "__type__": "cc.Quat",
  1734. "x": 0,
  1735. "y": 0,
  1736. "z": 0,
  1737. "w": 1
  1738. },
  1739. "_skewX": 0,
  1740. "_skewY": 0,
  1741. "groupIndex": 0,
  1742. "_id": "",
  1743. "_trs": {
  1744. "__type__": "TypedArray",
  1745. "ctor": "Float64Array",
  1746. "array": [
  1747. 183,
  1748. 107,
  1749. 0,
  1750. 0,
  1751. 0,
  1752. 0,
  1753. 1,
  1754. 1,
  1755. 1,
  1756. 1
  1757. ]
  1758. }
  1759. },
  1760. {
  1761. "__type__": "cc.Node",
  1762. "_name": "selectedBg",
  1763. "_objFlags": 0,
  1764. "_parent": {
  1765. "__id__": 44
  1766. },
  1767. "_children": [],
  1768. "_active": false,
  1769. "_level": 3,
  1770. "_components": [
  1771. {
  1772. "__id__": 46
  1773. }
  1774. ],
  1775. "_prefab": {
  1776. "__id__": 47
  1777. },
  1778. "_opacity": 255,
  1779. "_color": {
  1780. "__type__": "cc.Color",
  1781. "r": 255,
  1782. "g": 255,
  1783. "b": 255,
  1784. "a": 255
  1785. },
  1786. "_contentSize": {
  1787. "__type__": "cc.Size",
  1788. "width": 326,
  1789. "height": 169
  1790. },
  1791. "_anchorPoint": {
  1792. "__type__": "cc.Vec2",
  1793. "x": 0.5,
  1794. "y": 0.5
  1795. },
  1796. "_quat": {
  1797. "__type__": "cc.Quat",
  1798. "x": 0,
  1799. "y": 0,
  1800. "z": 0,
  1801. "w": 1
  1802. },
  1803. "_skewX": 0,
  1804. "_skewY": 0,
  1805. "groupIndex": 0,
  1806. "_id": "",
  1807. "_trs": {
  1808. "__type__": "TypedArray",
  1809. "ctor": "Float64Array",
  1810. "array": [
  1811. 0,
  1812. 0,
  1813. 0,
  1814. 0,
  1815. 0,
  1816. 0,
  1817. 1,
  1818. 1,
  1819. 1,
  1820. 1
  1821. ]
  1822. }
  1823. },
  1824. {
  1825. "__type__": "cc.Sprite",
  1826. "_name": "",
  1827. "_objFlags": 0,
  1828. "node": {
  1829. "__id__": 45
  1830. },
  1831. "_enabled": true,
  1832. "_spriteFrame": {
  1833. "__uuid__": "aaf02428-1c2b-42bf-8aaf-1cb248f7a0f2"
  1834. },
  1835. "_type": 0,
  1836. "_sizeMode": 1,
  1837. "_fillType": 0,
  1838. "_fillCenter": {
  1839. "__type__": "cc.Vec2",
  1840. "x": 0,
  1841. "y": 0
  1842. },
  1843. "_fillStart": 0,
  1844. "_fillRange": 0,
  1845. "_isTrimmedMode": true,
  1846. "_state": 0,
  1847. "_atlas": {
  1848. "__uuid__": "69625eba-6ba7-426a-a4d8-5b9d565a9e9b"
  1849. },
  1850. "_srcBlendFactor": 770,
  1851. "_dstBlendFactor": 771,
  1852. "_id": ""
  1853. },
  1854. {
  1855. "__type__": "cc.PrefabInfo",
  1856. "root": {
  1857. "__id__": 1
  1858. },
  1859. "asset": {
  1860. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  1861. },
  1862. "fileId": "9b55oPssRDibjJuweRkzTB",
  1863. "sync": false
  1864. },
  1865. {
  1866. "__type__": "cc.Node",
  1867. "_name": "PriceLbl",
  1868. "_objFlags": 0,
  1869. "_parent": {
  1870. "__id__": 44
  1871. },
  1872. "_children": [],
  1873. "_active": true,
  1874. "_level": 3,
  1875. "_components": [
  1876. {
  1877. "__id__": 49
  1878. }
  1879. ],
  1880. "_prefab": {
  1881. "__id__": 50
  1882. },
  1883. "_opacity": 255,
  1884. "_color": {
  1885. "__type__": "cc.Color",
  1886. "r": 120,
  1887. "g": 71,
  1888. "b": 4,
  1889. "a": 255
  1890. },
  1891. "_contentSize": {
  1892. "__type__": "cc.Size",
  1893. "width": 147.31,
  1894. "height": 50
  1895. },
  1896. "_anchorPoint": {
  1897. "__type__": "cc.Vec2",
  1898. "x": 0.5,
  1899. "y": 0.5
  1900. },
  1901. "_quat": {
  1902. "__type__": "cc.Quat",
  1903. "x": 0,
  1904. "y": 0,
  1905. "z": 0,
  1906. "w": 1
  1907. },
  1908. "_skewX": 0,
  1909. "_skewY": 0,
  1910. "groupIndex": 0,
  1911. "_id": "",
  1912. "_trs": {
  1913. "__type__": "TypedArray",
  1914. "ctor": "Float64Array",
  1915. "array": [
  1916. 0,
  1917. 0,
  1918. 0,
  1919. 0,
  1920. 0,
  1921. 0,
  1922. 1,
  1923. 1,
  1924. 1,
  1925. 1
  1926. ]
  1927. }
  1928. },
  1929. {
  1930. "__type__": "cc.Label",
  1931. "_name": "",
  1932. "_objFlags": 0,
  1933. "node": {
  1934. "__id__": 48
  1935. },
  1936. "_enabled": true,
  1937. "_useOriginalSize": false,
  1938. "_string": "0.01元",
  1939. "_N$string": "0.01元",
  1940. "_fontSize": 50,
  1941. "_lineHeight": 50,
  1942. "_enableWrapText": true,
  1943. "_N$file": null,
  1944. "_isSystemFontUsed": true,
  1945. "_spacingX": 0,
  1946. "_batchAsBitmap": false,
  1947. "_N$horizontalAlign": 1,
  1948. "_N$verticalAlign": 1,
  1949. "_N$fontFamily": "Arial",
  1950. "_N$overflow": 0,
  1951. "_N$cacheMode": 0,
  1952. "_id": ""
  1953. },
  1954. {
  1955. "__type__": "cc.PrefabInfo",
  1956. "root": {
  1957. "__id__": 1
  1958. },
  1959. "asset": {
  1960. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  1961. },
  1962. "fileId": "f6fEQ0NQVEk5RJwD+hMueZ",
  1963. "sync": false
  1964. },
  1965. {
  1966. "__type__": "cc.Sprite",
  1967. "_name": "",
  1968. "_objFlags": 0,
  1969. "node": {
  1970. "__id__": 44
  1971. },
  1972. "_enabled": true,
  1973. "_spriteFrame": {
  1974. "__uuid__": "4ff4edcb-09fe-4abe-914a-d708d5fe425b"
  1975. },
  1976. "_type": 0,
  1977. "_sizeMode": 1,
  1978. "_fillType": 0,
  1979. "_fillCenter": {
  1980. "__type__": "cc.Vec2",
  1981. "x": 0,
  1982. "y": 0
  1983. },
  1984. "_fillStart": 0,
  1985. "_fillRange": 0,
  1986. "_isTrimmedMode": true,
  1987. "_state": 0,
  1988. "_atlas": {
  1989. "__uuid__": "69625eba-6ba7-426a-a4d8-5b9d565a9e9b"
  1990. },
  1991. "_srcBlendFactor": 770,
  1992. "_dstBlendFactor": 771,
  1993. "_id": ""
  1994. },
  1995. {
  1996. "__type__": "cc.Button",
  1997. "_name": "",
  1998. "_objFlags": 0,
  1999. "node": {
  2000. "__id__": 44
  2001. },
  2002. "_enabled": true,
  2003. "duration": 0.1,
  2004. "zoomScale": 1.2,
  2005. "clickEvents": [],
  2006. "_N$interactable": true,
  2007. "_N$enableAutoGrayEffect": false,
  2008. "_N$transition": 3,
  2009. "transition": 3,
  2010. "_N$normalColor": {
  2011. "__type__": "cc.Color",
  2012. "r": 214,
  2013. "g": 214,
  2014. "b": 214,
  2015. "a": 255
  2016. },
  2017. "_N$pressedColor": {
  2018. "__type__": "cc.Color",
  2019. "r": 211,
  2020. "g": 211,
  2021. "b": 211,
  2022. "a": 255
  2023. },
  2024. "pressedColor": {
  2025. "__type__": "cc.Color",
  2026. "r": 211,
  2027. "g": 211,
  2028. "b": 211,
  2029. "a": 255
  2030. },
  2031. "_N$hoverColor": {
  2032. "__type__": "cc.Color",
  2033. "r": 255,
  2034. "g": 255,
  2035. "b": 255,
  2036. "a": 255
  2037. },
  2038. "hoverColor": {
  2039. "__type__": "cc.Color",
  2040. "r": 255,
  2041. "g": 255,
  2042. "b": 255,
  2043. "a": 255
  2044. },
  2045. "_N$disabledColor": {
  2046. "__type__": "cc.Color",
  2047. "r": 124,
  2048. "g": 124,
  2049. "b": 124,
  2050. "a": 255
  2051. },
  2052. "_N$normalSprite": null,
  2053. "_N$pressedSprite": null,
  2054. "pressedSprite": null,
  2055. "_N$hoverSprite": null,
  2056. "hoverSprite": null,
  2057. "_N$disabledSprite": null,
  2058. "_N$target": null,
  2059. "_id": ""
  2060. },
  2061. {
  2062. "__type__": "cc.PrefabInfo",
  2063. "root": {
  2064. "__id__": 1
  2065. },
  2066. "asset": {
  2067. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  2068. },
  2069. "fileId": "ddE9NB31hEPq6rBCfqtLjJ",
  2070. "sync": false
  2071. },
  2072. {
  2073. "__type__": "cc.Node",
  2074. "_name": "item3",
  2075. "_objFlags": 0,
  2076. "_parent": {
  2077. "__id__": 27
  2078. },
  2079. "_children": [
  2080. {
  2081. "__id__": 55
  2082. },
  2083. {
  2084. "__id__": 58
  2085. },
  2086. {
  2087. "__id__": 64
  2088. }
  2089. ],
  2090. "_active": true,
  2091. "_level": 2,
  2092. "_components": [
  2093. {
  2094. "__id__": 67
  2095. },
  2096. {
  2097. "__id__": 68
  2098. }
  2099. ],
  2100. "_prefab": {
  2101. "__id__": 69
  2102. },
  2103. "_opacity": 255,
  2104. "_color": {
  2105. "__type__": "cc.Color",
  2106. "r": 255,
  2107. "g": 255,
  2108. "b": 255,
  2109. "a": 255
  2110. },
  2111. "_contentSize": {
  2112. "__type__": "cc.Size",
  2113. "width": 326,
  2114. "height": 169
  2115. },
  2116. "_anchorPoint": {
  2117. "__type__": "cc.Vec2",
  2118. "x": 0.5,
  2119. "y": 0.5
  2120. },
  2121. "_quat": {
  2122. "__type__": "cc.Quat",
  2123. "x": 0,
  2124. "y": 0,
  2125. "z": 0,
  2126. "w": 1
  2127. },
  2128. "_skewX": 0,
  2129. "_skewY": 0,
  2130. "groupIndex": 0,
  2131. "_id": "",
  2132. "_trs": {
  2133. "__type__": "TypedArray",
  2134. "ctor": "Float64Array",
  2135. "array": [
  2136. -198,
  2137. -103,
  2138. 0,
  2139. 0,
  2140. 0,
  2141. 0,
  2142. 1,
  2143. 1,
  2144. 1,
  2145. 1
  2146. ]
  2147. }
  2148. },
  2149. {
  2150. "__type__": "cc.Node",
  2151. "_name": "selectedBg",
  2152. "_objFlags": 0,
  2153. "_parent": {
  2154. "__id__": 54
  2155. },
  2156. "_children": [],
  2157. "_active": false,
  2158. "_level": 3,
  2159. "_components": [
  2160. {
  2161. "__id__": 56
  2162. }
  2163. ],
  2164. "_prefab": {
  2165. "__id__": 57
  2166. },
  2167. "_opacity": 255,
  2168. "_color": {
  2169. "__type__": "cc.Color",
  2170. "r": 255,
  2171. "g": 255,
  2172. "b": 255,
  2173. "a": 255
  2174. },
  2175. "_contentSize": {
  2176. "__type__": "cc.Size",
  2177. "width": 326,
  2178. "height": 169
  2179. },
  2180. "_anchorPoint": {
  2181. "__type__": "cc.Vec2",
  2182. "x": 0.5,
  2183. "y": 0.5
  2184. },
  2185. "_quat": {
  2186. "__type__": "cc.Quat",
  2187. "x": 0,
  2188. "y": 0,
  2189. "z": 0,
  2190. "w": 1
  2191. },
  2192. "_skewX": 0,
  2193. "_skewY": 0,
  2194. "groupIndex": 0,
  2195. "_id": "",
  2196. "_trs": {
  2197. "__type__": "TypedArray",
  2198. "ctor": "Float64Array",
  2199. "array": [
  2200. 0,
  2201. 0,
  2202. 0,
  2203. 0,
  2204. 0,
  2205. 0,
  2206. 1,
  2207. 1,
  2208. 1,
  2209. 1
  2210. ]
  2211. }
  2212. },
  2213. {
  2214. "__type__": "cc.Sprite",
  2215. "_name": "",
  2216. "_objFlags": 0,
  2217. "node": {
  2218. "__id__": 55
  2219. },
  2220. "_enabled": true,
  2221. "_spriteFrame": {
  2222. "__uuid__": "aaf02428-1c2b-42bf-8aaf-1cb248f7a0f2"
  2223. },
  2224. "_type": 0,
  2225. "_sizeMode": 1,
  2226. "_fillType": 0,
  2227. "_fillCenter": {
  2228. "__type__": "cc.Vec2",
  2229. "x": 0,
  2230. "y": 0
  2231. },
  2232. "_fillStart": 0,
  2233. "_fillRange": 0,
  2234. "_isTrimmedMode": true,
  2235. "_state": 0,
  2236. "_atlas": {
  2237. "__uuid__": "69625eba-6ba7-426a-a4d8-5b9d565a9e9b"
  2238. },
  2239. "_srcBlendFactor": 770,
  2240. "_dstBlendFactor": 771,
  2241. "_id": ""
  2242. },
  2243. {
  2244. "__type__": "cc.PrefabInfo",
  2245. "root": {
  2246. "__id__": 1
  2247. },
  2248. "asset": {
  2249. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  2250. },
  2251. "fileId": "199aPj5zlMTKgNpcX5xaX1",
  2252. "sync": false
  2253. },
  2254. {
  2255. "__type__": "cc.Node",
  2256. "_name": "tixianLS",
  2257. "_objFlags": 0,
  2258. "_parent": {
  2259. "__id__": 54
  2260. },
  2261. "_children": [
  2262. {
  2263. "__id__": 59
  2264. }
  2265. ],
  2266. "_active": true,
  2267. "_level": 3,
  2268. "_components": [
  2269. {
  2270. "__id__": 62
  2271. }
  2272. ],
  2273. "_prefab": {
  2274. "__id__": 63
  2275. },
  2276. "_opacity": 255,
  2277. "_color": {
  2278. "__type__": "cc.Color",
  2279. "r": 255,
  2280. "g": 255,
  2281. "b": 255,
  2282. "a": 255
  2283. },
  2284. "_contentSize": {
  2285. "__type__": "cc.Size",
  2286. "width": 140,
  2287. "height": 44
  2288. },
  2289. "_anchorPoint": {
  2290. "__type__": "cc.Vec2",
  2291. "x": 0.5,
  2292. "y": 0.5
  2293. },
  2294. "_quat": {
  2295. "__type__": "cc.Quat",
  2296. "x": 0,
  2297. "y": 0,
  2298. "z": 0,
  2299. "w": 1
  2300. },
  2301. "_skewX": 0,
  2302. "_skewY": 0,
  2303. "groupIndex": 0,
  2304. "_id": "",
  2305. "_trs": {
  2306. "__type__": "TypedArray",
  2307. "ctor": "Float64Array",
  2308. "array": [
  2309. -93,
  2310. 62,
  2311. 0,
  2312. 0,
  2313. 0,
  2314. 0,
  2315. 1,
  2316. 1,
  2317. 1,
  2318. 1
  2319. ]
  2320. }
  2321. },
  2322. {
  2323. "__type__": "cc.Node",
  2324. "_name": "New Label",
  2325. "_objFlags": 0,
  2326. "_parent": {
  2327. "__id__": 58
  2328. },
  2329. "_children": [],
  2330. "_active": true,
  2331. "_level": 4,
  2332. "_components": [
  2333. {
  2334. "__id__": 60
  2335. }
  2336. ],
  2337. "_prefab": {
  2338. "__id__": 61
  2339. },
  2340. "_opacity": 255,
  2341. "_color": {
  2342. "__type__": "cc.Color",
  2343. "r": 255,
  2344. "g": 255,
  2345. "b": 255,
  2346. "a": 255
  2347. },
  2348. "_contentSize": {
  2349. "__type__": "cc.Size",
  2350. "width": 115.14,
  2351. "height": 40
  2352. },
  2353. "_anchorPoint": {
  2354. "__type__": "cc.Vec2",
  2355. "x": 0.5,
  2356. "y": 0.5
  2357. },
  2358. "_quat": {
  2359. "__type__": "cc.Quat",
  2360. "x": 0,
  2361. "y": 0,
  2362. "z": 0,
  2363. "w": 1
  2364. },
  2365. "_skewX": 0,
  2366. "_skewY": 0,
  2367. "groupIndex": 0,
  2368. "_id": "",
  2369. "_trs": {
  2370. "__type__": "TypedArray",
  2371. "ctor": "Float64Array",
  2372. "array": [
  2373. 0,
  2374. 0,
  2375. 0,
  2376. 0,
  2377. 0,
  2378. 0,
  2379. 1,
  2380. 1,
  2381. 1,
  2382. 1
  2383. ]
  2384. }
  2385. },
  2386. {
  2387. "__type__": "cc.Label",
  2388. "_name": "",
  2389. "_objFlags": 0,
  2390. "node": {
  2391. "__id__": 59
  2392. },
  2393. "_enabled": true,
  2394. "_useOriginalSize": false,
  2395. "_string": "加送15元",
  2396. "_N$string": "加送15元",
  2397. "_fontSize": 28,
  2398. "_lineHeight": 40,
  2399. "_enableWrapText": true,
  2400. "_N$file": null,
  2401. "_isSystemFontUsed": true,
  2402. "_spacingX": 0,
  2403. "_batchAsBitmap": false,
  2404. "_N$horizontalAlign": 1,
  2405. "_N$verticalAlign": 1,
  2406. "_N$fontFamily": "Arial",
  2407. "_N$overflow": 0,
  2408. "_N$cacheMode": 0,
  2409. "_id": ""
  2410. },
  2411. {
  2412. "__type__": "cc.PrefabInfo",
  2413. "root": {
  2414. "__id__": 1
  2415. },
  2416. "asset": {
  2417. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  2418. },
  2419. "fileId": "52teiCwcNDjqxILq1g+MkC",
  2420. "sync": false
  2421. },
  2422. {
  2423. "__type__": "cc.Sprite",
  2424. "_name": "",
  2425. "_objFlags": 0,
  2426. "node": {
  2427. "__id__": 58
  2428. },
  2429. "_enabled": true,
  2430. "_spriteFrame": {
  2431. "__uuid__": "7ee9ede9-e390-4fa8-9e0f-9b2f078df764"
  2432. },
  2433. "_type": 0,
  2434. "_sizeMode": 1,
  2435. "_fillType": 0,
  2436. "_fillCenter": {
  2437. "__type__": "cc.Vec2",
  2438. "x": 0,
  2439. "y": 0
  2440. },
  2441. "_fillStart": 0,
  2442. "_fillRange": 0,
  2443. "_isTrimmedMode": true,
  2444. "_state": 0,
  2445. "_atlas": {
  2446. "__uuid__": "69625eba-6ba7-426a-a4d8-5b9d565a9e9b"
  2447. },
  2448. "_srcBlendFactor": 770,
  2449. "_dstBlendFactor": 771,
  2450. "_id": ""
  2451. },
  2452. {
  2453. "__type__": "cc.PrefabInfo",
  2454. "root": {
  2455. "__id__": 1
  2456. },
  2457. "asset": {
  2458. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  2459. },
  2460. "fileId": "7aiy2KlD1NIo9Lx/QPcmHX",
  2461. "sync": false
  2462. },
  2463. {
  2464. "__type__": "cc.Node",
  2465. "_name": "PriceLbl",
  2466. "_objFlags": 0,
  2467. "_parent": {
  2468. "__id__": 54
  2469. },
  2470. "_children": [],
  2471. "_active": true,
  2472. "_level": 3,
  2473. "_components": [
  2474. {
  2475. "__id__": 65
  2476. }
  2477. ],
  2478. "_prefab": {
  2479. "__id__": 66
  2480. },
  2481. "_opacity": 255,
  2482. "_color": {
  2483. "__type__": "cc.Color",
  2484. "r": 120,
  2485. "g": 71,
  2486. "b": 4,
  2487. "a": 255
  2488. },
  2489. "_contentSize": {
  2490. "__type__": "cc.Size",
  2491. "width": 147.31,
  2492. "height": 50
  2493. },
  2494. "_anchorPoint": {
  2495. "__type__": "cc.Vec2",
  2496. "x": 0.5,
  2497. "y": 0.5
  2498. },
  2499. "_quat": {
  2500. "__type__": "cc.Quat",
  2501. "x": 0,
  2502. "y": 0,
  2503. "z": 0,
  2504. "w": 1
  2505. },
  2506. "_skewX": 0,
  2507. "_skewY": 0,
  2508. "groupIndex": 0,
  2509. "_id": "",
  2510. "_trs": {
  2511. "__type__": "TypedArray",
  2512. "ctor": "Float64Array",
  2513. "array": [
  2514. 0,
  2515. 0,
  2516. 0,
  2517. 0,
  2518. 0,
  2519. 0,
  2520. 1,
  2521. 1,
  2522. 1,
  2523. 1
  2524. ]
  2525. }
  2526. },
  2527. {
  2528. "__type__": "cc.Label",
  2529. "_name": "",
  2530. "_objFlags": 0,
  2531. "node": {
  2532. "__id__": 64
  2533. },
  2534. "_enabled": true,
  2535. "_useOriginalSize": false,
  2536. "_string": "0.01元",
  2537. "_N$string": "0.01元",
  2538. "_fontSize": 50,
  2539. "_lineHeight": 50,
  2540. "_enableWrapText": true,
  2541. "_N$file": null,
  2542. "_isSystemFontUsed": true,
  2543. "_spacingX": 0,
  2544. "_batchAsBitmap": false,
  2545. "_N$horizontalAlign": 1,
  2546. "_N$verticalAlign": 1,
  2547. "_N$fontFamily": "Arial",
  2548. "_N$overflow": 0,
  2549. "_N$cacheMode": 0,
  2550. "_id": ""
  2551. },
  2552. {
  2553. "__type__": "cc.PrefabInfo",
  2554. "root": {
  2555. "__id__": 1
  2556. },
  2557. "asset": {
  2558. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  2559. },
  2560. "fileId": "b6pFdGjN9N56kcD7sbGBew",
  2561. "sync": false
  2562. },
  2563. {
  2564. "__type__": "cc.Sprite",
  2565. "_name": "",
  2566. "_objFlags": 0,
  2567. "node": {
  2568. "__id__": 54
  2569. },
  2570. "_enabled": true,
  2571. "_spriteFrame": {
  2572. "__uuid__": "4ff4edcb-09fe-4abe-914a-d708d5fe425b"
  2573. },
  2574. "_type": 0,
  2575. "_sizeMode": 1,
  2576. "_fillType": 0,
  2577. "_fillCenter": {
  2578. "__type__": "cc.Vec2",
  2579. "x": 0,
  2580. "y": 0
  2581. },
  2582. "_fillStart": 0,
  2583. "_fillRange": 0,
  2584. "_isTrimmedMode": true,
  2585. "_state": 0,
  2586. "_atlas": {
  2587. "__uuid__": "69625eba-6ba7-426a-a4d8-5b9d565a9e9b"
  2588. },
  2589. "_srcBlendFactor": 770,
  2590. "_dstBlendFactor": 771,
  2591. "_id": ""
  2592. },
  2593. {
  2594. "__type__": "cc.Button",
  2595. "_name": "",
  2596. "_objFlags": 0,
  2597. "node": {
  2598. "__id__": 54
  2599. },
  2600. "_enabled": true,
  2601. "duration": 0.1,
  2602. "zoomScale": 1.2,
  2603. "clickEvents": [],
  2604. "_N$interactable": true,
  2605. "_N$enableAutoGrayEffect": false,
  2606. "_N$transition": 3,
  2607. "transition": 3,
  2608. "_N$normalColor": {
  2609. "__type__": "cc.Color",
  2610. "r": 214,
  2611. "g": 214,
  2612. "b": 214,
  2613. "a": 255
  2614. },
  2615. "_N$pressedColor": {
  2616. "__type__": "cc.Color",
  2617. "r": 211,
  2618. "g": 211,
  2619. "b": 211,
  2620. "a": 255
  2621. },
  2622. "pressedColor": {
  2623. "__type__": "cc.Color",
  2624. "r": 211,
  2625. "g": 211,
  2626. "b": 211,
  2627. "a": 255
  2628. },
  2629. "_N$hoverColor": {
  2630. "__type__": "cc.Color",
  2631. "r": 255,
  2632. "g": 255,
  2633. "b": 255,
  2634. "a": 255
  2635. },
  2636. "hoverColor": {
  2637. "__type__": "cc.Color",
  2638. "r": 255,
  2639. "g": 255,
  2640. "b": 255,
  2641. "a": 255
  2642. },
  2643. "_N$disabledColor": {
  2644. "__type__": "cc.Color",
  2645. "r": 124,
  2646. "g": 124,
  2647. "b": 124,
  2648. "a": 255
  2649. },
  2650. "_N$normalSprite": null,
  2651. "_N$pressedSprite": null,
  2652. "pressedSprite": null,
  2653. "_N$hoverSprite": null,
  2654. "hoverSprite": null,
  2655. "_N$disabledSprite": null,
  2656. "_N$target": null,
  2657. "_id": ""
  2658. },
  2659. {
  2660. "__type__": "cc.PrefabInfo",
  2661. "root": {
  2662. "__id__": 1
  2663. },
  2664. "asset": {
  2665. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  2666. },
  2667. "fileId": "f1DL8+Ph1DI5epwShcOXhy",
  2668. "sync": false
  2669. },
  2670. {
  2671. "__type__": "cc.Node",
  2672. "_name": "item4",
  2673. "_objFlags": 0,
  2674. "_parent": {
  2675. "__id__": 27
  2676. },
  2677. "_children": [
  2678. {
  2679. "__id__": 71
  2680. },
  2681. {
  2682. "__id__": 74
  2683. }
  2684. ],
  2685. "_active": true,
  2686. "_level": 2,
  2687. "_components": [
  2688. {
  2689. "__id__": 77
  2690. },
  2691. {
  2692. "__id__": 78
  2693. }
  2694. ],
  2695. "_prefab": {
  2696. "__id__": 79
  2697. },
  2698. "_opacity": 255,
  2699. "_color": {
  2700. "__type__": "cc.Color",
  2701. "r": 255,
  2702. "g": 255,
  2703. "b": 255,
  2704. "a": 255
  2705. },
  2706. "_contentSize": {
  2707. "__type__": "cc.Size",
  2708. "width": 326,
  2709. "height": 169
  2710. },
  2711. "_anchorPoint": {
  2712. "__type__": "cc.Vec2",
  2713. "x": 0.5,
  2714. "y": 0.5
  2715. },
  2716. "_quat": {
  2717. "__type__": "cc.Quat",
  2718. "x": 0,
  2719. "y": 0,
  2720. "z": 0,
  2721. "w": 1
  2722. },
  2723. "_skewX": 0,
  2724. "_skewY": 0,
  2725. "groupIndex": 0,
  2726. "_id": "",
  2727. "_trs": {
  2728. "__type__": "TypedArray",
  2729. "ctor": "Float64Array",
  2730. "array": [
  2731. 183,
  2732. -103,
  2733. 0,
  2734. 0,
  2735. 0,
  2736. 0,
  2737. 1,
  2738. 1,
  2739. 1,
  2740. 1
  2741. ]
  2742. }
  2743. },
  2744. {
  2745. "__type__": "cc.Node",
  2746. "_name": "selectedBg",
  2747. "_objFlags": 0,
  2748. "_parent": {
  2749. "__id__": 70
  2750. },
  2751. "_children": [],
  2752. "_active": false,
  2753. "_level": 3,
  2754. "_components": [
  2755. {
  2756. "__id__": 72
  2757. }
  2758. ],
  2759. "_prefab": {
  2760. "__id__": 73
  2761. },
  2762. "_opacity": 255,
  2763. "_color": {
  2764. "__type__": "cc.Color",
  2765. "r": 255,
  2766. "g": 255,
  2767. "b": 255,
  2768. "a": 255
  2769. },
  2770. "_contentSize": {
  2771. "__type__": "cc.Size",
  2772. "width": 326,
  2773. "height": 169
  2774. },
  2775. "_anchorPoint": {
  2776. "__type__": "cc.Vec2",
  2777. "x": 0.5,
  2778. "y": 0.5
  2779. },
  2780. "_quat": {
  2781. "__type__": "cc.Quat",
  2782. "x": 0,
  2783. "y": 0,
  2784. "z": 0,
  2785. "w": 1
  2786. },
  2787. "_skewX": 0,
  2788. "_skewY": 0,
  2789. "groupIndex": 0,
  2790. "_id": "",
  2791. "_trs": {
  2792. "__type__": "TypedArray",
  2793. "ctor": "Float64Array",
  2794. "array": [
  2795. 0,
  2796. 0,
  2797. 0,
  2798. 0,
  2799. 0,
  2800. 0,
  2801. 1,
  2802. 1,
  2803. 1,
  2804. 1
  2805. ]
  2806. }
  2807. },
  2808. {
  2809. "__type__": "cc.Sprite",
  2810. "_name": "",
  2811. "_objFlags": 0,
  2812. "node": {
  2813. "__id__": 71
  2814. },
  2815. "_enabled": true,
  2816. "_spriteFrame": {
  2817. "__uuid__": "aaf02428-1c2b-42bf-8aaf-1cb248f7a0f2"
  2818. },
  2819. "_type": 0,
  2820. "_sizeMode": 1,
  2821. "_fillType": 0,
  2822. "_fillCenter": {
  2823. "__type__": "cc.Vec2",
  2824. "x": 0,
  2825. "y": 0
  2826. },
  2827. "_fillStart": 0,
  2828. "_fillRange": 0,
  2829. "_isTrimmedMode": true,
  2830. "_state": 0,
  2831. "_atlas": {
  2832. "__uuid__": "69625eba-6ba7-426a-a4d8-5b9d565a9e9b"
  2833. },
  2834. "_srcBlendFactor": 770,
  2835. "_dstBlendFactor": 771,
  2836. "_id": ""
  2837. },
  2838. {
  2839. "__type__": "cc.PrefabInfo",
  2840. "root": {
  2841. "__id__": 1
  2842. },
  2843. "asset": {
  2844. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  2845. },
  2846. "fileId": "cfIKPmLVtDIKfz+2evDqdL",
  2847. "sync": false
  2848. },
  2849. {
  2850. "__type__": "cc.Node",
  2851. "_name": "PriceLbl",
  2852. "_objFlags": 0,
  2853. "_parent": {
  2854. "__id__": 70
  2855. },
  2856. "_children": [],
  2857. "_active": true,
  2858. "_level": 3,
  2859. "_components": [
  2860. {
  2861. "__id__": 75
  2862. }
  2863. ],
  2864. "_prefab": {
  2865. "__id__": 76
  2866. },
  2867. "_opacity": 255,
  2868. "_color": {
  2869. "__type__": "cc.Color",
  2870. "r": 120,
  2871. "g": 71,
  2872. "b": 4,
  2873. "a": 255
  2874. },
  2875. "_contentSize": {
  2876. "__type__": "cc.Size",
  2877. "width": 147.31,
  2878. "height": 50
  2879. },
  2880. "_anchorPoint": {
  2881. "__type__": "cc.Vec2",
  2882. "x": 0.5,
  2883. "y": 0.5
  2884. },
  2885. "_quat": {
  2886. "__type__": "cc.Quat",
  2887. "x": 0,
  2888. "y": 0,
  2889. "z": 0,
  2890. "w": 1
  2891. },
  2892. "_skewX": 0,
  2893. "_skewY": 0,
  2894. "groupIndex": 0,
  2895. "_id": "",
  2896. "_trs": {
  2897. "__type__": "TypedArray",
  2898. "ctor": "Float64Array",
  2899. "array": [
  2900. 0,
  2901. 0,
  2902. 0,
  2903. 0,
  2904. 0,
  2905. 0,
  2906. 1,
  2907. 1,
  2908. 1,
  2909. 1
  2910. ]
  2911. }
  2912. },
  2913. {
  2914. "__type__": "cc.Label",
  2915. "_name": "",
  2916. "_objFlags": 0,
  2917. "node": {
  2918. "__id__": 74
  2919. },
  2920. "_enabled": true,
  2921. "_useOriginalSize": false,
  2922. "_string": "0.01元",
  2923. "_N$string": "0.01元",
  2924. "_fontSize": 50,
  2925. "_lineHeight": 50,
  2926. "_enableWrapText": true,
  2927. "_N$file": null,
  2928. "_isSystemFontUsed": true,
  2929. "_spacingX": 0,
  2930. "_batchAsBitmap": false,
  2931. "_N$horizontalAlign": 1,
  2932. "_N$verticalAlign": 1,
  2933. "_N$fontFamily": "Arial",
  2934. "_N$overflow": 0,
  2935. "_N$cacheMode": 0,
  2936. "_id": ""
  2937. },
  2938. {
  2939. "__type__": "cc.PrefabInfo",
  2940. "root": {
  2941. "__id__": 1
  2942. },
  2943. "asset": {
  2944. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  2945. },
  2946. "fileId": "f0uuT2YWVLr6ftlHLo2Ogk",
  2947. "sync": false
  2948. },
  2949. {
  2950. "__type__": "cc.Sprite",
  2951. "_name": "",
  2952. "_objFlags": 0,
  2953. "node": {
  2954. "__id__": 70
  2955. },
  2956. "_enabled": true,
  2957. "_spriteFrame": {
  2958. "__uuid__": "4ff4edcb-09fe-4abe-914a-d708d5fe425b"
  2959. },
  2960. "_type": 0,
  2961. "_sizeMode": 1,
  2962. "_fillType": 0,
  2963. "_fillCenter": {
  2964. "__type__": "cc.Vec2",
  2965. "x": 0,
  2966. "y": 0
  2967. },
  2968. "_fillStart": 0,
  2969. "_fillRange": 0,
  2970. "_isTrimmedMode": true,
  2971. "_state": 0,
  2972. "_atlas": {
  2973. "__uuid__": "69625eba-6ba7-426a-a4d8-5b9d565a9e9b"
  2974. },
  2975. "_srcBlendFactor": 770,
  2976. "_dstBlendFactor": 771,
  2977. "_id": ""
  2978. },
  2979. {
  2980. "__type__": "cc.Button",
  2981. "_name": "",
  2982. "_objFlags": 0,
  2983. "node": {
  2984. "__id__": 70
  2985. },
  2986. "_enabled": true,
  2987. "duration": 0.1,
  2988. "zoomScale": 1.2,
  2989. "clickEvents": [],
  2990. "_N$interactable": true,
  2991. "_N$enableAutoGrayEffect": false,
  2992. "_N$transition": 3,
  2993. "transition": 3,
  2994. "_N$normalColor": {
  2995. "__type__": "cc.Color",
  2996. "r": 214,
  2997. "g": 214,
  2998. "b": 214,
  2999. "a": 255
  3000. },
  3001. "_N$pressedColor": {
  3002. "__type__": "cc.Color",
  3003. "r": 211,
  3004. "g": 211,
  3005. "b": 211,
  3006. "a": 255
  3007. },
  3008. "pressedColor": {
  3009. "__type__": "cc.Color",
  3010. "r": 211,
  3011. "g": 211,
  3012. "b": 211,
  3013. "a": 255
  3014. },
  3015. "_N$hoverColor": {
  3016. "__type__": "cc.Color",
  3017. "r": 255,
  3018. "g": 255,
  3019. "b": 255,
  3020. "a": 255
  3021. },
  3022. "hoverColor": {
  3023. "__type__": "cc.Color",
  3024. "r": 255,
  3025. "g": 255,
  3026. "b": 255,
  3027. "a": 255
  3028. },
  3029. "_N$disabledColor": {
  3030. "__type__": "cc.Color",
  3031. "r": 124,
  3032. "g": 124,
  3033. "b": 124,
  3034. "a": 255
  3035. },
  3036. "_N$normalSprite": null,
  3037. "_N$pressedSprite": null,
  3038. "pressedSprite": null,
  3039. "_N$hoverSprite": null,
  3040. "hoverSprite": null,
  3041. "_N$disabledSprite": null,
  3042. "_N$target": null,
  3043. "_id": ""
  3044. },
  3045. {
  3046. "__type__": "cc.PrefabInfo",
  3047. "root": {
  3048. "__id__": 1
  3049. },
  3050. "asset": {
  3051. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  3052. },
  3053. "fileId": "68VuUeyHhAN5VhjH9HcAxl",
  3054. "sync": false
  3055. },
  3056. {
  3057. "__type__": "cc.Sprite",
  3058. "_name": "",
  3059. "_objFlags": 0,
  3060. "node": {
  3061. "__id__": 27
  3062. },
  3063. "_enabled": true,
  3064. "_spriteFrame": null,
  3065. "_type": 0,
  3066. "_sizeMode": 0,
  3067. "_fillType": 0,
  3068. "_fillCenter": {
  3069. "__type__": "cc.Vec2",
  3070. "x": 0,
  3071. "y": 0
  3072. },
  3073. "_fillStart": 0,
  3074. "_fillRange": 0,
  3075. "_isTrimmedMode": true,
  3076. "_state": 0,
  3077. "_atlas": null,
  3078. "_srcBlendFactor": 770,
  3079. "_dstBlendFactor": 771,
  3080. "_id": ""
  3081. },
  3082. {
  3083. "__type__": "cc.PrefabInfo",
  3084. "root": {
  3085. "__id__": 1
  3086. },
  3087. "asset": {
  3088. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  3089. },
  3090. "fileId": "datWtBZkdONoiIXz0jaqET",
  3091. "sync": false
  3092. },
  3093. {
  3094. "__type__": "cc.Node",
  3095. "_name": "withdrawalTripNode",
  3096. "_objFlags": 0,
  3097. "_parent": {
  3098. "__id__": 7
  3099. },
  3100. "_children": [
  3101. {
  3102. "__id__": 83
  3103. },
  3104. {
  3105. "__id__": 86
  3106. },
  3107. {
  3108. "__id__": 89
  3109. },
  3110. {
  3111. "__id__": 92
  3112. }
  3113. ],
  3114. "_active": true,
  3115. "_level": 1,
  3116. "_components": [],
  3117. "_prefab": {
  3118. "__id__": 95
  3119. },
  3120. "_opacity": 255,
  3121. "_color": {
  3122. "__type__": "cc.Color",
  3123. "r": 255,
  3124. "g": 255,
  3125. "b": 255,
  3126. "a": 255
  3127. },
  3128. "_contentSize": {
  3129. "__type__": "cc.Size",
  3130. "width": 793,
  3131. "height": 376
  3132. },
  3133. "_anchorPoint": {
  3134. "__type__": "cc.Vec2",
  3135. "x": 0.5,
  3136. "y": 0.5
  3137. },
  3138. "_quat": {
  3139. "__type__": "cc.Quat",
  3140. "x": 0,
  3141. "y": 0,
  3142. "z": 0,
  3143. "w": 1
  3144. },
  3145. "_skewX": 0,
  3146. "_skewY": 0,
  3147. "groupIndex": 0,
  3148. "_id": "",
  3149. "_trs": {
  3150. "__type__": "TypedArray",
  3151. "ctor": "Float64Array",
  3152. "array": [
  3153. 4,
  3154. -375,
  3155. 0,
  3156. 0,
  3157. 0,
  3158. 0,
  3159. 1,
  3160. 1,
  3161. 1,
  3162. 1
  3163. ]
  3164. }
  3165. },
  3166. {
  3167. "__type__": "cc.Node",
  3168. "_name": "New Label",
  3169. "_objFlags": 0,
  3170. "_parent": {
  3171. "__id__": 82
  3172. },
  3173. "_children": [],
  3174. "_active": true,
  3175. "_level": 2,
  3176. "_components": [
  3177. {
  3178. "__id__": 84
  3179. }
  3180. ],
  3181. "_prefab": {
  3182. "__id__": 85
  3183. },
  3184. "_opacity": 255,
  3185. "_color": {
  3186. "__type__": "cc.Color",
  3187. "r": 119,
  3188. "g": 72,
  3189. "b": 4,
  3190. "a": 255
  3191. },
  3192. "_contentSize": {
  3193. "__type__": "cc.Size",
  3194. "width": 120,
  3195. "height": 40
  3196. },
  3197. "_anchorPoint": {
  3198. "__type__": "cc.Vec2",
  3199. "x": 0.5,
  3200. "y": 0.5
  3201. },
  3202. "_quat": {
  3203. "__type__": "cc.Quat",
  3204. "x": 0,
  3205. "y": 0,
  3206. "z": 0,
  3207. "w": 1
  3208. },
  3209. "_skewX": 0,
  3210. "_skewY": 0,
  3211. "groupIndex": 0,
  3212. "_id": "",
  3213. "_trs": {
  3214. "__type__": "TypedArray",
  3215. "ctor": "Float64Array",
  3216. "array": [
  3217. -304.2,
  3218. 169.9,
  3219. 0,
  3220. 0,
  3221. 0,
  3222. 0,
  3223. 1,
  3224. 1,
  3225. 1,
  3226. 1
  3227. ]
  3228. }
  3229. },
  3230. {
  3231. "__type__": "cc.Label",
  3232. "_name": "",
  3233. "_objFlags": 0,
  3234. "node": {
  3235. "__id__": 83
  3236. },
  3237. "_enabled": true,
  3238. "_useOriginalSize": false,
  3239. "_string": "提现说明",
  3240. "_N$string": "提现说明",
  3241. "_fontSize": 30,
  3242. "_lineHeight": 40,
  3243. "_enableWrapText": true,
  3244. "_N$file": null,
  3245. "_isSystemFontUsed": true,
  3246. "_spacingX": 0,
  3247. "_batchAsBitmap": false,
  3248. "_N$horizontalAlign": 1,
  3249. "_N$verticalAlign": 1,
  3250. "_N$fontFamily": "Arial",
  3251. "_N$overflow": 0,
  3252. "_N$cacheMode": 0,
  3253. "_id": ""
  3254. },
  3255. {
  3256. "__type__": "cc.PrefabInfo",
  3257. "root": {
  3258. "__id__": 1
  3259. },
  3260. "asset": {
  3261. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  3262. },
  3263. "fileId": "7a8bMpl7RBYpk2skoCYOpl",
  3264. "sync": false
  3265. },
  3266. {
  3267. "__type__": "cc.Node",
  3268. "_name": "New Label",
  3269. "_objFlags": 0,
  3270. "_parent": {
  3271. "__id__": 82
  3272. },
  3273. "_children": [],
  3274. "_active": true,
  3275. "_level": 2,
  3276. "_components": [
  3277. {
  3278. "__id__": 87
  3279. }
  3280. ],
  3281. "_prefab": {
  3282. "__id__": 88
  3283. },
  3284. "_opacity": 255,
  3285. "_color": {
  3286. "__type__": "cc.Color",
  3287. "r": 191,
  3288. "g": 157,
  3289. "b": 110,
  3290. "a": 255
  3291. },
  3292. "_contentSize": {
  3293. "__type__": "cc.Size",
  3294. "width": 803.09,
  3295. "height": 120
  3296. },
  3297. "_anchorPoint": {
  3298. "__type__": "cc.Vec2",
  3299. "x": 0,
  3300. "y": 0.5
  3301. },
  3302. "_quat": {
  3303. "__type__": "cc.Quat",
  3304. "x": 0,
  3305. "y": 0,
  3306. "z": 0,
  3307. "w": 1
  3308. },
  3309. "_skewX": 0,
  3310. "_skewY": 0,
  3311. "groupIndex": 0,
  3312. "_id": "",
  3313. "_trs": {
  3314. "__type__": "TypedArray",
  3315. "ctor": "Float64Array",
  3316. "array": [
  3317. -367,
  3318. 102,
  3319. 0,
  3320. 0,
  3321. 0,
  3322. 0,
  3323. 1,
  3324. 1,
  3325. 1,
  3326. 1
  3327. ]
  3328. }
  3329. },
  3330. {
  3331. "__type__": "cc.Label",
  3332. "_name": "",
  3333. "_objFlags": 0,
  3334. "node": {
  3335. "__id__": 86
  3336. },
  3337. "_enabled": true,
  3338. "_useOriginalSize": false,
  3339. "_string": "1.提现金额将转入您的QQ钱包余额中,请对QQ\n钱包进行实名认证",
  3340. "_N$string": "1.提现金额将转入您的QQ钱包余额中,请对QQ\n钱包进行实名认证",
  3341. "_fontSize": 35,
  3342. "_lineHeight": 50,
  3343. "_enableWrapText": true,
  3344. "_N$file": null,
  3345. "_isSystemFontUsed": true,
  3346. "_spacingX": 0,
  3347. "_batchAsBitmap": false,
  3348. "_N$horizontalAlign": 0,
  3349. "_N$verticalAlign": 1,
  3350. "_N$fontFamily": "Arial",
  3351. "_N$overflow": 1,
  3352. "_N$cacheMode": 0,
  3353. "_id": ""
  3354. },
  3355. {
  3356. "__type__": "cc.PrefabInfo",
  3357. "root": {
  3358. "__id__": 1
  3359. },
  3360. "asset": {
  3361. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  3362. },
  3363. "fileId": "bbwviZFedGI6ywjQadEh/T",
  3364. "sync": false
  3365. },
  3366. {
  3367. "__type__": "cc.Node",
  3368. "_name": "New Label",
  3369. "_objFlags": 0,
  3370. "_parent": {
  3371. "__id__": 82
  3372. },
  3373. "_children": [],
  3374. "_active": true,
  3375. "_level": 2,
  3376. "_components": [
  3377. {
  3378. "__id__": 90
  3379. }
  3380. ],
  3381. "_prefab": {
  3382. "__id__": 91
  3383. },
  3384. "_opacity": 255,
  3385. "_color": {
  3386. "__type__": "cc.Color",
  3387. "r": 191,
  3388. "g": 157,
  3389. "b": 110,
  3390. "a": 255
  3391. },
  3392. "_contentSize": {
  3393. "__type__": "cc.Size",
  3394. "width": 803.09,
  3395. "height": 60
  3396. },
  3397. "_anchorPoint": {
  3398. "__type__": "cc.Vec2",
  3399. "x": 0,
  3400. "y": 0.5
  3401. },
  3402. "_quat": {
  3403. "__type__": "cc.Quat",
  3404. "x": 0,
  3405. "y": 0,
  3406. "z": 0,
  3407. "w": 1
  3408. },
  3409. "_skewX": 0,
  3410. "_skewY": 0,
  3411. "groupIndex": 0,
  3412. "_id": "",
  3413. "_trs": {
  3414. "__type__": "TypedArray",
  3415. "ctor": "Float64Array",
  3416. "array": [
  3417. -367,
  3418. 30,
  3419. 0,
  3420. 0,
  3421. 0,
  3422. 0,
  3423. 1,
  3424. 1,
  3425. 1,
  3426. 1
  3427. ]
  3428. }
  3429. },
  3430. {
  3431. "__type__": "cc.Label",
  3432. "_name": "",
  3433. "_objFlags": 0,
  3434. "node": {
  3435. "__id__": 89
  3436. },
  3437. "_enabled": true,
  3438. "_useOriginalSize": false,
  3439. "_string": "2.提现金额将在5个工作日内到账,请耐心等待",
  3440. "_N$string": "2.提现金额将在5个工作日内到账,请耐心等待",
  3441. "_fontSize": 35,
  3442. "_lineHeight": 50,
  3443. "_enableWrapText": true,
  3444. "_N$file": null,
  3445. "_isSystemFontUsed": true,
  3446. "_spacingX": 0,
  3447. "_batchAsBitmap": false,
  3448. "_N$horizontalAlign": 0,
  3449. "_N$verticalAlign": 1,
  3450. "_N$fontFamily": "Arial",
  3451. "_N$overflow": 1,
  3452. "_N$cacheMode": 0,
  3453. "_id": ""
  3454. },
  3455. {
  3456. "__type__": "cc.PrefabInfo",
  3457. "root": {
  3458. "__id__": 1
  3459. },
  3460. "asset": {
  3461. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  3462. },
  3463. "fileId": "02xXUeU/hIMJtaLxEKrEzd",
  3464. "sync": false
  3465. },
  3466. {
  3467. "__type__": "cc.Node",
  3468. "_name": "New Label",
  3469. "_objFlags": 0,
  3470. "_parent": {
  3471. "__id__": 82
  3472. },
  3473. "_children": [],
  3474. "_active": true,
  3475. "_level": 2,
  3476. "_components": [
  3477. {
  3478. "__id__": 93
  3479. }
  3480. ],
  3481. "_prefab": {
  3482. "__id__": 94
  3483. },
  3484. "_opacity": 255,
  3485. "_color": {
  3486. "__type__": "cc.Color",
  3487. "r": 191,
  3488. "g": 157,
  3489. "b": 110,
  3490. "a": 255
  3491. },
  3492. "_contentSize": {
  3493. "__type__": "cc.Size",
  3494. "width": 803.09,
  3495. "height": 80
  3496. },
  3497. "_anchorPoint": {
  3498. "__type__": "cc.Vec2",
  3499. "x": 0,
  3500. "y": 0.5
  3501. },
  3502. "_quat": {
  3503. "__type__": "cc.Quat",
  3504. "x": 0,
  3505. "y": 0,
  3506. "z": 0,
  3507. "w": 1
  3508. },
  3509. "_skewX": 0,
  3510. "_skewY": 0,
  3511. "groupIndex": 0,
  3512. "_id": "",
  3513. "_trs": {
  3514. "__type__": "TypedArray",
  3515. "ctor": "Float64Array",
  3516. "array": [
  3517. -367,
  3518. -18,
  3519. 0,
  3520. 0,
  3521. 0,
  3522. 0,
  3523. 1,
  3524. 1,
  3525. 1,
  3526. 1
  3527. ]
  3528. }
  3529. },
  3530. {
  3531. "__type__": "cc.Label",
  3532. "_name": "",
  3533. "_objFlags": 0,
  3534. "node": {
  3535. "__id__": 92
  3536. },
  3537. "_enabled": true,
  3538. "_useOriginalSize": false,
  3539. "_string": "3.如遇到问题请联系客服QQ:3188727471",
  3540. "_N$string": "3.如遇到问题请联系客服QQ:3188727471",
  3541. "_fontSize": 35,
  3542. "_lineHeight": 40,
  3543. "_enableWrapText": true,
  3544. "_N$file": null,
  3545. "_isSystemFontUsed": true,
  3546. "_spacingX": 0,
  3547. "_batchAsBitmap": false,
  3548. "_N$horizontalAlign": 0,
  3549. "_N$verticalAlign": 1,
  3550. "_N$fontFamily": "Arial",
  3551. "_N$overflow": 1,
  3552. "_N$cacheMode": 0,
  3553. "_id": ""
  3554. },
  3555. {
  3556. "__type__": "cc.PrefabInfo",
  3557. "root": {
  3558. "__id__": 1
  3559. },
  3560. "asset": {
  3561. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  3562. },
  3563. "fileId": "70y3b/u9tJsYABvCWwG8U+",
  3564. "sync": false
  3565. },
  3566. {
  3567. "__type__": "cc.PrefabInfo",
  3568. "root": {
  3569. "__id__": 1
  3570. },
  3571. "asset": {
  3572. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  3573. },
  3574. "fileId": "ce6kv4QkRK+ZUPCYNAfzgN",
  3575. "sync": false
  3576. },
  3577. {
  3578. "__type__": "cc.Widget",
  3579. "_name": "",
  3580. "_objFlags": 0,
  3581. "node": {
  3582. "__id__": 7
  3583. },
  3584. "_enabled": true,
  3585. "alignMode": 1,
  3586. "_target": null,
  3587. "_alignFlags": 45,
  3588. "_left": 0,
  3589. "_right": 0,
  3590. "_top": 0,
  3591. "_bottom": 0,
  3592. "_verticalCenter": 0,
  3593. "_horizontalCenter": 0,
  3594. "_isAbsLeft": true,
  3595. "_isAbsRight": true,
  3596. "_isAbsTop": true,
  3597. "_isAbsBottom": true,
  3598. "_isAbsHorizontalCenter": true,
  3599. "_isAbsVerticalCenter": true,
  3600. "_originalWidth": 506,
  3601. "_originalHeight": 1001,
  3602. "_id": ""
  3603. },
  3604. {
  3605. "__type__": "cc.PrefabInfo",
  3606. "root": {
  3607. "__id__": 1
  3608. },
  3609. "asset": {
  3610. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  3611. },
  3612. "fileId": "6dT307F8NOzKVnvDLdcqxr",
  3613. "sync": false
  3614. },
  3615. {
  3616. "__type__": "cc.Widget",
  3617. "_name": "",
  3618. "_objFlags": 0,
  3619. "node": {
  3620. "__id__": 1
  3621. },
  3622. "_enabled": true,
  3623. "alignMode": 1,
  3624. "_target": null,
  3625. "_alignFlags": 45,
  3626. "_left": 0,
  3627. "_right": 0,
  3628. "_top": 0,
  3629. "_bottom": 0,
  3630. "_verticalCenter": 0,
  3631. "_horizontalCenter": 0,
  3632. "_isAbsLeft": true,
  3633. "_isAbsRight": true,
  3634. "_isAbsTop": true,
  3635. "_isAbsBottom": true,
  3636. "_isAbsHorizontalCenter": true,
  3637. "_isAbsVerticalCenter": true,
  3638. "_originalWidth": 1080,
  3639. "_originalHeight": 1920,
  3640. "_id": ""
  3641. },
  3642. {
  3643. "__type__": "4495aojZMBHxqGZ7aIISklf",
  3644. "_name": "",
  3645. "_objFlags": 0,
  3646. "node": {
  3647. "__id__": 1
  3648. },
  3649. "_enabled": true,
  3650. "_id": ""
  3651. },
  3652. {
  3653. "__type__": "cc.PrefabInfo",
  3654. "root": {
  3655. "__id__": 1
  3656. },
  3657. "asset": {
  3658. "__uuid__": "849eb1f2-bf5c-4963-abe4-f41f5568636f"
  3659. },
  3660. "fileId": "8a00Z9eVFOia4iUj8j5B6d",
  3661. "sync": false
  3662. }
  3663. ]