Commit 84b0a149 authored by 黄奎's avatar 黄奎

页面修改

parent 7aa337aa
......@@ -40,6 +40,14 @@ export function CreateQuestion(questionKey) {
case "single":
AnswerList = optionListConfig();
break;
//单选题数字
case "single-number":
var temp = optionListConfig();
temp.forEach((item, index) => {
item.Name = index + 1;
})
AnswerList = temp;
break;
//多选题
case "multiple":
AnswerList = optionListConfig();
......
<!--简答题-->
<style>
.shortAnswerQuestion{
width:100%;
margin-bottom:20px;
.shortAnswerQuestion {
width: 100%;
margin-bottom: 20px;
}
</style>
<template>
<div class="shortAnswerQuestion">
<br/>
<br />
答案
<br />
<UeEditor v-model="setOption.Answer" :config="config"></UeEditor>
</div>
</template>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment