LeaseInfo.prefab 74 KB

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