|
@@ -1579,7 +1579,7 @@
|
|
|
<el-button
|
|
|
@click="editTest(scope.row)"
|
|
|
type="primary"
|
|
|
- v-if="((examineData && examineData.type == 1) || !examineData) && review !='1'"
|
|
|
+ v-if="((examineData && examineData.type == 1) || !examineData) && review !='1' && scope.row.isReview!=1"
|
|
|
size="small"
|
|
|
>编辑</el-button
|
|
|
>
|
|
@@ -1600,7 +1600,7 @@
|
|
|
@click="deleteTest(scope.row.id)"
|
|
|
type="primary"
|
|
|
size="small"
|
|
|
- v-if="((examineData && examineData.type == 1) || !examineData) && review !='1'"
|
|
|
+ v-if="((examineData && examineData.type == 1) || !examineData) && review !='1' && scope.row.isReview!=1"
|
|
|
>删除</el-button
|
|
|
>
|
|
|
</template>
|
|
@@ -2492,9 +2492,9 @@ export default {
|
|
|
for (let index = 0; index < kpl.length; index++) {
|
|
|
if (kpl[index].type == 3 && this.cueWord.fieldList.includes(kpl[index].json.title)) {
|
|
|
if (kpl[index].json.answer2) {
|
|
|
- userWork.push(kpl[index].json.title +':'+ kpl[index].json.answer2)
|
|
|
+ userWork.push(kpl[index].json.title +':'+ kpl[index].json.answer2)
|
|
|
}else{
|
|
|
- userWork.push(kpl[index].json.title +':'+ '')
|
|
|
+ userWork.push(kpl[index].json.title +':'+ '')
|
|
|
}
|
|
|
}
|
|
|
if (kpl[index].type == 5 && this.cueWord.fieldList.includes(kpl[index].json.title)) {
|
|
@@ -2705,9 +2705,9 @@ ${JSON.stringify(forAllList)}
|
|
|
for (let index = 0; index < kpl.length; index++) {
|
|
|
if (kpl[index].type == 3 && this.cueWord.fieldList.includes(kpl[index].json.title)) {
|
|
|
if (kpl[index].json.answer2) {
|
|
|
- userWork.push(kpl[index].json.title +':'+ kpl[index].json.answer2)
|
|
|
+ userWork.push(kpl[index].json.title +':'+ kpl[index].json.answer2)
|
|
|
}else{
|
|
|
- userWork.push(kpl[index].json.title +':'+ '')
|
|
|
+ userWork.push(kpl[index].json.title +':'+ '')
|
|
|
}
|
|
|
}
|
|
|
if (kpl[index].type == 5 && this.cueWord.fieldList.includes(kpl[index].json.title)) {
|
|
@@ -2945,7 +2945,7 @@ ${JSON.stringify(forAllList)}
|
|
|
// jiu评分
|
|
|
scoArr = this.scoListCopy.filter(item => !ids1.includes(item.id));
|
|
|
// console.log('scoArr',JSON.parse(JSON.stringify('scoArr')));
|
|
|
-
|
|
|
+
|
|
|
|
|
|
scoArr = [...this.scoList,...scoArr]
|
|
|
|