fix: BUG修改

This commit is contained in:
kun 2023-06-21 16:18:44 +08:00
parent 997da83b36
commit df350343d4

View File

@ -29,7 +29,8 @@
<div class="imgPage"> <div class="imgPage">
<div class="imgTable" v-if="videoData.records.length"> <div class="imgTable" v-if="videoData.records.length">
<div class="img_item" v-for="item in videoData.records" :key="item.id"> <div class="img_item" v-for="item in videoData.records" :key="item.id">
<el-image style="width: 100%; height: 182px" :src="item.videoUrl" fit="fill" /> <!-- <el-image style="width: 100%; height: 182px" :src="item.videoUrl" fit="fill" /> -->
<video style="width: 100%; height: 182px; object-fit: fill" controls :src="item.videoUrl"></video>
<div class="page_text flx-justify-column"> <div class="page_text flx-justify-column">
<div class="img_title"> <div class="img_title">
<span>{{ item.title }}</span> <span>{{ item.title }}</span>
@ -94,6 +95,7 @@
multiple multiple
:limit="1" :limit="1"
:on-success="uploadSuccess" :on-success="uploadSuccess"
:before-upload="beforeUpload"
style="width: 100%" style="width: 100%"
> >
<el-button class="uploadBtn" type="primary">点击上传</el-button> <el-button class="uploadBtn" type="primary">点击上传</el-button>
@ -193,6 +195,15 @@ const form = ref({
startTime: "", startTime: "",
endTime: "" endTime: ""
}); });
//
const beforeUpload = file => {
console.log(file);
const type = file.type;
if (type != "video/mp4") {
ElMessage.error("请上传视频文件");
return false;
}
};
// //
const deleteAccount = async (params: jxj_User.ResUserList) => { const deleteAccount = async (params: jxj_User.ResUserList) => {
await useHandleData(videoDataDelete, { id: params.id }, `删除`); await useHandleData(videoDataDelete, { id: params.id }, `删除`);