rt-sim-training-client/src/views/competitionManage/generatePaper.vue

157 lines
5.7 KiB
Vue
Raw Normal View History

2020-05-26 17:33:19 +08:00
<template>
<div style="width: 100%;height: 100%;">
<div style="margin-top: 10px;position: absolute; right: 50px;">
<el-button size="small" type="primary">导出试题</el-button>
<el-button size="small" type="primary" @click="goBack">返回</el-button>
</div>
2020-05-26 18:43:59 +08:00
<el-card style="width: 45%;margin-left: 50px;margin-top: 60px;display: inline-block;height: calc(100% - 100px);">
2020-05-26 17:33:19 +08:00
<div slot="header">
<span>理论试题列表</span>
2020-05-26 18:43:59 +08:00
<el-button style="float: right; padding: 3px 0" type="text" @click="addTheoryQuestion">添加试题</el-button>
<el-button style="float: right; padding: 3px 0;margin-right: 5px" type="text" @click="theoryReview">预览</el-button>
2020-05-26 17:33:19 +08:00
</div>
<el-table
2020-05-26 18:43:59 +08:00
:data="theoryQuestionList"
2020-05-26 17:33:19 +08:00
style="width: 100%"
>
<el-table-column
prop="type"
label="类型"
>
<template slot-scope="scope">
<el-tag
type="primary"
disable-transitions
>{{ QuestionTypeMap[scope.row.type] }}</el-tag>
</template>
</el-table-column>
<el-table-column
prop="topic"
label="题目"
/>
<el-table-column
prop="score"
label="分值"
2020-05-27 10:33:26 +08:00
>
<template slot-scope="scope">
<span v-if="!scope.row.editScope" @click="editScope(scope.row)">{{ scope.row.score }}</span>
<i v-if="!scope.row.editScope" class="el-icon-edit" @click="editScope(scope.row)" />
2020-05-27 10:49:53 +08:00
<el-input v-if="scope.row.editScope" :ref="'input'+scope.row.id" v-model="scope.row.score" size="small" style="width: 50px;" @blur="editScopeBlur(scope.row)" />
2020-05-27 10:33:26 +08:00
</template>
</el-table-column>
<el-table-column prop="operate" label="操作11">
2020-05-26 17:33:19 +08:00
<template slot-scope="scope">
2020-05-27 10:33:26 +08:00
<el-button type="warning" size="mini" @click="removeTheoryQuestion(scope)">移出</el-button>
2020-05-26 17:33:19 +08:00
</template>
</el-table-column>
</el-table>
</el-card>
2020-05-26 18:43:59 +08:00
<el-card style="width: 45%;margin-left: calc(10% - 100px);margin-top: 60px;display: inline-block;height: calc(100% - 100px);">
2020-05-26 17:33:19 +08:00
<div slot="header">
<span>实操试题列表</span>
2020-05-27 11:07:04 +08:00
<el-button style="float: right; padding: 3px 0" type="text" @click="addOperateQuestion">添加试题</el-button>
2020-05-26 18:43:59 +08:00
<el-button style="float: right; padding: 3px 0;margin-right: 5px" type="text" @click="operateReview">预览</el-button>
2020-05-26 17:33:19 +08:00
</div>
<el-table
2020-05-27 10:33:26 +08:00
:data="operateQuestionList"
2020-05-26 17:33:19 +08:00
style="width: 100%"
>
<el-table-column
2020-05-27 11:07:04 +08:00
prop="name"
label="实操名称"
/>
2020-05-26 17:33:19 +08:00
<el-table-column
2020-05-27 11:07:04 +08:00
prop="creatorName"
label="创建人"
2020-05-26 17:33:19 +08:00
/>
2020-05-27 10:33:26 +08:00
<el-table-column prop="score" label="分值">
<template slot-scope="scope">
<el-input v-model="scope.row.score" size="small" />
</template>
</el-table-column>
2020-05-26 17:33:19 +08:00
<el-table-column prop="operate" label="操作">
<template slot-scope="scope">
2020-05-27 10:33:26 +08:00
<el-button type="warning" size="mini" @click="removeOperateQuestion(scope)">移出</el-button>
2020-05-26 17:33:19 +08:00
</template>
</el-table-column>
</el-table>
</el-card>
2020-05-27 10:33:26 +08:00
<theory-review ref="theoryReview" :theory-question-list="theoryQuestionList" />
<theory-question ref="theoryQuestion" :theory-index-list="theoryIndexList" @addQuestion="addTheoryQuestionList" @removeQuestion="removeTheoryQuestion" />
2020-05-27 11:07:04 +08:00
<operate-question ref="operateQuestion" :operate-index-list="operateIndexList" @addQuestion="addOperateQuestionList" @removeQuestion="removeOperateQuestion" />
2020-05-26 17:33:19 +08:00
</div>
</template>
<script>
2020-05-26 18:43:59 +08:00
import TheoryReview from './theoryReview';
import TheoryQuestion from './theoryQuestion';
2020-05-27 11:07:04 +08:00
import OperateQuestion from './operateQuestion';
2020-05-26 17:33:19 +08:00
export default {
name: 'GeneratPaper',
2020-05-26 18:43:59 +08:00
components: {
TheoryReview,
2020-05-27 11:07:04 +08:00
TheoryQuestion,
OperateQuestion
2020-05-26 18:43:59 +08:00
},
2020-05-26 17:33:19 +08:00
data() {
return {
QuestionTypeMap: {
select: '选择题',
judge: '判断题'
2020-05-26 18:43:59 +08:00
},
2020-05-27 10:33:26 +08:00
theoryQuestionList: [], // 理论试卷试题列表
operateQuestionList: [], // 实操试卷试题列表
theoryIndexList: [], // 理论试卷试题索引列表
operateIndexList: []// 实操试卷试题索引列表
2020-05-26 17:33:19 +08:00
};
},
2020-05-26 17:35:55 +08:00
methods: {
2020-05-27 10:33:26 +08:00
removeOperateQuestion(row) {
const index = this.operateIndexList.indexOf(row.id);
this.operateIndexList.splice(index, 1);
this.operateQuestionList.splice(index, 1);
},
removeTheoryQuestion(row) {
const index = this.theoryIndexList.indexOf(row.id);
this.theoryIndexList.splice(index, 1);
this.theoryQuestionList.splice(index, 1);
},
addTheoryQuestionList(row) {
this.theoryIndexList.push(row.id);
this.theoryQuestionList.push(row);
},
addOperateQuestionList(row) {
this.operateIndexList.push(row.id);
this.operateQuestionList.push(row);
},
2020-05-26 18:43:59 +08:00
addTheoryQuestion() {
this.$refs.theoryQuestion.doShow();
},
2020-05-27 11:07:04 +08:00
addOperateQuestion() {
this.$refs.operateQuestion.doShow();
},
2020-05-26 17:33:19 +08:00
goBack() {
this.$router.go(-1);
2020-05-26 18:43:59 +08:00
},
theoryReview() {
this.$refs.theoryReview.doShow();
},
operateReview() {
2020-05-27 10:33:26 +08:00
},
editScope(row) {
this.$set(row, 'editScope', true);
this.$nextTick(() => {
2020-05-27 10:49:53 +08:00
this.$refs['input' + row.id].focus();
2020-05-27 10:33:26 +08:00
});
},
editScopeBlur(row) {
this.$set(row, 'editScope', false);
2020-05-26 17:33:19 +08:00
}
}
};
</script>
<style scoped>
</style>