|
@@ -6635,7 +6635,6 @@
|
|
|
:disabled="AIloading[toolIndex][wIndex].loading"
|
|
|
trigger="click"
|
|
|
>
|
|
|
- <!-- {{w}} -->
|
|
|
<markScore
|
|
|
:loading="AIloading[toolIndex][wIndex].loading"
|
|
|
ref="markSco"
|
|
@@ -6655,7 +6654,6 @@
|
|
|
<div
|
|
|
class="answerScore"
|
|
|
slot="reference"
|
|
|
- @click="refreshAssembly(wIndex)"
|
|
|
:class="{
|
|
|
rightW:
|
|
|
w.userid == userid ||
|
|
@@ -6664,8 +6662,8 @@
|
|
|
w.ateacher == userid,
|
|
|
}"
|
|
|
>
|
|
|
- <span v-if="AIloading[toolIndex][wIndex].sco">
|
|
|
- {{ AIloading[toolIndex][wIndex].loading? '评分中' : AIloading[toolIndex][wIndex].sco + "分" }}
|
|
|
+ <span v-if="AIloading[toolIndex][wIndex].sco && AIloading[toolIndex][wIndex].sco*1 != 0">
|
|
|
+ {{ AIloading[toolIndex][wIndex].loading ? '评分中' : AIloading[toolIndex][wIndex].sco + "分" }}
|
|
|
</span>
|
|
|
<span v-else>
|
|
|
{{AIloading[toolIndex][wIndex].loading? '评分中' :'评分'}}{{w.Total}}
|
|
@@ -12514,7 +12512,7 @@ export default {
|
|
|
[{'评价名称':'评价等级0-5(数字)'},{'评价名称':'评价等级0-5(数字)'},{'评价名称':'评价等级0-5(数字)'},{'评价名称':'评价等级0-5(数字)'}]
|
|
|
`
|
|
|
await this.$refs.markSco[0].aiupdetaSco(msg,con[i].userid,stage,task)
|
|
|
- this.refreshKey++
|
|
|
+ // this.refreshKey++
|
|
|
this.AIloading[toolIndex][i].loading=false
|
|
|
}
|
|
|
this.loopLoading[toolIndex].loading = false;
|
|
@@ -12527,14 +12525,11 @@ export default {
|
|
|
console.log(this.refreshKey)
|
|
|
},
|
|
|
updateLoading(payload){
|
|
|
- // console.log('payloadpayloadpayloadpayload',payload);
|
|
|
this.AIloading[payload.val][payload.val2].loading=payload.val3
|
|
|
},
|
|
|
updateDocSco(payload){
|
|
|
- // console.log('payloadpayloadpayloadpayload',payload);
|
|
|
-
|
|
|
- this.AIloading[payload.val][payload.val2].sco=payload.val3*1
|
|
|
- this.$forceUpdate();
|
|
|
+ // console.log(this.AIloading[payload.val][payload.val2].sco , payload.val3);
|
|
|
+ this.AIloading[payload.val][payload.val2].sco=payload.val3
|
|
|
},
|
|
|
gx(){
|
|
|
this.$forceUpdate();
|