SanHQin пре 5 месеци
родитељ
комит
dc2e30b2af

+ 5 - 3
src/components/pages/test/check/aiBoxRight.vue

@@ -509,11 +509,10 @@ export default {
       }
     },
     worksArray: {
-      immediate: true,
+      immediate: false,
       deep: true,
       handler(newValue, oldValue) {
         if (newValue.length) {
-          console.log("newValue", newValue);
           this.$emit("clearFileData");
           this.fileId = [];
 					this.fileList = [];
@@ -577,7 +576,6 @@ export default {
     setJson(obj) {
       let array = obj.worksArray;
       let name = obj.name;
-
       const getAnswer = j => {
         if (j.type === 1) {
           return j.json.array
@@ -1507,6 +1505,10 @@ export default {
     //   });
     // });
     // if(this.worksArray.length){
+    //   this.$emit("clearFileData");
+    //   this.fileId = [];
+		// 	this.fileList = [];
+		// 	console.log("获取数据")
     // 	this.worksArray.forEach(el=>{
     // 		this.setJson(el)
     // 	})

+ 1 - 1
src/components/pages/test/choseCheck/csvTableView.vue

@@ -1,7 +1,7 @@
 <template>
   <div class="txtView" v-loading="loading">
 		<el-table :data="tableData" border style="width: 100%;height: 100%;" :header-cell-style="{ background: '#f1f1f1', fontSize: '16px' }" :fit="true" >
-			<el-table-column  :fixed="[].includes(index)" :label="item.label" :prop="item.label" v-for="(item,index) in columnList" :key="item"></el-table-column>
+			<el-table-column  :fixed="[].includes(index)" :label="item.label" :prop="item.label" v-for="(item,index) in columnList" :key="item.label+'_'+'index'"></el-table-column>
 		</el-table>
 		<!-- <div class="tv_content" v-text="content"></div> -->
 	</div>

+ 17 - 6
src/components/pages/test/choseCheck/index.vue

@@ -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(){