style:面授课查看答卷增加查看答卷弹框

This commit is contained in:
wyx
2023-02-16 16:32:39 +08:00
parent 18cc286294
commit 3000423281
2 changed files with 24 additions and 13 deletions

View File

@@ -147,7 +147,9 @@
<!-- 查看作业抽屉 -->
<CKWork v-model:CWvisible="CWvisible" />
<!-- 查看答卷抽屉 -->
<CQue v-model:CQvisible="CQvisible" />
<!-- <CQue v-model:CQvisible="CQvisible" /> -->
<!-- 查看答卷抽屉 -->
<CheckAnsware v-model:CAvisible="CAvisible" :datasource="datasource"/>
<!-- 导出作业提示框 -->
<ExportHomeWork
v-model:exportHomeWorkV="exportHomeWorkV"
@@ -160,8 +162,9 @@ import { toRefs, reactive } from "vue";
import { message } from "ant-design-vue";
import ASOver from "../AllStuOver.vue";
import CKWork from "../CheckWork.vue";
import CQue from "../CheckQue.vue";
// import CQue from "../CheckQue.vue";
import EScore from "../ExportScore.vue";
import CheckAnsware from '../CheckAnsware.vue'
// import * as api from "../../../api/index";
import * as api from "../../../api/index1";
import ExportHomeWork from "../../Modals/ExportHomeWork.vue";
@@ -170,9 +173,10 @@ export default {
components: {
EScore,
CKWork,
CQue,
// CQue,
ASOver,
ExportHomeWork,
CheckAnsware
},
props: {
FaceTeachModelVisible: {
@@ -424,6 +428,7 @@ export default {
],
exportHomeWorkV: false,
downloadUrl: null,
CAvisible: false
});
//面授直播管理列表操作
const ListOpera = () => {
@@ -452,9 +457,9 @@ export default {
class="operation"
style="cursor:pointer;margin-right:10px;color: rgba(56, 125, 247, 1)"
onClick={() => {
state.CQvisible = true;
}}
>
state.datasource = value;
state.CAvisible = true;
}}>
查看答卷
</a-button>}
</div>)
@@ -526,6 +531,7 @@ export default {
newData.push(res.data.data.records[i]);
}
state.tabledata = newData;
state.tabledata = [{name:'小星星',workStatus:1}];
ListOpera();
state.tableDataTotal = res.data.data.total;
state.tableDataTotal2 = res.data.data.total;