Browse Source

bug修改

yuwenjun1997 2 năm trước cách đây
mục cha
commit
9400d677d7
2 tập tin đã thay đổi với 10 bổ sung5 xóa
  1. 4 4
      .env.development
  2. 6 1
      src/views/normal/activity/video/club-list.vue

+ 4 - 4
.env.development

@@ -4,13 +4,13 @@ NODE_ENV = development
 ENV = 'development'
 
 # 测试地址 API接口
-# VUE_APP_BASE_API = 'https://zplma-b.caimei365.com'
-VUE_APP_BASE_API = 'http://192.168.2.200:8012'
+VUE_APP_BASE_API = 'https://zplma-b.caimei365.com'
+# VUE_APP_BASE_API = 'http://192.168.2.200:8012'
 # VUE_APP_BASE_API = 'http://192.168.2.92:8012'
 
 # 文件上传 API接口地址
-# VUE_APP_UPLOAD_API='https://zplma-b.caimei365.com'
-VUE_APP_UPLOAD_API='http://192.168.2.200:8012'
+VUE_APP_UPLOAD_API='https://zplma-b.caimei365.com'
+# VUE_APP_UPLOAD_API='http://192.168.2.200:8012'
 # VUE_APP_UPLOAD_API='http://192.168.2.67:8012'
 
 # 二维码生成链接location

+ 6 - 1
src/views/normal/activity/video/club-list.vue

@@ -69,6 +69,11 @@
           <span v-else>-</span>
         </template>
       </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">
         <template slot-scope="{ row }">
           <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: '' })
         this.videoList = res.data
         if (this.videoList.length === 0) {
-          this.$message.warning('当前机构上传视频')
+          this.$message.warning('当前机构上传视频')
           return
         }
         this.showVideoListDialog = true