|
@@ -322,7 +322,7 @@ export default {
|
|
|
}
|
|
|
let result = pinyinUtil.getPinyin(value);
|
|
|
item.pinyin = result;
|
|
|
- this.$forceUpdate()
|
|
|
+ this.$forceUpdate();
|
|
|
},
|
|
|
// 删除提示选项
|
|
|
deleteHint(index) {
|
|
@@ -502,12 +502,10 @@ export default {
|
|
|
JSON.stringify(this.data_structure.headerList[0])
|
|
|
);
|
|
|
this.curQue.headerList.push(optionobj);
|
|
|
+ let obj = JSON.parse(JSON.stringify(this.data_structure.option[0][0]));
|
|
|
this.curQue.option.forEach((item) => {
|
|
|
- item.push(optionobj);
|
|
|
+ item.push(obj);
|
|
|
});
|
|
|
- setTimeout(() => {
|
|
|
- this.changeTh();
|
|
|
- }, 100);
|
|
|
},
|
|
|
// 关闭弹窗并清空数据
|
|
|
handleClose() {
|