Commit b7c52902 authored by liujiangnan's avatar liujiangnan

fix: 删除日志

parent 324b324d
...@@ -251,16 +251,12 @@ export default class SceneComponent extends MyCocosSceneComponent { ...@@ -251,16 +251,12 @@ export default class SceneComponent extends MyCocosSceneComponent {
cc.audioEngine.playMusic(this.bgMusic1, true); cc.audioEngine.playMusic(this.bgMusic1, true);
// event.type !== 'BACK' // event.type !== 'BACK'
console.log('-----------------');
console.log(this.BASE_URL + '/api/syllabus/v1/list?orgid=507');
console.log('-----------------');
this.callNetworkApiGet(this.BASE_URL + '/api/syllabus/v1/list?orgid=507', (resp: any) => { this.callNetworkApiGet(this.BASE_URL + '/api/syllabus/v1/list?orgid=507', (resp: any) => {
console.log("***************************");
resp = JSON.parse(resp); resp = JSON.parse(resp);
if (resp.msg == 'success') { if (resp.msg == 'success') {
let { rows } = resp let { rows } = resp
rows = rows.filter(r => !r.has_courseware); rows = rows.filter(r => !r.has_courseware);
console.log('SpaceView', rows) console.log('SpaceView111', rows)
ctx.SpaceViewData = rows; ctx.SpaceViewData = rows;
ctx.currentDataset = rows; ctx.currentDataset = rows;
} }
......
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