|
@@ -69,6 +69,11 @@
|
|
<span v-else>-</span>
|
|
<span v-else>-</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
+ <el-table-column label="报名时间" align="center" width="160">
|
|
|
|
+ <template slot-scope="{ row }">
|
|
|
|
+ {{ row.contestDate | formatTime }}
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column label="操作" align="center" width="240">
|
|
<el-table-column label="操作" align="center" width="240">
|
|
<template slot-scope="{ row }">
|
|
<template slot-scope="{ row }">
|
|
<permission-button size="mini" type="primary" @click="onShowVideoList(row)">视频列表</permission-button>
|
|
<permission-button size="mini" type="primary" @click="onShowVideoList(row)">视频列表</permission-button>
|
|
@@ -211,7 +216,7 @@ export default {
|
|
const res = await fetchClubVideoList({ mobile: row.userName, clubUserId: '' })
|
|
const res = await fetchClubVideoList({ mobile: row.userName, clubUserId: '' })
|
|
this.videoList = res.data
|
|
this.videoList = res.data
|
|
if (this.videoList.length === 0) {
|
|
if (this.videoList.length === 0) {
|
|
- this.$message.warning('当前机构为上传视频')
|
|
|
|
|
|
+ this.$message.warning('当前机构未上传视频')
|
|
return
|
|
return
|
|
}
|
|
}
|
|
this.showVideoListDialog = true
|
|
this.showVideoListDialog = true
|