limengbo %!s(int64=4) %!d(string=hai) anos
pai
achega
146134976a

+ 5 - 1
src/components/video/video.vue

@@ -261,12 +261,16 @@ export default {
       this.videoOption.volume = Math.round(this.videoDom.volume * 100)
     },
     handleControls(ev, flag) { // 监听离开或者进入视频区域隐藏或者展示控制栏
+      // let yanshi = null
       switch (flag) {
         case 'start':
+          // clearTimeout(yanshi)
           this.videoState.hideControl = false
           break
         case 'end':
-          this.videoState.hideControl = true
+          setTimeout(() => {
+            this.videoState.hideControl = true
+          }, 3000)
           break
         default:
           break

+ 2 - 2
src/router/index.js

@@ -42,7 +42,7 @@ export const constantRouterMap = [
         path: 'index',
         name: 'allFile',
         component: () => import('@/views/allFile/index'),
-        meta: { title: '全部文件', icon: 'el-icon-document' }
+        meta: { title: '全部任务', icon: 'el-icon-document' }
       }
     ]
   },
@@ -56,7 +56,7 @@ export const constantRouterMap = [
         path: 'fileDetail',
         name: 'fileDetail',
         component: () => import('@/views/fileDetail/index'),
-        meta: { title: '全部文件' }
+        meta: { title: '全部任务' }
       }
     ]
   },

+ 2 - 6
src/views/allFile/index.vue

@@ -20,14 +20,10 @@
       </ul>
     </div>
     <div class="file">
-      <div class="title">
-        <span class="title-name">文件名</span>
-        <span class="title-date" style="margin-right: 70px;">日期</span>
-      </div>
+
       <ul v-for="(item, index) in taskFileList" :key="index" class="file-con">
         <li>
-          <span style="float: left;">{{ taskNameList[index].name }}</span>
-          <span style="float: right;">{{ taskNameList[index].created }}</span>
+          <span style="float: left;">{{ taskNameList[index].created }} - {{ taskNameList[index].name }}</span>
         </li>
         <li v-for="(items, index) in item" :key="index" class="border">
           <span style="float: left;"><img :src="imgUrl(items)" alt="file_icon">{{ items.fileName }}</span>

+ 1 - 6
src/views/browse/index.vue

@@ -1,14 +1,9 @@
 <template>
   <div class="app-container">
     <div class="file">
-      <div class="title">
-        <span class="title-name">文件名</span>
-        <span class="title-date" style="margin-right: 70px;">日期</span>
-      </div>
       <ul v-for="(item, index) in logList.logList" :key="index" class="file-con">
         <li>
-          <span style="float: left;">{{ logList.logNameList[index].name }}</span>
-          <span style="float: right;">{{ logList.logNameList[index].created }}</span>
+          <span style="float: left;">{{ logList.logNameList[index].created }} - {{ logList.logNameList[index].name }}</span>
         </li>
         <li v-for="(items, index) in item" :key="index" class="border">
           <span style="float: left;"><img :src="imgUrl(items)" alt="file_icon">{{ items.fileName }}</span>