Commit d4883190 authored by huoshizhe's avatar huoshizhe

test: 测试

parent bf078b94
This diff is collapsed.
......@@ -28,8 +28,8 @@
"ali-oss": "^6.5.1",
"compressing": "^1.5.0",
"ng-zorro-antd": "^8.5.2",
"node-sass": "4.14.0",
"rxjs": "~6.5.4",
"node-sass": "^4.0.0",
"spark-md5": "^3.0.0",
"tslib": "^1.10.0",
"zone.js": "~0.10.2"
......
......@@ -17,7 +17,7 @@
</div>
-->
<div *ngFor='let data of item ;index as i'>
<div *ngFor='let data of item.data ;index as i'>
<span> 卡片{{i+1}}</span>
<app-custom-hot-zone-mini [bgItem]="data.bgItem" [hotZoneItemArr]="data.hotZoneItemArr"
[customTypeGroupArr]="customTypeGroupArr" (save)="saveHotZone(data, $event)" (del)="delHotZone(i)">
......
......@@ -52,14 +52,20 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy {
ngOnInit() {
this.item = [];
this.item = {
data: []
};
// 获取存储的数据
(<any>window).courseware.getData((data) => {
if (data && data.length) {
this.item = data;
}
if (data) {
if (data.length) {
this.item = { data:data };
} else {
this.item = data;
}
}
this.init();
this.changeDetectorRef.markForCheck();
......@@ -93,12 +99,12 @@ export class FormComponent implements OnInit, OnChanges, OnDestroy {
/** 删除按钮 */
delHotZone(index: number) {
this.item.splice(index, 1)
this.item.data.splice(index, 1)
}
/** 添加按钮 */
addClick() {
this.item.push({})
this.item.data.push({})
}
/**
......
{
"ver": "1.1.2",
"uuid": "c35bb2f6-f24a-4850-ae44-643f2fdc7541",
"isBundle": false,
"isBundle": true,
"bundleName": "",
"priority": 1,
"compressionType": {},
"optimizeHotUpdate": {},
"inlineSpriteFrames": {},
"isRemoteBundle": {},
"compressionType": {
"android": "default"
},
"optimizeHotUpdate": {
"android": false
},
"inlineSpriteFrames": {
"android": false
},
"isRemoteBundle": {
"android": true
},
"subMetas": {}
}
\ No newline at end of file
......@@ -58,7 +58,7 @@
"_groupIndex": 0,
"groupIndex": 0,
"autoReleaseAssets": true,
"_id": "57ea7c61-9b8b-498a-b024-c98ee9124beb"
"_id": "c1225785-d011-4753-966e-7b08081b71d9"
},
{
"__type__": "cc.Node",
......@@ -1381,7 +1381,7 @@
"__id__": 2
},
"component": "",
"_componentId": "c238bwNxXtAHqIXQECY4nQz",
"_componentId": "f3d0dsNiwBNiI2iHXJ2myfc",
"handler": "onClickAudio",
"customEventData": ""
},
......@@ -1538,7 +1538,7 @@
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 1,
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": null,
"_type": 0,
......@@ -1999,7 +1999,7 @@
"__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
}
],
"_srcBlendFactor": 1,
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": null,
"_type": 0,
......@@ -2592,7 +2592,7 @@
"__id__": 2
},
"component": "",
"_componentId": "c238bwNxXtAHqIXQECY4nQz",
"_componentId": "f3d0dsNiwBNiI2iHXJ2myfc",
"handler": "onClickLeft",
"customEventData": ""
},
......@@ -2771,7 +2771,7 @@
"__id__": 2
},
"component": "",
"_componentId": "c238bwNxXtAHqIXQECY4nQz",
"_componentId": "f3d0dsNiwBNiI2iHXJ2myfc",
"handler": "onClickRight",
"customEventData": ""
},
......@@ -3102,7 +3102,7 @@
"_id": "29zXboiXFBKoIV4PQ2liTe"
},
{
"__type__": "c238bwNxXtAHqIXQECY4nQz",
"__type__": "f3d0dsNiwBNiI2iHXJ2myfc",
"_name": "",
"_objFlags": 0,
"node": {
......
{
"ver": "1.2.9",
"uuid": "57ea7c61-9b8b-498a-b024-c98ee9124beb",
"uuid": "c1225785-d011-4753-966e-7b08081b71d9",
"asyncLoadAssets": false,
"autoReleaseAssets": true,
"subMetas": {}
......
......@@ -87,8 +87,15 @@ cc.Class({
}
getData((data) => {
console.log('data:', data);
this.data = (data && data.length) ? data : this.getDefaultData();
if (data) {
if (data.data) {
this.data = data.data;
} else {
this.data = data;
}
} else {
this.data = this.getDefaultData();
}
this.data = JSON.parse(JSON.stringify(this.data))
this.preloadItem()
})
......@@ -107,8 +114,20 @@ cc.Class({
},
getData(cb) {
cb(this.getDefaultData());
getData(func) {
// if (window && window.courseware) {
// window.courseware.getData(func, 'ww03');
// return;
// }
// const middleLayer = cc.find('middleLayer');
// if (middleLayer) {
// const middleLayerComponent = middleLayer.getComponent('middleLayer');
// middleLayerComponent.getData(func);
// return;
// }
func(this.getDefaultData());
},
getDefaultData() {
......
{
"ver": "1.0.8",
"uuid": "c238bc0d-c57b-401e-a217-404098e27433",
"uuid": "f3d0db0d-8b00-4d88-8da2-1d72769b27dc",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
......
{
"title": "play",
"packageName": "org.cocos2d.demo",
"startScene": "57ea7c61-9b8b-498a-b024-c98ee9124beb",
"startScene": "c1225785-d011-4753-966e-7b08081b71d9",
"excludeScenes": [],
"includeSDKBox": false,
"orientation": {
......@@ -19,7 +19,7 @@
"md5Cache": false,
"nativeMd5Cache": true,
"encryptJs": true,
"xxteaKey": "af95a0f7-a8da-4f",
"xxteaKey": "6bbfce23-28b4-4a",
"zipCompressJs": true,
"fb-instant-games": {},
"android": {
......@@ -28,7 +28,8 @@
},
"ios": {
"REMOTE_SERVER_ROOT": "",
"packageName": "org.cocos2d.demo"
"packageName": "org.cocos2d.demo",
"ios_enable_jit": true
},
"mac": {
"REMOTE_SERVER_ROOT": "",
......@@ -50,5 +51,6 @@
"scheme": "https",
"skipRecord": false
},
"appBundle": false
"appBundle": false,
"agreements": {}
}
{
"last-module-event-record-time": 1600677246969,
"last-module-event-record-time": 1636477280768,
"migrate-history": [
"cloud-function"
]
......
{
"ios": {
"sceneName": "Book_Read",
"version": "e5634"
},
"android": {
"sceneName": "Book_Read",
"version": "c8307"
}
}
\ No newline at end of file
{"paths":{"0":["textures/bg_quan_huang",5],"1":["anim/hand",0],"2":["textures/btn_audio-play3",4,1],"3":["textures/bg_move",5],"4":["textures/icon_hand2",5],"5":["textures/bg_number0",4,1],"6":["textures/icon_hand0",4,1],"7":["prefab/hitItem",3],"8":["textures/btn_audio-play2",5],"9":["audios/按钮",1],"10":["textures/btn_last",4,1],"11":["textures/bg_quan_huang",4,1],"13":["textures/bg_bg",5],"14":["textures/icon_play",4,1],"15":["textures/icon_dian",4,1],"16":["textures/bg_background0",4,1],"17":["textures/btn_x",5],"18":["textures/bg_move",4,1],"19":["textures/btn_next",4,1],"20":["textures/bg_quan_lan",4,1],"21":["textures/icon_hand0",5],"22":["textures/bg_quan",5],"23":["textures/icon_play",5],"24":["textures/bg_number0",5],"25":["textures/btn_audio-play1",4,1],"26":["textures/icon_stop",5],"27":["textures/bg_book0",4,1],"28":["textures/btn_audio-play2",4,1],"29":["textures/bg_quan",4,1],"30":["textures/bg_desk0",5],"31":["anim/tips",0],"32":["textures/icon_stop",4,1],"33":["textures/icon_tips",5],"34":["textures/icon_tips",4,1],"35":["textures/btn_next",5],"36":["textures/btn_x",4,1],"37":["textures/btn_audio-play3",5],"38":["textures/btn_audio-play1",5],"39":["textures/bg_bottom",4,1],"40":["textures/bg_bg",4,1],"41":["textures/bg_book0",5],"42":["textures/btn_last",5],"43":["textures/btn_return0",5],"44":["textures/bg_background0",5],"45":["audios/提示",1],"46":["textures/bg_bottom",5],"47":["textures/btn_return0",4,1],"48":["textures/icon_dian",5],"49":["textures/icon_hand",5],"50":["textures/bg_quan_lan",5],"51":["textures/icon_hand",4,1],"52":["textures/icon_hand2",4,1],"53":["fonts/BRLNSDB",2],"54":["textures/bg_desk0",4,1]},"types":["cc.AnimationClip","cc.AudioClip","cc.TTFFont","cc.Prefab","cc.SpriteFrame","cc.Texture2D"],"uuids":["0967eEj6xPVp1laxKrZ65R","11DVptTU5KBL7SS7VsVtA9","11FtUjwdBPs6isc7gNtsEM","17NOlyhqlHZr3Oe8x5NEXF","1dJ365QGFOiJkF38bPaKZy","24JLpmId9IRbSo6hRB65GT","24PnGr62dN0Iq9XKEQSQPf","2c59WNtv5O96Eo3nb2cqgD","36C+u4ix1EgayWvV179Hq+","397xk5O/lNIaZ6vB3t5SGp","48Ezf1pjVCN4pnejf9WfEZ","4bfQh7hGtCvqD9BoCpQouI","576nxhm4tJirAkyY7pEkvr","58+Z76LCRAGLicXK5k3Vx0","5aKNZF2KpCoIEZYqculvhU","5dq6lv7/VL7pup1nwBNCEq","60apvKpHJCLqjXpX/kouBX","61esvO6yJBa7XV8er3GHyp","65mJJDA61FcolKwdRxLOgs","75RqMzHYtMOqaZskYz2YfT","76Ud18+SFPcYAGTyVxTSS5","80k9fNdkRMxoDHuLRZB+Lh","82rjvDi99GO5fRYOvRkLrS","82txnb9hNIbIsJJ6CAdmXu","887AVyKrhPTK8ND133qWil","95QFuuwFZDaJPcgJ4bPtYc","97TFf9cPFEp63gTG9Q247Q","98ZjcIfq1M+7ws0VxEZSxh","98jaJamRFG4YSe4jOqVVgn","9bM2iCli5Ee50siayiv5W0","9caMSFuCNDko8t3umyyCWz","a1PWVSDs5C44E6ICmtDKsM","a643oIgNdO+oJWjJJa2QY9","b3JUv1ev5NQogVlpPt8U2B","b4Fmf1DglJ9rfoGbiNyOqL","b5ogPZnW5AIKqbKLFRHiAz","b7MWZkq6RACKVKEZCKbAsV","b9PeKj6tVKS7J0IeGg1jxY","bb6ljgkrdMFICLw+sx5rft","c2YOfTmqdGypn1fKXzH3/v","c3H4Hzg9tLRqXDozVywS5/","c62iEUrNZPi4f+Wyt9WgLb","d5yS2hQk1JiLVdSupkB84u","d5409Z4OxF94C3Z5OnAi39","dcGvi65s9Lvr15VA2Ysg5o","e0vPTMNadNYbICjdSSmcLA","e1GnxhcB1BvbdL26x+/Tp+","e5T6qVbndI94w3sdv/Znwb","eazI5bztBBx6HecPsGRb9g","edW4Hi7ntPdrQknfNA5fKY","fca8q58wZK+bPXhRrThjM4","56Le79yf1C8JfX1vWJPvPz","615HxoZY1Ba6RuOZ6/3dLI","c5UZcOsJVF858dJc3ouN6x","d1UP0U3GNBV73aRW8bNYjt","ecpdLyjvZBwrvm+cedCcQy"],"scenes":{"db://assets/Book_Read/scene/Book_Read.fire":12},"redirect":[55,0],"deps":["internal"],"packs":{"01a91b421":[1,6],"096b1073e":[7,11,14,15,20,29,31,32,34,36,39,45],"0ada4dbe2":[2,5,9,10,12,16,18,19,25,27,28,40,47],"0dfad8d6f":[0,3,4,8,13,17,21,22,23,24,26,30,33,35,37,38,41,42,43,44,46,48,49,50]},"name":"Book_Read","importBase":"import","nativeBase":"native","debug":false,"isZip":false,"encrypted":false}
\ No newline at end of file
[1,["24PnGr62dN0Iq9XKEQSQPf","80k9fNdkRMxoDHuLRZB+Lh"],["value","_textureSetter"],["cc.SpriteFrame",["cc.AnimationClip",["_name","_duration","sample","wrapMode","curveData"],-1,11]],[[1,0,1,2,3,4,5]],[[[[0,"hand",0.7,30,2,[{},"paths",11,[{},"icon_hand",11,[{},"comps",11,[{},"cc.Sprite",11,[{},"spriteFrame",12,[[[{"frame":0},"value",6,0],[{"frame":0.3333333333333333},"value",6,1],[{"frame":0.6666666666666666},"value",6,2]],11,11,11]]],"props",11,[{},"color",12,[[[{"frame":0,"curve":"constant"},"value",8,[4,4294967295]],[{"frame":0.3333333333333333,"curve":"constant"},"value",8,[4,4289769648]],[{"frame":0.6666666666666666},"value",8,[4,4294967295]]],11,11,11]]],"icon_dian",11,[{},"props",11,[{"position":[{"frame":0,"curve":"constant","value":[-22.199,34.822,0]}]},"scale",12,[[[{"frame":0,"curve":"constant"},"value",8,[0,1,1]],[{"frame":0.3333333333333333,"curve":"constant"},"value",8,[0,1.3,1.3]],[{"frame":0.6666666666666666},"value",8,[0,1,1]]],11,11,11]]]]]]],0,0,[0,0,0],[0,0,0],[0,0,0]],[[{"name":"icon_hand0","rect":[0,0,52,50],"offset":[0,0],"originalSize":[52,50],"capInsets":[0,0,0,0]}],[0],0,[0],[1],[1]]]]
\ No newline at end of file
[1,["ecpdLyjvZBwrvm+cedCcQy","a1PWVSDs5C44E6ICmtDKsM","76Ud18+SFPcYAGTyVxTSS5","11DVptTU5KBL7SS7VsVtA9","b4Fmf1DglJ9rfoGbiNyOqL","9bM2iCli5Ee50siayiv5W0","b7MWZkq6RACKVKEZCKbAsV","5aKNZF2KpCoIEZYqculvhU","a643oIgNdO+oJWjJJa2QY9","5dq6lv7/VL7pup1nwBNCEq","24PnGr62dN0Iq9XKEQSQPf","e0vPTMNadNYbICjdSSmcLA","4bfQh7hGtCvqD9BoCpQouI","c2YOfTmqdGypn1fKXzH3/v","0967eEj6xPVp1laxKrZ65R","82txnb9hNIbIsJJ6CAdmXu","eazI5bztBBx6HecPsGRb9g","fca8q58wZK+bPXhRrThjM4","82rjvDi99GO5fRYOvRkLrS","97TFf9cPFEp63gTG9Q247Q","b3JUv1ev5NQogVlpPt8U2B","61esvO6yJBa7XV8er3GHyp","e1GnxhcB1BvbdL26x+/Tp+"],["node","_spriteFrame","_textureSetter","_defaultClip","root","icon_stop","icon_play","btnX","sprite","hand","handAnim","tipsAnim","quan","data","tipClip","quan_lan","quan_huang"],["cc.SpriteFrame",["cc.Node",["_name","_active","_components","_prefab","_contentSize","_parent","_trs","_children"],1,9,4,5,1,7,2],["cc.Widget",["_alignFlags","_top","_left","_right","_verticalCenter","_horizontalCenter","_isAbsHorizontalCenter","_bottom","_originalWidth","_originalHeight","node"],-7,1],["cc.Sprite",["_sizeMode","_type","node","_materials","_spriteFrame"],1,1,3,6],["cc.Node",["_name","_active","_parent","_components","_prefab","_contentSize","_trs","_children"],1,1,12,4,5,7,2],["cc.PrefabInfo",["fileId","root"],2,1],["cc.Animation",["_enabled","node","_clips"],2,1,3],["cc.Prefab",["_name"],2],["cc.Node",["_name","_active","_parent","_components","_prefab","_contentSize"],1,1,2,4,5],["57f79KAb0tNU7HjHMpUOk2e",["node","quan","tipsAnim","handAnim","hand","sprite","btnX","icon_play","icon_stop","tipClip","quan_lan","quan_huang"],3,1,1,1,1,1,1,1,1,1,6,6,6],["d7912kM6VxIgoOHkOzKc7g4",["node"],3,1],["cc.Button",["node","clickEvents"],3,1,9],["cc.ClickEvent",["_componentId","handler","target"],1,1],["cc.AnimationClip",["_name","_duration","sample","wrapMode","curveData"],-2],["cc.AudioClip",["_name","_native","duration"],0]],[[5,0,1,2],[3,2,3,4,1],[1,0,1,5,2,3,4,6,3],[2,0,2,1,10,4],[1,0,1,5,2,3,4,3],[2,0,2,3,1,7,8,9,10,8],[3,0,2,3,4,2],[7,0,2],[1,0,7,2,3,4,2],[1,0,5,2,3,4,6,2],[4,0,2,7,3,4,5,6,2],[4,0,1,2,3,4,5,6,3],[8,0,1,2,3,4,5,3],[9,0,1,2,3,4,5,6,7,8,9,10,11,1],[5,1,1],[2,0,4,5,6,10,5],[2,0,3,1,10,4],[10,0,1],[3,1,0,2,3,4,3],[3,2,3,1],[11,0,1,1],[12,0,1,2,3],[6,1,2,1],[6,0,1,2,2],[13,0,1,2,3,4,6],[14,0,1,2,4]],[[[[7,"hitItem"],[8,"hitItem",[-11,-12,-13,-14,-15,-16,-17,-18],[[13,-10,-9,-8,-7,-6,-5,-4,-3,-2,19,20,21]],[14,-1],[5,351,93]],[10,"hand",1,[-22,-23],[[-19,[15,18,-35,0.1,false,-20],[17,-21]],1,4,4],[0,"9aI5le42RBv5GR0xkx1QW1",1],[5,78,78],[35.1,-35,0,0,0,0,1,1,1,1]],[2,"btn_x",false,1,[[1,-24,[6],7],[20,-25,[[21,"57f79KAb0tNU7HjHMpUOk2e","onClickHide",1]]],[3,9,-30,-30,-26]],[0,"49bqoo7I9FCKRZC0ySxp3O",1],[5,34,34],[-188.5,59.5,0,0,0,0,1,1,1,1]],[11,"icon_tips",false,1,[[[1,-27,[0],1],-28,[16,33,-53.85499999999999,-51.726,-29]],4,1,4],[0,"3ffMrh7m1CyZDq4KfPs7IU",1],[5,46,67],[206.355,64.726,0,0,0,0,1,1,1,1]],[2,"icon_play",false,1,[[1,-30,[8],9],[3,9,-21.30600000000001,-47.931,-31]],[0,"a3Ou7g0PRAKpk6eoBoqYHr",1],[5,42,25],[-175.806,81.931,0,0,0,0,1,1,1,1]],[2,"icon_stop",false,1,[[1,-32,[10],11],[3,9,-21.578000000000003,-48.06699999999999,-33]],[0,"bdj7Z5C1hG9ZUpslIq23db",1],[5,42,25],[-176.078,82.067,0,0,0,0,1,1,1,1]],[4,"bg_quan",false,1,[[6,0,-34,[12],13],[5,45,-23,-23,-23,-23,170,100,-35]],[0,"f7H0+H+qJGh5CiCBaESrqN",1],[5,397,139]],[4,"bg_quan_old",false,1,[[18,1,0,-36,[3],4],[5,45,-23,-23,-23,-23,170,100,-37]],[0,"5bDJee3rVFeaYgoeDYafmQ",1],[5,397,139]],[22,4,[2]],[12,"sprite",false,1,[-38],[0,"b9fWLpmVVF2qpZu9r009Ps",1],[5,351,93]],[19,10,[5]],[2,"icon_dian",false,2,[[1,-39,[14],15]],[0,"85Cu0e6IdO7rehoMCnMUPa",1],[5,49,49],[-22.199,34,0,0,0,0,1,1,1,1]],[9,"icon_hand",2,[[6,0,-40,[16],17]],[0,"60grmEaEVCx7SsKEadDwBA",1],[5,52,50],[-1.579,19.664,0,0,0,0,1,1,1,1]],[23,false,2,[18]]],0,[0,4,1,0,5,6,0,6,5,0,7,3,0,8,11,0,9,2,0,10,14,0,11,9,0,12,7,0,0,1,0,-1,4,0,-2,8,0,-3,10,0,-4,3,0,-5,5,0,-6,6,0,-7,7,0,-8,2,0,-1,14,0,0,2,0,0,2,0,-1,12,0,-2,13,0,0,3,0,0,3,0,0,3,0,0,4,0,-2,9,0,0,4,0,0,5,0,0,5,0,0,6,0,0,6,0,0,7,0,0,7,0,0,8,0,0,8,0,-1,11,0,0,12,0,0,13,0,13,1,40],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,11,14],[-1,1,-1,-1,1,-1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,14,15,16,3,1,3],[0,4,1,0,5,0,0,6,0,7,0,8,0,2,0,9,0,10,3,11,2,12,1,13,3]],[[{"name":"bg_quan_huang","rect":[35,35,100,100],"offset":[0,0],"originalSize":[170,170],"capInsets":[0,0,0,0]}],[0],0,[0],[2],[14]],[[{"name":"icon_play","rect":[0,0,42,25],"offset":[0,0],"originalSize":[42,25],"capInsets":[0,0,0,0]}],[0],0,[0],[2],[15]],[[{"name":"icon_dian","rect":[0,0,49,49],"offset":[0,0],"originalSize":[49,49],"capInsets":[0,0,0,0]}],[0],0,[0],[2],[16]],[[{"name":"bg_quan_lan","rect":[34,35,100,100],"offset":[-1,0],"originalSize":[170,170],"capInsets":[0,0,0,0]}],[0],0,[0],[2],[17]],[[{"name":"bg_quan","rect":[0,0,170,100],"offset":[0,0],"originalSize":[170,100],"capInsets":[31,31,31,31]}],[0],0,[0],[2],[18]],[[[24,"tips",0.5,40,2,{"props":{"opacity":[{"frame":0,"value":255,"curve":"cubicIn"},{"frame":0.25,"value":0,"curve":"cubicIn"},{"frame":0.5,"value":255}]}}]],0,0,[],[],[]],[[{"name":"icon_stop","rect":[0,0,42,25],"offset":[0,0],"originalSize":[42,25],"capInsets":[0,0,0,0]}],[0],0,[0],[2],[19]],[[{"name":"icon_tips","rect":[0,0,46,67],"offset":[0,0],"originalSize":[46,67],"capInsets":[0,0,0,0]}],[0],0,[0],[2],[20]],[[{"name":"btn_x","rect":[0,0,34,34],"offset":[0,0],"originalSize":[34,34],"capInsets":[0,0,0,0]}],[0],0,[0],[2],[21]],[[{"name":"bg_bottom","rect":[0,0,351,93],"offset":[0,0],"originalSize":[351,93],"capInsets":[0,0,0,0]}],[0],0,[0],[2],[22]],[[[25,"提示",".mp3",1.7487],-1],0,0,[],[],[]]]]
\ No newline at end of file
[1,["ecpdLyjvZBwrvm+cedCcQy","65mJJDA61FcolKwdRxLOgs","c3H4Hzg9tLRqXDozVywS5/","2c59WNtv5O96Eo3nb2cqgD","b9PeKj6tVKS7J0IeGg1jxY","887AVyKrhPTK8ND133qWil","d5yS2hQk1JiLVdSupkB84u","60apvKpHJCLqjXpX/kouBX","98ZjcIfq1M+7ws0VxEZSxh","e5T6qVbndI94w3sdv/Znwb","95QFuuwFZDaJPcgJ4bPtYc","98jaJamRFG4YSe4jOqVVgn","11FtUjwdBPs6isc7gNtsEM","c2YOfTmqdGypn1fKXzH3/v","48Ezf1pjVCN4pnejf9WfEZ","75RqMzHYtMOqaZskYz2YfT","24JLpmId9IRbSo6hRB65GT","397xk5O/lNIaZ6vB3t5SGp","dcGvi65s9Lvr15VA2Ysg5o","17NOlyhqlHZr3Oe8x5NEXF","b5ogPZnW5AIKqbKLFRHiAz","bb6ljgkrdMFICLw+sx5rft","c62iEUrNZPi4f+Wyt9WgLb","36C+u4ix1EgayWvV179Hq+","58+Z76LCRAGLicXK5k3Vx0","d5409Z4OxF94C3Z5OnAi39"],["node","_spriteFrame","_textureSetter","_parent","_N$target","hitPre","btn_audio","movepageNode","pageNumNode","rightNode","leftNode","picTempNode","picNode","btn2","btn1","btn0","scene","btnClip"],[["cc.Node",["_name","_active","_id","_opacity","_contentSize","_parent","_components","_trs","_children","_anchorPoint","_color"],-1,5,1,9,7,2,5,5],"cc.SpriteFrame",["cc.Widget",["_alignFlags","_top","_right","_left","_originalWidth","_originalHeight","node"],-3,1],["cc.Button",["zoomScale","_N$transition","node","clickEvents","_N$target"],1,1,9,1],["cc.Sprite",["_srcBlendFactor","_sizeMode","node","_materials","_spriteFrame"],1,1,3,6],["cc.AudioClip",["_name","_native","duration"],0],["cc.SceneAsset",["_name","asyncLoadAssets"],1],["cc.Node",["_name","_parent","_children","_components","_contentSize","_trs"],2,1,12,9,5,7],["cc.Canvas",["_fitHeight","node","_designResolution"],2,1,5],["c238bwNxXtAHqIXQECY4nQz",["node","picNode","picTempNode","leftNode","rightNode","pageNumNode","movepageNode","btn_audio","btnClip"],3,1,1,1,1,1,1,1,1,6],["5bb7aCdT2RLSYYLIb2z0J6C",["node","btn0","btn1","btn2"],3,1,1,1,1],["cc.ClickEvent",["_componentId","handler","target"],1,1],["fccd421MOxLZq6iwp/QwDAf",["node","borders","hitPre"],3,1,2,6],["cc.Scene",["_name","_active","autoReleaseAssets","_children","_anchorPoint","_trs"],0,2,5,7],["cc.Camera",["_clearFlags","_depth","node"],1,1],["cc.Label",["_string","_N$horizontalAlign","_N$verticalAlign","node","_materials"],0,1,3]],[[4,2,3,4,1],[0,0,5,6,4,7,2],[0,0,5,6,4,2],[0,0,1,5,6,4,9,7,3],[11,0,1,2,3],[0,0,5,8,6,4,7,2],[0,0,1,5,6,4,7,3],[7,0,1,2,3,4,5,2],[2,0,6,2],[3,0,1,2,3,3],[12,0,1,2,1],[4,0,1,2,3,3],[5,0,1,2,4],[6,0,1,3],[0,0,2,8,6,4,7,3],[0,0,5,4,9,7,2],[0,0,5,7,2],[0,0,1,5,8,6,4,7,3],[0,0,3,5,6,4,7,3],[0,0,5,6,10,4,2],[0,0,1,5,6,4,3],[8,0,1,2,2],[2,0,2,1,6,4],[2,0,3,2,1,4,6,6],[2,0,3,1,6,4],[2,0,4,5,6,4],[9,0,1,2,3,4,5,6,7,8,1],[10,0,1,2,3,1],[3,2,3,4,1],[3,2,4,1],[4,0,1,2,3,4,3],[13,0,1,2,3,4,5,4],[14,0,1,2,3],[15,0,1,2,3,4,4]],[[[{"name":"btn_audio-play3","rect":[0,0,82,65],"offset":[0,0],"originalSize":[82,65],"capInsets":[0,0,0,0]}],[1],0,[0],[2],[4]],[[{"name":"bg_number0","rect":[0,0,138,48],"offset":[0,0],"originalSize":[138,48],"capInsets":[0,0,0,0]}],[1],0,[0],[2],[5]],[[[12,"按钮",".mp3",0.130612],-1],0,0,[],[],[]],[[{"name":"btn_last","rect":[0,0,64,68],"offset":[0,0],"originalSize":[64,68],"capInsets":[0,0,0,0]}],[1],0,[0],[2],[6]],[[[13,"Book_Read",null],[14,"Canvas","a5esZu+45LA5mBpvttspPD",[-11,-12,-13,-14,-15,-16,-17,-18,-19,-20,-21,-22],[[21,false,-1,[5,1280,720]],[8,45,-2],[26,-10,-9,-8,-7,-6,-5,-4,-3,37]],[5,1280,720],[640,360,0,0,0,0,1,1,1,1]],[5,"btn_audio",1,[-29,-30,-31],[[27,-26,-25,-24,-23],[28,-28,[[4,"c238bwNxXtAHqIXQECY4nQz","onClickAudio",1]],-27]],[5,82,65],[0,-325.423,0,0,0,0,1,1,1,1]],[7,"pic",1,[[-35,[15,"items",-36,[5,720,720],[0,0,1],[-360,360,0,0,0,0,1,1,1,1]],-37,-38],1,4,1,1],[[10,-34,[-32,-33],21]],[5,1280,720],[0,0,0,0,0,0,1,1,1,0]],[7,"pic_temp",1,[[-42,[16,"items",-43,[1274,0,0,0,0,0,1,1,1,1]],-44,-45],1,4,1,1],[[10,-41,[-39,-40],27]],[5,1280,720],[-1280,0,0,0,0,0,1,1,1,0]],[17,"bottomPart",false,1,[-47,-48,-49],[[8,36,-46]],[5,351,91],[464.5,-314.5,0,0,0,0,1,1,1,1]],[5,"page_num",1,[-52],[[0,-50,[35],36],[22,33,1.8110000000000355,8.937000000000012,-51]],[5,138,48],[569.189,327.063,0,0,0,0,1,1,1,1]],[2,"movepage",1,[[29,-54,-53]],[5,1280,720]],[6,"btn_left",false,5,[[9,1.1,3,-55,[[4,"c238bwNxXtAHqIXQECY4nQz","onClickLeft",1]]],[0,-56,[30],31]],[5,64,68],[42.455,-7.606,0,0,0,0,1,1,1,0]],[6,"btn_right",false,5,[[9,1.1,3,-57,[[4,"c238bwNxXtAHqIXQECY4nQz","onClickRight",1]]],[0,-58,[32],33]],[5,64,68],[135.449,-6.961,0,0,0,0,1,1,1,0]],[1,"bg_top",1,[[0,-59,[4],5],[23,41,-27,-27,-20,1334,-60]],[5,1334,132],[0,314,0,0,0,0,1,1,1,1]],[18,"btn_return0",0,1,[[0,-61,[8],9],[24,9,6.013000000000034,3.52800000000002,-62]],[5,82,65],[-601.187,330.472,0,0,0,0,1,0.8,0.8,1]],[1,"0",2,[[0,-63,[10],11]],[5,82,65],[0,0.107,0,0,0,0,1,1,1,1]],[1,"1",2,[[0,-64,[12],13]],[5,82,65],[0,0.083,0,0,0,0,1,1,1,1]],[1,"2",2,[[0,-65,[14],15]],[5,82,65],[0,0.107,0,0,0,0,1,1,1,1]],[2,"icon",3,[[11,1,0,-66,[16]],[25,45,636,396,-67]],[5,1280,720]],[3,"bg_move",false,3,[[0,-68,[17],18]],[5,14,720],[0,1,0.5],[-639.807,0,0,0,0,0,1,1,1,1]],[3,"bg_move",false,3,[[0,-69,[19],20]],[5,14,720],[0,0,0.5],[640.413,0,0,0,0,0,1,1,1,1]],[3,"bg_move",false,4,[[0,-70,[23],24]],[5,14,720],[0,1,0.5],[-626,0,0,0,0,0,1,1,1,1]],[3,"bg_move",false,4,[[0,-71,[25],26]],[5,14,720],[0,0,0.5],[626,0,0,0,0,0,1,1,1,1]],[31,"New Node",false,true,[1],[0,0,0],[0,0,0,0,0,0,1,1,1,1]],[1,"Main Camera",1,[[32,7,-1,-72]],[5,1280,720],[0,0,362.85545494732423,0,0,0,1,1,1,1]],[19,"bg",1,[[30,1,0,-73,[0],1]],[4,4294636517],[5,1280,720]],[2,"bg_bg",1,[[0,-74,[2],3]],[5,1280,720]],[1,"bg_book",1,[[0,-75,[6],7]],[5,1160,700],[0,4.06,0,0,0,0,1,1,1,1]],[1,"icon",4,[[11,1,0,-76,[22]]],[5,1266,706],[0,0,0,0,0,0,1,1,1,0]],[20,"bg_bottom",false,5,[[0,-77,[28],29]],[5,351,93]],[2,"text",6,[[33,"0/3",1,1,-78,[34]]],[5,55.61,50.4]]],0,[0,0,1,0,0,1,0,6,2,0,7,7,0,8,6,0,9,9,0,10,8,0,11,4,0,12,3,0,0,1,0,-1,21,0,-2,22,0,-3,23,0,-4,10,0,-5,24,0,-6,7,0,-7,11,0,-8,2,0,-9,3,0,-10,4,0,-11,5,0,-12,6,0,13,14,0,14,13,0,15,12,0,0,2,0,4,2,0,0,2,0,-1,12,0,-2,13,0,-3,14,0,-1,16,0,-2,17,0,0,3,0,-1,15,0,3,3,0,-3,16,0,-4,17,0,-1,18,0,-2,19,0,0,4,0,-1,25,0,3,4,0,-3,18,0,-4,19,0,0,5,0,-1,26,0,-2,8,0,-3,9,0,0,6,0,0,6,0,-1,27,0,4,7,0,0,7,0,0,8,0,0,8,0,0,9,0,0,9,0,0,10,0,0,10,0,0,11,0,0,11,0,0,12,0,0,13,0,0,14,0,0,15,0,0,15,0,0,16,0,0,17,0,0,18,0,0,19,0,0,21,0,0,22,0,0,23,0,0,24,0,0,25,0,0,26,0,0,27,0,16,20,1,3,20,78],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,1,-1,-1,1,-1,1,5,-1,-1,1,-1,1,5,-1,1,-1,1,-1,1,-1,-1,1,17],[0,2,0,2,0,7,0,8,0,9,0,10,0,11,0,12,0,0,1,0,1,3,0,0,1,0,1,3,0,13,0,14,0,15,0,0,16,17]],[[{"name":"bg_background0","rect":[0,0,1334,132],"offset":[0,0],"originalSize":[1334,132],"capInsets":[0,0,0,0]}],[1],0,[0],[2],[18]],[[{"name":"bg_move","rect":[0,0,14,720],"offset":[0,0],"originalSize":[14,720],"capInsets":[0,22,0,33]}],[1],0,[0],[2],[19]],[[{"name":"btn_next","rect":[0,0,64,68],"offset":[0,0],"originalSize":[64,68],"capInsets":[0,0,0,0]}],[1],0,[0],[2],[20]],[[{"name":"btn_audio-play1","rect":[0,0,82,65],"offset":[0,0],"originalSize":[82,65],"capInsets":[0,0,0,0]}],[1],0,[0],[2],[21]],[[{"name":"bg_book0","rect":[0,0,1160,700],"offset":[0,0],"originalSize":[1160,700],"capInsets":[0,0,0,0]}],[1],0,[0],[2],[22]],[[{"name":"btn_audio-play2","rect":[0,0,82,65],"offset":[0,0],"originalSize":[82,65],"capInsets":[0,0,0,0]}],[1],0,[0],[2],[23]],[[{"name":"bg_bg","rect":[0,0,1280,720],"offset":[0,0],"originalSize":[1280,720],"capInsets":[0,0,0,0]}],[1],0,[0],[2],[24]],[[{"name":"btn_return0","rect":[0,0,82,65],"offset":[0,0],"originalSize":[82,65],"capInsets":[0,0,0,0]}],[1],0,[0],[2],[25]]]]
\ No newline at end of file
{"type":"cc.Texture2D","data":"0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1"}
\ No newline at end of file
[1,["edW4Hi7ntPdrQknfNA5fKY"],["_textureSetter"],["cc.SpriteFrame"],0,[{"name":"icon_hand","rect":[0,0,69,78],"offset":[0,0],"originalSize":[69,78],"capInsets":[0,0,0,0]}],[0],0,[0],[0],[0]]
\ No newline at end of file
[1,["1dJ365QGFOiJkF38bPaKZy"],["_textureSetter"],["cc.SpriteFrame"],0,[{"name":"icon_hand2","rect":[0,2,69,76],"offset":[0,-1],"originalSize":[69,78],"capInsets":[0,0,0,0]}],[0],0,[0],[0],[0]]
\ No newline at end of file
[1,0,0,[["cc.TTFFont",["_name","_native"],1]],[[0,0,1,3]],[[0,"BRLNSDB","BRLNSDB.ttf"],-1],0,0,[],[],[]]
\ No newline at end of file
[1,["9caMSFuCNDko8t3umyyCWz"],["_textureSetter"],["cc.SpriteFrame"],0,[{"name":"bg_desk0","rect":[0,0,1334,663],"offset":[0,0],"originalSize":[1334,663],"capInsets":[0,0,0,0]}],[0],0,[0],[0],[0]]
\ No newline at end of file
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment