| | |
| | | </el-table-column> |
| | | <el-table-column :label="t('myCourse.status')" align="center" prop="status"> |
| | | <template #default="scope"> |
| | | <dict-tag :type="DICT_TYPE.VIDEO_STATUS" :value="scope.row.status" /> |
| | | |
| | | <dict-tag v-if="scope.row.status==2 && scope.row.subtitlesAddStatus!=null" :type="DICT_TYPE.video_zi" :value="scope.row.subtitlesAddStatus" /> |
| | | <dict-tag v-else :type="DICT_TYPE.VIDEO_STATUS" :value="scope.row.status" /> |
| | | |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column :label="t('table.action')" align="center" min-width="110" fixed="right"> |
| | |
| | | <el-button |
| | | type="primary" |
| | | @click="downloadSubtitles" |
| | | :loading="generating || polling" |
| | | :loading="generating || polling" |
| | | > |
| | | 字幕视频合成 |
| | | </el-button> |