|
@@ -144,7 +144,7 @@
|
|
|
<div class="vedioName">{{ media.name }}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div style="height: 250px; overflow: auto">
|
|
|
+ <div style="height: 250px; overflow: auto" v-if="text.length > 0">
|
|
|
<div class="vedioNav">附文本列表</div>
|
|
|
<div
|
|
|
style="width: 160px; margin: 10px auto; position: relative"
|
|
@@ -162,7 +162,7 @@
|
|
|
@click="lookVedio(media.url)"
|
|
|
/> -->
|
|
|
<div style="cursor: pointer" @click="lookText">
|
|
|
- {{ text[0].name }}.doc
|
|
|
+ {{ text.length > 0 ? text[0].name : '' }}.doc
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -413,10 +413,8 @@
|
|
|
</div>
|
|
|
<div style="padding: 0 0 20px 30px">
|
|
|
<div style="margin: 0 0 20px 0">工具描述</div>
|
|
|
- <div style="width: 380px;height: 150px;
|
|
|
- overflow: auto;">
|
|
|
- <!-- {{ tool.toolDetail != "" ? tool.toolDetail : "暂无描述" }} -->
|
|
|
- 暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述暂无描述
|
|
|
+ <div style="width: 380px; height: 150px; overflow: auto">
|
|
|
+ {{ tool.toolDetail != "" ? tool.toolDetail : "暂无描述" }}
|
|
|
</div>
|
|
|
</div>
|
|
|
<!-- <div class="chooseWho">
|
|
@@ -754,13 +752,13 @@
|
|
|
>
|
|
|
<el-form style="font-size: 20px">
|
|
|
<el-form-item label="文本标题" class="textTitle">
|
|
|
- <div style="font-size: 20px">{{ text[0].name }}</div>
|
|
|
+ <div style="font-size: 20px">{{ text.length > 0 ? text[0].name : '' }}</div>
|
|
|
<!-- <el-input v-model="AttText.title" auto-complete="off" placeholder="请输入文本标题..."></el-input> -->
|
|
|
</el-form-item>
|
|
|
<div>附文本内容</div>
|
|
|
<!-- <editor-bar v-model="AttText.text" @change="change"></editor-bar> -->
|
|
|
<div
|
|
|
- v-html="text[0].url"
|
|
|
+ v-html="text.length > 0 ? text[0].url : '' "
|
|
|
style="font-size: 18px; padding: 40px 0 0 0"
|
|
|
></div>
|
|
|
</el-form>
|
|
@@ -2194,7 +2192,7 @@ export default {
|
|
|
width: 200px;
|
|
|
height: 530px;
|
|
|
border-radius: 10px;
|
|
|
- overflow: auto;
|
|
|
+ /* overflow: auto; */
|
|
|
}
|
|
|
.vedioNav {
|
|
|
margin: 10px 15px;
|