|
@@ -1,9 +1,11 @@
|
|
|
<script setup>
|
|
|
import { ref, reactive } from 'vue'
|
|
|
+import { ElMessage, ElMessageBox } from 'element-plus'
|
|
|
import { Search,Plus } from '@element-plus/icons-vue'
|
|
|
import MediaUpload from './components/MediaUpload.vue';
|
|
|
import MediaPlayer from './components/MediaPlayer.vue';
|
|
|
|
|
|
+import {apiVideo} from '@/api/media'
|
|
|
|
|
|
const tableQuery = reactive({
|
|
|
keyWord:'',
|
|
@@ -15,23 +17,26 @@ const tableQuery = reactive({
|
|
|
})
|
|
|
|
|
|
const tableColumns = [
|
|
|
- {label:'视频封面',key:'cover',},
|
|
|
- {label:'视频名称',key:'name',},
|
|
|
- {label:'研究员',key:'author',},
|
|
|
- {label:'标签',key:'label',},
|
|
|
- {label:'添加时间',key:'time',width:250,sortable:true}
|
|
|
+ {label:'视频封面',key:'coverSrc',},
|
|
|
+ {label:'视频名称',key:'mediaName',},
|
|
|
+ {label:'研究员',key:'authorName',},
|
|
|
+ {label:'标签',key:'permission_names',},
|
|
|
+ {label:'添加时间',key:'publishedTime',width:250,sortable:true}
|
|
|
]
|
|
|
|
|
|
let mediaUploadShow = ref(false)
|
|
|
|
|
|
const tableData = ref([])
|
|
|
function getTableData(){
|
|
|
- tableData.value = [
|
|
|
- {
|
|
|
- name:'aaa',
|
|
|
- time:'2024-08-02 12:30'
|
|
|
- }
|
|
|
- ]
|
|
|
+ apiVideo.getVideoList({
|
|
|
+ PageSize:tableQuery.pageSize,
|
|
|
+ CurrentIndex:tableQuery.currentPage,
|
|
|
+ SortType:tableQuery.sortType,
|
|
|
+ }).then(res=>{
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ tableData.value = res.Data.List||[]
|
|
|
+ tableQuery.totals = res.Data.Paging.Totals||0
|
|
|
+ })
|
|
|
}
|
|
|
getTableData()
|
|
|
function handlePageChange(page){
|
|
@@ -39,11 +44,12 @@ function handlePageChange(page){
|
|
|
getTableData()
|
|
|
}
|
|
|
let mediaPlayerShow = ref(false)
|
|
|
-function handlePreviewVideo(row){
|
|
|
+function handlePreviewVideo(data={}){
|
|
|
+ setCurData(data)
|
|
|
mediaPlayerShow.value = true
|
|
|
}
|
|
|
let curData = ref({})
|
|
|
-function handleUploadShow(data={}){
|
|
|
+function setCurData(data={}){
|
|
|
curData.value = {
|
|
|
fileUrl:data.url||'',
|
|
|
mediaName:data.name||'',
|
|
@@ -51,10 +57,10 @@ function handleUploadShow(data={}){
|
|
|
labels:data.labels||'',
|
|
|
mediaCover:data.pic||'',
|
|
|
}
|
|
|
- mediaUploadShow.value = true
|
|
|
}
|
|
|
-function handleEdit(data){
|
|
|
- handleUploadShow(data)
|
|
|
+function handleEdit(data={}){
|
|
|
+ setCurData(data)
|
|
|
+ mediaUploadShow.value = true
|
|
|
}
|
|
|
function handleDelete(data){
|
|
|
ElMessageBox.confirm(
|
|
@@ -67,16 +73,25 @@ function handleDelete(data){
|
|
|
}
|
|
|
)
|
|
|
.then(() => {
|
|
|
- ElMessage.success('删除成功')
|
|
|
+ apiVideo.deleteVideo({
|
|
|
+ VideoId:data.mediaId
|
|
|
+ }).then(res=>{
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ ElMessage.success('删除成功')
|
|
|
+ getTableData()
|
|
|
+ })
|
|
|
}).catch(() => {})
|
|
|
}
|
|
|
-function handleSortChange({order,prop}){}
|
|
|
+function handleSortChange({order,prop}){
|
|
|
+ tableQuery.sortType = order==='ascending'?'asc':'desc'
|
|
|
+ getTableData()
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<template>
|
|
|
<div class="video-list-wrap">
|
|
|
<div class="top-box">
|
|
|
- <el-button type="primary" :icon="Plus" @click="handleUploadShow">上传视频</el-button>
|
|
|
+ <el-button type="primary" :icon="Plus" @click="handleEdit">上传视频</el-button>
|
|
|
<el-input style="width:400px;margin-left: auto;" placeholder="视频名称" v-model="tableQuery.keyWord" :prefix-icon="Search" clearable></el-input>
|
|
|
</div>
|
|
|
<div class="table-box">
|