|
@@ -216,7 +216,7 @@
|
|
|
选择模板
|
|
|
</div>
|
|
|
<div
|
|
|
- v-if="!topicIitem.data && topicIitem.is_addModule"
|
|
|
+ v-if="!topicIitem.data && topicIitem.is_add_module"
|
|
|
class="addoption"
|
|
|
@click="addModule(toindex, rowIndex, lineIndex, topicIitem)"
|
|
|
>
|
|
@@ -458,7 +458,7 @@ export default {
|
|
|
for (let j = 0; j < this.line; j++) {
|
|
|
let obj = {
|
|
|
text: `第${i + 1}行,第${j + 1}列`,
|
|
|
- is_addModule: true,
|
|
|
+ is_add_module: true,
|
|
|
is_edit: true,
|
|
|
};
|
|
|
rowArr.push(obj);
|
|
@@ -477,7 +477,7 @@ export default {
|
|
|
this.TopicIndex = topicIndex;
|
|
|
this.RowIndex = rowindex;
|
|
|
this.LineIndex = lineIndex;
|
|
|
- item.is_addModule = false;
|
|
|
+ item.is_add_module = false;
|
|
|
},
|
|
|
// 删除模板
|
|
|
remoeModule(topicIndex, rowindex, lineIndex, item) {
|
|
@@ -496,7 +496,7 @@ export default {
|
|
|
this.TopicIndex = null;
|
|
|
this.RowIndex = null;
|
|
|
this.LineIndex = null;
|
|
|
- item.is_addModule = true;
|
|
|
+ item.is_add_module = true;
|
|
|
},
|
|
|
handleClosePre() {
|
|
|
if (window.stopAudioVoice) window.stopAudioVoice();
|
|
@@ -582,7 +582,6 @@ export default {
|
|
|
) {
|
|
|
this.$message.warning("每列只能添加一个模板");
|
|
|
} else {
|
|
|
- debugger;
|
|
|
console.log("不存在");
|
|
|
this.module_type = item.type;
|
|
|
this.$set(
|