|
@@ -257,7 +257,7 @@
|
|
|
</div>
|
|
</div>
|
|
|
<div class="table-item" style="width: 110px">
|
|
<div class="table-item" style="width: 110px">
|
|
|
<RichText
|
|
<RichText
|
|
|
- v-if="property.isGetContent && isChange"
|
|
|
|
|
|
|
+ v-if="property.isGetContent"
|
|
|
ref="richText"
|
|
ref="richText"
|
|
|
v-model="item.cixing"
|
|
v-model="item.cixing"
|
|
|
:inline="true"
|
|
:inline="true"
|
|
@@ -278,7 +278,7 @@
|
|
|
</div>
|
|
</div>
|
|
|
<div class="table-item" style="width: 200px">
|
|
<div class="table-item" style="width: 200px">
|
|
|
<RichText
|
|
<RichText
|
|
|
- v-if="property.isGetContent && isChange"
|
|
|
|
|
|
|
+ v-if="property.isGetContent"
|
|
|
ref="richText"
|
|
ref="richText"
|
|
|
v-model="item.definition_list"
|
|
v-model="item.definition_list"
|
|
|
:inline="true"
|
|
:inline="true"
|
|
@@ -291,7 +291,7 @@
|
|
|
</div>
|
|
</div>
|
|
|
<div class="table-item" style="width: 200px">
|
|
<div class="table-item" style="width: 200px">
|
|
|
<RichText
|
|
<RichText
|
|
|
- v-if="property.isGetContent && isChange"
|
|
|
|
|
|
|
+ v-if="property.isGetContent"
|
|
|
ref="richText"
|
|
ref="richText"
|
|
|
v-model="item.collocation"
|
|
v-model="item.collocation"
|
|
|
:inline="true"
|
|
:inline="true"
|
|
@@ -303,7 +303,7 @@
|
|
|
</div>
|
|
</div>
|
|
|
<div class="table-item" style="width: 300px">
|
|
<div class="table-item" style="width: 300px">
|
|
|
<RichText
|
|
<RichText
|
|
|
- v-if="property.isGetContent && isChange"
|
|
|
|
|
|
|
+ v-if="property.isGetContent"
|
|
|
ref="richText"
|
|
ref="richText"
|
|
|
v-model="item.liju_list"
|
|
v-model="item.liju_list"
|
|
|
:font-size="data?.unified_attrib?.font_size"
|
|
:font-size="data?.unified_attrib?.font_size"
|
|
@@ -322,7 +322,7 @@
|
|
|
</div>
|
|
</div>
|
|
|
<div class="table-item" style="width: 200px" v-for="(itemN, indexN) in data.addCol" :key="indexN">
|
|
<div class="table-item" style="width: 200px" v-for="(itemN, indexN) in data.addCol" :key="indexN">
|
|
|
<RichText
|
|
<RichText
|
|
|
- v-if="property.isGetContent && isChange"
|
|
|
|
|
|
|
+ v-if="property.isGetContent"
|
|
|
ref="richText"
|
|
ref="richText"
|
|
|
v-model="item[itemN.key]"
|
|
v-model="item[itemN.key]"
|
|
|
:inline="true"
|
|
:inline="true"
|
|
@@ -477,23 +477,10 @@ export default {
|
|
|
visible: false,
|
|
visible: false,
|
|
|
subtitleList: [],
|
|
subtitleList: [],
|
|
|
autoLoading: false,
|
|
autoLoading: false,
|
|
|
- isChange: true,
|
|
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
watch: {
|
|
watch: {
|
|
|
'data.new_word_list': 'handleMindMap',
|
|
'data.new_word_list': 'handleMindMap',
|
|
|
- 'data.unified_attrib': {
|
|
|
|
|
- handler(val) {
|
|
|
|
|
- if (val) {
|
|
|
|
|
- this.isChange = false;
|
|
|
|
|
- setTimeout(() => {
|
|
|
|
|
- this.isChange = true;
|
|
|
|
|
- }, 10);
|
|
|
|
|
- }
|
|
|
|
|
- },
|
|
|
|
|
- deep: true,
|
|
|
|
|
- immediate: true,
|
|
|
|
|
- },
|
|
|
|
|
},
|
|
},
|
|
|
created() {
|
|
created() {
|
|
|
this.getBookChapterStructExpandList();
|
|
this.getBookChapterStructExpandList();
|