|
|
@@ -26,7 +26,7 @@
|
|
|
<div v-for="(ritem, rindex) in data.property.role_list" :key="rindex" @click="changeRole(item, ritem)">
|
|
|
{{ ritem.fullName || ritem.name }}
|
|
|
</div>
|
|
|
- <div class="avatar-box" slot="reference">
|
|
|
+ <div slot="reference" class="avatar-box">
|
|
|
<span
|
|
|
v-if="
|
|
|
data.property.role_img_type === 'upload' &&
|
|
|
@@ -85,7 +85,7 @@
|
|
|
}"
|
|
|
@click="selectItem(wItem)"
|
|
|
>
|
|
|
- <span class="pinyin" v-if="isEnable(data.property.view_pinyin)">{{
|
|
|
+ <span v-if="isEnable(data.property.view_pinyin)" class="pinyin">{{
|
|
|
windex === 0 &&
|
|
|
wIndex === 0 &&
|
|
|
data.property.is_first_sentence_first_hz_pinyin_first_char_upper_case === 'true'
|
|
|
@@ -172,7 +172,7 @@
|
|
|
</span>
|
|
|
</div>
|
|
|
<SvgIcon icon-class="delete-black" size="12" @click="removeFile" />
|
|
|
- <ResourcesOperate :data="data.mp3_list[0]"></ResourcesOperate>
|
|
|
+ <ResourcesOperate :data="data.mp3_list[0]" />
|
|
|
</div>
|
|
|
<span class="tips">说明:需先点击“生成分词”按钮后,再进行文章校对或生成字幕节点</span>
|
|
|
<div v-if="data.detail.length > 0" class="btn-box">
|
|
|
@@ -246,12 +246,12 @@
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
<el-dialog
|
|
|
+ v-if="remarkVisible"
|
|
|
title="气泡"
|
|
|
:visible.sync="remarkVisible"
|
|
|
width="50%"
|
|
|
:close-on-click-modal="false"
|
|
|
:append-to-body="true"
|
|
|
- v-if="remarkVisible"
|
|
|
>
|
|
|
<div v-if="remark" class="remark">
|
|
|
<div class="adult-book-input-item">
|
|
|
@@ -277,7 +277,7 @@
|
|
|
</div>
|
|
|
<div class="adult-book-input-item">
|
|
|
<span class="adult-book-lable">标题背景色:</span>
|
|
|
- <el-color-picker v-model="remark.chsBg"></el-color-picker>
|
|
|
+ <el-color-picker v-model="remark.chsBg" />
|
|
|
</div>
|
|
|
<div class="adult-book-input-item">
|
|
|
<span class="adult-book-lable">正文:</span>
|
|
|
@@ -302,7 +302,7 @@
|
|
|
</div>
|
|
|
<div class="adult-book-input-item">
|
|
|
<span class="adult-book-lable">正文背景色:</span>
|
|
|
- <el-color-picker v-model="remark.enBg"></el-color-picker>
|
|
|
+ <el-color-picker v-model="remark.enBg" />
|
|
|
</div>
|
|
|
<div v-if="remark.img_list && remark.img_list.length == 0" class="adult-book-input-item">
|
|
|
<el-upload
|
|
|
@@ -367,7 +367,7 @@
|
|
|
:data="compareData"
|
|
|
:type="compareType"
|
|
|
:changewords-result-list="changewordsResultList"
|
|
|
- :openCheckSubtitles="openCheckSubtitles"
|
|
|
+ :open-check-subtitles="openCheckSubtitles"
|
|
|
/>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
<el-button @click="handleClose">取 消</el-button>
|
|
|
@@ -385,31 +385,31 @@
|
|
|
v-if="editWordIndex === 0"
|
|
|
key="new_word"
|
|
|
:data-new-word="data.new_word_list"
|
|
|
- @sureNewWords="sureNewWords"
|
|
|
:unified-attrib="data.unified_attrib ? data.unified_attrib : null"
|
|
|
+ @sureNewWords="sureNewWords"
|
|
|
/>
|
|
|
|
|
|
<Notes
|
|
|
v-if="editWordIndex === 1"
|
|
|
key="notes"
|
|
|
:data-notes="data.notes_list"
|
|
|
- @sureNotes="sureNotes"
|
|
|
:unified-attrib="data.unified_attrib ? data.unified_attrib : null"
|
|
|
+ @sureNotes="sureNotes"
|
|
|
/>
|
|
|
<NewWord
|
|
|
v-if="editWordIndex === 2"
|
|
|
:data-new-word="data.other_word_list"
|
|
|
- @sureNewWords="sureOtherNewWords"
|
|
|
:unified-attrib="data.unified_attrib ? data.unified_attrib : null"
|
|
|
+ @sureNewWords="sureOtherNewWords"
|
|
|
/>
|
|
|
</template>
|
|
|
<!-- </el-dialog> -->
|
|
|
<CheckSubtitles
|
|
|
+ v-if="visible"
|
|
|
:visible.sync="visible"
|
|
|
:audio-id="data.mp3_list[0] && data.mp3_list[0].file_id ? data.mp3_list[0].file_id : ''"
|
|
|
:option-list="subtitleList"
|
|
|
@saveSubtitles="saveSubtitles"
|
|
|
- v-if="visible"
|
|
|
/>
|
|
|
</template>
|
|
|
</ModuleBase>
|