|
@@ -26,9 +26,9 @@
|
|
|
<div class="r_pub_button_retrun" @click="back">返回</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="cc_bottom" v-loading="loading">
|
|
|
- <div class="cc_b_left">
|
|
|
- <div v-if="!loading">
|
|
|
+ <div class="cc_bottom" v-loading="loading ">
|
|
|
+ <div class="cc_b_left" v-loading="getFileLoading">
|
|
|
+ <div v-if="courseInfoList">
|
|
|
<aiBoxRight :courseId="aiBoxRightCid" :worksArray="courseInfoList" ref="aiChat" @pushFileData="pushFileData" @clearFileData="clearFileData"></aiBoxRight>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -81,7 +81,8 @@ export default {
|
|
|
menuList:[],
|
|
|
menuIndex:0,
|
|
|
courseInfoList:[],
|
|
|
- loading:true
|
|
|
+ loading:true,
|
|
|
+ leftLoading:true,
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
@@ -111,6 +112,8 @@ export default {
|
|
|
})
|
|
|
Promise.all(promiseList).then(res=>{
|
|
|
console.log(this.courseInfoList)
|
|
|
+ console.log(res);
|
|
|
+ this.courseInfoList = res;
|
|
|
this.loading = false
|
|
|
})
|
|
|
}
|
|
@@ -199,7 +202,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
let obj = {courseId:testJson.courseId,name:testJson.title,worksArray:array}
|
|
|
- this.courseInfoList.push(obj)
|
|
|
+ // this.courseInfoList.push(obj)
|
|
|
resolve(obj)
|
|
|
})
|
|
|
.catch((err) => {
|
|
@@ -313,7 +316,7 @@ export default {
|
|
|
|
|
|
},
|
|
|
pushFileData(data){
|
|
|
- this.menuList.push(data)
|
|
|
+ this.menuList.push(data);
|
|
|
},
|
|
|
clearFileData(){
|
|
|
this.menuList = []
|
|
@@ -340,6 +343,14 @@ export default {
|
|
|
}
|
|
|
|
|
|
return _result
|
|
|
+ },
|
|
|
+ getFileLoading(){
|
|
|
+ let _result = this.cid;
|
|
|
+ if(this.menuList.length >= _result.split(',').length){
|
|
|
+ return false
|
|
|
+ }else{
|
|
|
+ return true
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
mounted(){
|