|
@@ -149,13 +149,13 @@ export default {
|
|
|
if (!this.curQue.hasOwnProperty("titleBg")) {
|
|
|
this.$set(this.curQue, "titleBg", "themeColor");
|
|
|
}
|
|
|
- let data = JSON.parse(JSON.stringify(this.curQue));
|
|
|
- data.option.forEach((item) => {
|
|
|
+ // let data = JSON.parse(JSON.stringify(this.curQue));
|
|
|
+ this.curQue.option.forEach((item) => {
|
|
|
if (!item[0].pinyin_site) {
|
|
|
item[0].pinyin_site = "first"; //拼音位置
|
|
|
}
|
|
|
});
|
|
|
- this.curQue = JSON.parse(JSON.stringify(data));
|
|
|
+ // this.curQue = JSON.parse(JSON.stringify(data));
|
|
|
}
|
|
|
},
|
|
|
beforeCreate() {}, //生命周期 - 创建之前
|