|
@@ -2,6 +2,7 @@
|
|
|
import { ref, reactive } from 'vue'
|
|
|
import { Search } from '@element-plus/icons-vue'
|
|
|
import MediaUpload from './components/MediaUpload.vue';
|
|
|
+import MediaPlayer from './components/MediaPlayer.vue';
|
|
|
|
|
|
|
|
|
const tableQuery = reactive({
|
|
@@ -10,8 +11,6 @@ const tableQuery = reactive({
|
|
|
pageSize:10,
|
|
|
totals:0,
|
|
|
})
|
|
|
-const tableData = ref([])
|
|
|
-function handlePageChange(){}
|
|
|
|
|
|
const tableColumns = [
|
|
|
{label:'视频封面',key:'cover',},
|
|
@@ -22,6 +21,23 @@ const tableColumns = [
|
|
|
]
|
|
|
|
|
|
let mediaUploadShow = ref(false)
|
|
|
+
|
|
|
+const tableData = ref([])
|
|
|
+function getTableData(){
|
|
|
+ tableData.value = [
|
|
|
+ {
|
|
|
+ name:'aaa',
|
|
|
+ time:'2024-08-02 12:30'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+}
|
|
|
+getTableData()
|
|
|
+function handlePageChange(){}
|
|
|
+
|
|
|
+let mediaPlayerShow = ref(false)
|
|
|
+function handlePreviewVideo(row){
|
|
|
+ mediaPlayerShow.value = true
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<template>
|
|
@@ -36,7 +52,12 @@ let mediaUploadShow = ref(false)
|
|
|
align="center"
|
|
|
v-for="column in tableColumns" :key="column.key"
|
|
|
:prop="column.key" :label="column.label" :sortable="column.sortable" :width="column.width">
|
|
|
-
|
|
|
+ <template #default="{row}">
|
|
|
+ <span v-if="column.key==='name'" @click="handlePreviewVideo(row)" style="color:#086CE0;cursor: pointer;">
|
|
|
+ {{ row.name }}
|
|
|
+ </span>
|
|
|
+ <span v-else>{{ row[column.key] }}</span>
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="操作">
|
|
|
|
|
@@ -60,6 +81,12 @@ let mediaUploadShow = ref(false)
|
|
|
ImageUploadWidth="192px"
|
|
|
ImageUploadHeight="108px"
|
|
|
></MediaUpload>
|
|
|
+ <MediaPlayer
|
|
|
+ v-model:show="mediaPlayerShow"
|
|
|
+ title="123456"
|
|
|
+ mediaType="video"
|
|
|
+ >
|
|
|
+ </MediaPlayer>
|
|
|
</template>
|
|
|
|
|
|
<style scoped lang="scss">
|