mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-21 00:36:44 +08:00
ai视频一期功能提交-批量修改语种问题+字幕样式问题
This commit is contained in:
@@ -1072,4 +1072,25 @@ export default {
|
|||||||
height: 100px;
|
height: 100px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
video::cue {
|
||||||
|
color: #fff;
|
||||||
|
background-color: transparent;
|
||||||
|
font-size: 0.85em;
|
||||||
|
font-family: 'Arial', sans-serif;
|
||||||
|
/* 1. WebKit内核粗描边(Chrome/Safari/Edge) */
|
||||||
|
-webkit-text-stroke: 4px #000; /* 宽度调至4px(可继续加大,如6px/8px) */
|
||||||
|
text-stroke: 4px #000; /* 标准属性兜底 */
|
||||||
|
|
||||||
|
/* 2. 多重阴影模拟粗描边(核心:增加偏移量+多层叠加) */
|
||||||
|
text-shadow:
|
||||||
|
2px 2px 0 #000,
|
||||||
|
-2px 2px 0 #000,
|
||||||
|
2px -2px 0 #000,
|
||||||
|
-2px -2px 0 #000,
|
||||||
|
/* 追加外层阴影,让描边更厚 */
|
||||||
|
0 2px 0 #000,
|
||||||
|
2px 0 0 #000,
|
||||||
|
0 -2px 0 #000,
|
||||||
|
-2px 0 0 #000;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -306,7 +306,7 @@
|
|||||||
<div style="margin-bottom: 20px;">
|
<div style="margin-bottom: 20px;">
|
||||||
<div style="margin-bottom: 15px;">请选择课程所支持语种</div>
|
<div style="margin-bottom: 15px;">请选择课程所支持语种</div>
|
||||||
<el-select
|
<el-select
|
||||||
v-model="languageSetting.selectedLanguages"
|
v-model="languageSetting.languageCode"
|
||||||
multiple
|
multiple
|
||||||
placeholder="请选择语种"
|
placeholder="请选择语种"
|
||||||
style="width: 100%;"
|
style="width: 100%;"
|
||||||
@@ -461,7 +461,7 @@
|
|||||||
</span>
|
</span>
|
||||||
<div class="action-buttons">
|
<div class="action-buttons">
|
||||||
<el-button type="text" @click="changeAIKey('aiAbstract')">
|
<el-button type="text" @click="changeAIKey('aiAbstract')">
|
||||||
{{ aiSetting.aiAbstract === 0 ? '上架' : '下架' }}
|
{{ aiSetting.aiAbstract === 1 ? '下架' : '上架' }}
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button v-show="false" type="text" >编辑</el-button>
|
<el-button v-show="false" type="text" >编辑</el-button>
|
||||||
</div>
|
</div>
|
||||||
@@ -475,7 +475,7 @@
|
|||||||
</span>
|
</span>
|
||||||
<div class="action-buttons">
|
<div class="action-buttons">
|
||||||
<el-button type="text" @click="changeAIKey('aiDraft')">
|
<el-button type="text" @click="changeAIKey('aiDraft')">
|
||||||
{{ aiSetting.aiDraft === 0 ? '上架' : '下架' }}
|
{{ aiSetting.aiDraft === 1 ? '下架' : '上架' }}
|
||||||
</el-button>
|
</el-button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -488,7 +488,7 @@
|
|||||||
</span>
|
</span>
|
||||||
<div class="action-buttons">
|
<div class="action-buttons">
|
||||||
<el-button type="text" @click="changeAIKey('aiTranslate')">
|
<el-button type="text" @click="changeAIKey('aiTranslate')">
|
||||||
{{ aiSetting.aiTranslate === 0 ? '上架' : '下架' }}
|
{{ aiSetting.aiTranslate === 1 ? '下架' : '上架' }}
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button v-show="false" type="text" >编辑</el-button>
|
<el-button v-show="false" type="text" >编辑</el-button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -384,7 +384,7 @@
|
|||||||
class="el-icon-document"
|
class="el-icon-document"
|
||||||
style="margin-right: 9px; margin-left: 9px"
|
style="margin-right: 9px; margin-left: 9px"
|
||||||
></i
|
></i
|
||||||
>ai文稿
|
>AI文稿
|
||||||
<img
|
<img
|
||||||
src="@/assets/images/course/wengaoTip.png"
|
src="@/assets/images/course/wengaoTip.png"
|
||||||
alt=""
|
alt=""
|
||||||
|
|||||||
Reference in New Issue
Block a user