LeaseInfo.prefab 72 KB

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