|
@@ -19,11 +19,12 @@
|
|
|
class="pub_test_btn"
|
|
|
:class="{
|
|
|
pub_test_btn_text: item.value == 3,
|
|
|
- pub_test_btn_choose: item.value == 1,
|
|
|
+ pub_test_btn_choose: item.value == 1 || item.value == 10,
|
|
|
pub_test_btn_file: item.value == 5,
|
|
|
pub_test_btn_course: item.value == 6,
|
|
|
pub_test_btn_eva: item.value == 7,
|
|
|
pub_test_btn_time: item.value == 8,
|
|
|
+ pub_test_btn_choose2: item.value == 9,
|
|
|
}"
|
|
|
>
|
|
|
{{ item.label }}
|
|
@@ -207,9 +208,15 @@ export default {
|
|
|
if (this.checkC) {
|
|
|
let _check = this.checkC.replace("x", "").split("-");
|
|
|
let _json = this.manualJson[_check[0]];
|
|
|
+ let _topicType = ''
|
|
|
+ if(topicType == 9 || topicType == 10){
|
|
|
+ _topicType = 1
|
|
|
+ }else {
|
|
|
+ _topicType = topicType
|
|
|
+ }
|
|
|
let json = {
|
|
|
ttype: 1,
|
|
|
- type: topicType,
|
|
|
+ type: _topicType,
|
|
|
};
|
|
|
if (topicType == 1) {
|
|
|
json.json = {
|
|
@@ -251,6 +258,26 @@ export default {
|
|
|
title: "标题",
|
|
|
detail: "",
|
|
|
};
|
|
|
+ }else if (topicType == 9) {
|
|
|
+ json.json = {
|
|
|
+ title: "标题",
|
|
|
+ type: 1,
|
|
|
+ array: [
|
|
|
+ { option: "选项1", img: "" },
|
|
|
+ { option: "选项2", img: "" },
|
|
|
+ ],
|
|
|
+ answer: "",
|
|
|
+ };
|
|
|
+ }else if (topicType == 10) {
|
|
|
+ json.json = {
|
|
|
+ title: "标题",
|
|
|
+ type: 2,
|
|
|
+ array: [
|
|
|
+ { option: "选项1", img: "" },
|
|
|
+ { option: "选项2", img: "" },
|
|
|
+ ],
|
|
|
+ answer: "",
|
|
|
+ };
|
|
|
}
|
|
|
if (_json.array) {
|
|
|
if (type == 3 && _check.length == 2) {
|
|
@@ -292,9 +319,15 @@ export default {
|
|
|
}
|
|
|
} else {
|
|
|
if (type == 1) {
|
|
|
+ let _topicType = ''
|
|
|
+ if(topicType == 9 || topicType == 10){
|
|
|
+ _topicType = 1
|
|
|
+ }else {
|
|
|
+ _topicType = topicType
|
|
|
+ }
|
|
|
let json1 = {
|
|
|
ttype: 1,
|
|
|
- type: topicType,
|
|
|
+ type: _topicType,
|
|
|
};
|
|
|
|
|
|
if (topicType == 1) {
|
|
@@ -337,6 +370,26 @@ export default {
|
|
|
title: "标题",
|
|
|
detail: "",
|
|
|
};
|
|
|
+ } else if (topicType == 9) {
|
|
|
+ json1.json = {
|
|
|
+ title: "标题",
|
|
|
+ type: 1,
|
|
|
+ array: [
|
|
|
+ { option: "选项1", img: "" },
|
|
|
+ { option: "选项2", img: "" },
|
|
|
+ ],
|
|
|
+ answer: "",
|
|
|
+ };
|
|
|
+ } else if (topicType == 10) {
|
|
|
+ json1.json = {
|
|
|
+ title: "标题",
|
|
|
+ type: 2,
|
|
|
+ array: [
|
|
|
+ { option: "选项1", img: "" },
|
|
|
+ { option: "选项2", img: "" },
|
|
|
+ ],
|
|
|
+ answer: "",
|
|
|
+ };
|
|
|
}
|
|
|
this.manualJson.push(json1);
|
|
|
this.$forceUpdate()
|