366 lines
10 KiB
Vue

<template>
<div class="fullHeight whiteBlock">
<div style="padding: 15px 15px 0">
<!-- 宣传视频 -->
<el-form
:inline="true"
ref="searchForm"
:model="searchForm"
size="medium"
>
<el-form-item label="视频名称">
<el-input
v-model="searchForm.videoName"
placeholder="请输入"
></el-input>
</el-form-item>
<el-form-item>
<el-button type="primary" plain @click="getList">{{
$t('message.energyManage.waybill.query')
}}</el-button>
<el-button type="warning" plain @click="refresh">{{
$t('message.deviceManage.refresh')
}}</el-button>
<el-button type="primary" size="medium" @click="add">新增</el-button>
</el-form-item>
</el-form>
</div>
<div class="table_wrap whiteBlock">
<el-table class="tables" :data="List">
<el-table-column
type="index"
label="序号"
align="center"
></el-table-column>
<el-table-column
prop="videoName"
align="center"
label="视频名称"
></el-table-column>
<el-table-column prop="fileUrl" align="center" label="视频">
<template slot-scope="scope">
<span style="color: #5181f6;cursor: pointer;" @click.stop="playerVideo(scope.row.fileUrl)">{{ scope.row.fileName }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" width="180px">
<template slot-scope="scope">
<div class="tableBtns" style="margin-left: 20px !important">
<div @click="edit(scope.row)" class="operationText">
<img
src="@/assets/images/icon-edit.png"
width="15px"
height="15px"
/>
<span>编辑</span>
</div>
<div @click="deleteDev(scope.row)" class="operationText">
<img
src="@/assets/images/icon-delete.png"
width="15px"
height="15px"
/>
<span>删除</span>
</div>
</div>
</template>
</el-table-column>
</el-table>
<el-pagination
class="pagerBox"
@size-change="SizeChange"
@current-change="CurrentChange"
:current-page="pagInfo.pageNo"
:page-sizes="$store.state.PAGESIZRS"
:page-size="pagInfo.pageSize"
layout="total, sizes, prev, pager, next"
:total="Number(pagInfo.total)"
background
></el-pagination>
</div>
<el-dialog
:modal-append-to-body="false"
@close="close"
:title="title"
:visible.sync="dialogShow"
width="667px"
>
<div class="dialog_content">
<el-form
size="medium"
ref="addEditForm"
:model="addEditForm"
:rules="addEditRules"
label-width="120px"
class="dialogFormBox"
>
<el-form-item label="视频名称" prop="videoName">
<el-input
v-model="addEditForm.videoName"
placeholder="请输入"
></el-input>
</el-form-item>
<el-form-item label="上传视频">
<div class="videoUpload">
<el-upload
class="upload-demo"
name="files"
:action="$store.state.UPLOADURL"
:on-success="(file) => handleSuccess(file)"
:show-file-list="false"
accept="video/mp4"
>
<el-button size="mini" type="primary" plain>上传附件</el-button>
</el-upload>
<video
v-if="isRouterAlive || addEditForm.fileUrl"
:src="$store.state.FILEURL + addEditForm.fileUrl"
width="100%"
height="200"
controls
></video>
</div>
</el-form-item>
<div class="dialog-footer">
<el-button
class="cancleBtn"
@click="dialogShow = false"
icon="el-icon-circle-close"
size="medium"
>{{ $t('message.deviceManage.cancel') }}
</el-button>
<el-button
type="primary"
icon="el-icon-circle-check"
@click="submit"
size="medium"
>{{ $t('message.deviceManage.save') }}
</el-button>
</div>
</el-form>
</div>
</el-dialog>
<!-- 视频播放 -->
<el-dialog
class="video"
:modal-append-to-body="false"
:visible.sync="isShow"
@close="closeBtn"
>
<video
v-if="isShow || player"
width="100%"
height="550"
controls
autoplay
style="margin-left: 10px"
>
<source :src="$store.state.FILEURL+player" type="video/mp4" />
<source :src="$store.state.FILEURL+player" type="video/mp4" />
<source :src="$store.state.FILEURL+player" type="video/mp4" />
您的浏览器不支持 video 标签。
</video>
</el-dialog>
</div>
</template>
<script>
import {
addPartyPromotionalVideoApi,
deletePartyPromotionalVideoApi,
editPartyPromotionalVideoApi,
getPartyPromotionalVideoPageApi
} from '@/assets/js/api/materialManagement.js'
export default {
mounted() {
this.getList()
},
data() {
return {
isRouterAlive: false,
title: "",
dialogShow: false,
pagInfo: {
pageNo: 1, //页数
pageSize: 10, //条数
total: 0 //总条数
},
List: [],
addEditForm: {
videoName: '',
fileUrl: '',
fileName:'',//文件名称
},
addEditRules: {
videoName: [
{
required: true,
message: '必填',
trigger: 'blur'
},
],
// file: [
// {
// required: true,
// message: '必填',
// trigger: 'blur'
// },
// ],
},
searchForm: {
videoName: '',
},
player: '',
isShow: false,
}
},
methods: {
//关闭视频
closeBtn() {
this.isShow = false
this.player = ''
},
//视频播放
playerVideo(item) {
console.log('点击播放::',item);
if (item) {
let index = item.indexOf("*");
let videoUrl = item.substring(index + 1);
this.isShow = false
this.$nextTick(() => {
this.player = videoUrl
this.isShow = true
})
} else {
this.$message.error('暂无视频')
}
},
//查询仓库数据
getList() {
getPartyPromotionalVideoPageApi({
pageNo: this.pagInfo.pageNo,
pageSize: this.pagInfo.pageSize,
projectSn: this.$store.state.projectSn,
videoName: this.searchForm.videoName,
}).then((result) => {
if (result.success) {
this.List = result.result.records
this.pagInfo.total = result.result.total
}
})
},
add() {
this.title = '新增'
this.dialogShow = true
this.close()
},
edit(obj) {
this.title = '编辑'
this.dialogShow = true
this.addEditForm = JSON.parse(JSON.stringify(obj))
},
submit() {
let params = JSON.parse(JSON.stringify(this.addEditForm))
params.projectSn = this.$store.state.projectSn
// if (this.isRouterAlive ==false) {
// this.$message.error('请上传视频附件')
// return false
// }
this.$refs.addEditForm.validate((valid) => {
if (valid) {
if (this.title == '新增') {
addPartyPromotionalVideoApi(params).then((result) => {
if (result.success) {
this.$message.success(result.message)
this.getList()
}
})
} else if (this.title == '编辑') {
editPartyPromotionalVideoApi(params).then((result) => {
if (result.success) {
this.$message.success(result.message)
this.getList()
}
})
}
this.dialogShow = false
} else {
return false
}
})
},
deleteDev(obj) {
this.$confirm("此操作将永久删除, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
deletePartyPromotionalVideoApi({ id: obj.id }).then((res) => {
if (res.success) {
this.getList()
this.$message({
type: "success",
message: "删除成功!",
});
} else {
this.$message({
type: "error",
message: res.message,
});
}
});
})
.catch(() => {
this.$message({
type: "info",
message: "已取消删除",
});
});
},
//上传
handleSuccess(file) {
// let data = {
// name: file.data[0].filename,
// url: this.$store.state.FILEURL + file.data[0].imageUrl
// }
this.isRouterAlive = false;
this.$nextTick(() => {
this.addEditForm.fileUrl = file.data[0].imageUrl
this.addEditForm.fileName=file.data[0].fileInfo.originalFilename
this.isRouterAlive = true;
})
console.log('上传的回调', file.data[0].imageUrl);
},
close() {
this.addEditForm = {}
this.$nextTick(() => {
this.$refs.addEditForm.clearValidate()
this.isRouterAlive=false
})
},
SizeChange(val) {
this.pagInfo.pageSize = val
this.getList()
},
CurrentChange(val) {
this.pagInfo.pageNo = val
this.getList()
},
refresh() {
this.searchForm = {}
this.pagInfo.pageNo = 1 //页数
this.pagInfo.pageSize = 10 //条数
this.getList()
},
}
}
</script>
<style lang="less" scoped>
.tables2 {
min-height: auto;
}
</style>