| | |
| | | <el-table v-loading="loading" :data="list"> |
| | | <el-table-column :label="t('myCourse.videoCode')" align="center" prop="id" /> |
| | | <el-table-column :label="t('myCourse.videoName')" align="center" prop="name" /> |
| | | <el-table-column :label="t('myCourse.duration')" align="center" prop="duration"> |
| | | <template #default="scope"> |
| | | {{ formatDuration(scope.row.duration) }} |
| | | </template> |
| | | </el-table-column> |
| | | <!-- <el-table-column :label="t('myCourse.duration')" align="center" prop="duration">--> |
| | | <!-- <template #default="scope">--> |
| | | <!-- {{ formatDuration(scope.row.duration) }}--> |
| | | <!-- </template>--> |
| | | <!-- </el-table-column>--> |
| | | <el-table-column :label="t('myCourse.courseName')" align="center" prop="courseName"> |
| | | <template #default="scope"> |
| | | <el-link type="primary" @click="goDetail(scope.row.courseId)">{{ scope.row.courseName }}</el-link> |