mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-21 16:56:43 +08:00
ai视频二期功能提交-编辑ai摘要
This commit is contained in:
@@ -463,7 +463,7 @@
|
||||
<el-button type="text" @click="changeAIKey('aiAbstract')">
|
||||
{{ aiSetting.aiAbstract === 1 ? '下架' : '上架' }}
|
||||
</el-button>
|
||||
<el-button v-show="false" type="text" >编辑</el-button>
|
||||
<el-button v-show="isV2" type="text" @click="toAiAbstract">编辑</el-button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -490,7 +490,7 @@
|
||||
<el-button type="text" @click="changeAIKey('aiTranslate')">
|
||||
{{ aiSetting.aiTranslate === 1 ? '下架' : '上架' }}
|
||||
</el-button>
|
||||
<el-button v-show="false" type="text" >编辑</el-button>
|
||||
<el-button v-show="isV2" type="text" @click="toAiTranslate">编辑</el-button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -657,6 +657,7 @@ export default {
|
||||
aiAbstractTip: '一键提炼课程视频核心要点,助力学员课前高效掌握重点,快速筛选学习资源', // 提示信息
|
||||
aiDraftTip: '分段展示视频内容并精准同步时间轴,实现视频进度与文稿双向定位,学习内容触手可及', //提示信息
|
||||
aiTranslateTip: '智能转换视频字幕与语音为多语种,支持全球学员按需切换语言,打破学习边界', // 提示信息
|
||||
isV2: true,
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
@@ -1297,7 +1298,23 @@ export default {
|
||||
console.log('index', index, this.aiPermission);
|
||||
}
|
||||
})
|
||||
}
|
||||
},
|
||||
toAiAbstract() {
|
||||
this.$router.push({
|
||||
path: '/iframe/course/aiAbstract',
|
||||
query: {
|
||||
id: this.aiSetting.id
|
||||
}
|
||||
})
|
||||
},
|
||||
toAiTranslate() {
|
||||
this.$router.push({
|
||||
path: '/iframe/course/aiTranslate',
|
||||
query: {
|
||||
id: this.aiSetting.id
|
||||
}
|
||||
})
|
||||
},
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user