Commit 3b3e1976 authored by zhangjianqian's avatar zhangjianqian

Merge remote-tracking branch 'origin/master'

parents 018af861 d057e3d3
...@@ -77,7 +77,7 @@ ...@@ -77,7 +77,7 @@
</div> </div>
</el-form-item> </el-form-item>
<el-form-item <!-- <el-form-item
class="noAttr" class="noAttr"
:label="`选项${form.questions.length + 1}`" :label="`选项${form.questions.length + 1}`"
prop="" prop=""
...@@ -99,17 +99,16 @@ ...@@ -99,17 +99,16 @@
:class="{ active: answerNum === form.questions.length }" :class="{ active: answerNum === form.questions.length }"
> >
设为正确答案 设为正确答案
</div> </div> -->
<div style="padding-left:30px">
<el-button size="mini" type="primary" @click.prevent="add(addValue)"
>新增选项</el-button
>
</div>
<el-button <!-- </div>
size="mini"
type="primary"
@click.prevent="add(addValue)"
>新增</el-button
>
</div>
</div> </div>
</el-form-item> </el-form-item> -->
</div> </div>
</el-form> </el-form>
</div> </div>
...@@ -143,7 +142,7 @@ export default { ...@@ -143,7 +142,7 @@ export default {
return { return {
form: { form: {
topicTitle: "", topicTitle: "",
questions: [{ value: "" }, { value: "" }, { value: "" }], questions: [{ value: "" }, { value: "" }],
}, },
answerNum: null, answerNum: null,
addValue: "", addValue: "",
...@@ -176,11 +175,11 @@ export default { ...@@ -176,11 +175,11 @@ export default {
getQuestion() { getQuestion() {
getQuestion({ courseId: this.courseId }).then((res) => { getQuestion({ courseId: this.courseId }).then((res) => {
// 如果是修改 就是原来的值,如果不是,就是总数+1 // 如果是修改 就是原来的值,如果不是,就是总数+1
console.log(res) console.log(res);
if (this.topicId) { if (this.topicId) {
res.rows.forEach((item, index) => { res.rows.forEach((item, index) => {
if (item.topicId == this.topicId) { if (item.topicId == this.topicId) {
this.questionNextNum = index+1; this.questionNextNum = index + 1;
} }
}); });
} else { } else {
......
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