StockDetail.prefab 67 KB

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