|
|
@@ -2,7 +2,7 @@
|
|
|
<div>
|
|
|
<label>标题:</label>
|
|
|
<RichText
|
|
|
- v-if="property.isGetContent"
|
|
|
+ v-if="property.isGetContent && isChange"
|
|
|
ref="richText"
|
|
|
v-model="data.title_con"
|
|
|
:inline="true"
|
|
|
@@ -115,7 +115,7 @@
|
|
|
</div>
|
|
|
<div class="table-item" style="width: 110px">
|
|
|
<RichText
|
|
|
- v-if="property.isGetContent"
|
|
|
+ v-if="property.isGetContent && isChange"
|
|
|
ref="richText"
|
|
|
v-model="item.cixing"
|
|
|
:inline="true"
|
|
|
@@ -136,7 +136,7 @@
|
|
|
</div>
|
|
|
<div class="table-item" style="width: 200px">
|
|
|
<RichText
|
|
|
- v-if="property.isGetContent"
|
|
|
+ v-if="property.isGetContent && isChange"
|
|
|
ref="richText"
|
|
|
v-model="item.definition_list"
|
|
|
:inline="true"
|
|
|
@@ -149,7 +149,7 @@
|
|
|
</div>
|
|
|
<div class="table-item" style="width: 200px">
|
|
|
<RichText
|
|
|
- v-if="property.isGetContent"
|
|
|
+ v-if="property.isGetContent && isChange"
|
|
|
ref="richText"
|
|
|
v-model="item.collocation"
|
|
|
:inline="true"
|
|
|
@@ -161,7 +161,7 @@
|
|
|
</div>
|
|
|
<div class="table-item" style="width: 300px">
|
|
|
<RichText
|
|
|
- v-if="property.isGetContent"
|
|
|
+ v-if="property.isGetContent && isChange"
|
|
|
ref="richText"
|
|
|
v-model="item.liju_list"
|
|
|
:inline="true"
|
|
|
@@ -180,7 +180,7 @@
|
|
|
</div>
|
|
|
<div class="table-item" style="width: 200px" v-for="(itemN, indexN) in data.addCol" :key="indexN">
|
|
|
<RichText
|
|
|
- v-if="property.isGetContent"
|
|
|
+ v-if="property.isGetContent && isChange"
|
|
|
ref="richText"
|
|
|
v-model="item[itemN.key]"
|
|
|
:inline="true"
|
|
|
@@ -397,6 +397,20 @@ export default {
|
|
|
autoLoading: false,
|
|
|
};
|
|
|
},
|
|
|
+ watch: {
|
|
|
+ 'data.unified_attrib': {
|
|
|
+ handler(val) {
|
|
|
+ if (val) {
|
|
|
+ this.isChange = false;
|
|
|
+ setTimeout(() => {
|
|
|
+ this.isChange = true;
|
|
|
+ }, 10);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ deep: true,
|
|
|
+ immediate: true,
|
|
|
+ },
|
|
|
+ },
|
|
|
created() {
|
|
|
this.getTextToAudioConfParamList();
|
|
|
},
|
|
|
@@ -417,6 +431,7 @@ export default {
|
|
|
hz_info: [],
|
|
|
bg: 0,
|
|
|
ed: 0,
|
|
|
+ isChange: true,
|
|
|
};
|
|
|
},
|
|
|
/**
|