|
@@ -0,0 +1,413 @@
|
|
|
+<template>
|
|
|
+ <div class="app-container">
|
|
|
+ <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
+ <el-form-item label="视频名称" prop="name">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.name"
|
|
|
+ placeholder="请输入视频名称"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="视频大小" prop="size">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.size"
|
|
|
+ placeholder="请输入视频大小"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
+ <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+
|
|
|
+ <el-row :gutter="10" class="mb8">
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ plain
|
|
|
+ icon="el-icon-upload"
|
|
|
+ size="mini"
|
|
|
+ @click="handleUpload"
|
|
|
+ v-hasPermi="['asset:demoVideo:add']"
|
|
|
+ >上传</el-button>
|
|
|
+ </el-col>
|
|
|
+ <!-- <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ plain
|
|
|
+ icon="el-icon-plus"
|
|
|
+ size="mini"
|
|
|
+ @click="handleAdd"
|
|
|
+ v-hasPermi="['asset:demoVideo:add']"
|
|
|
+ >新增</el-button>
|
|
|
+ </el-col> -->
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="success"
|
|
|
+ plain
|
|
|
+ icon="el-icon-edit"
|
|
|
+ size="mini"
|
|
|
+ :disabled="single"
|
|
|
+ @click="handleUpdate"
|
|
|
+ v-hasPermi="['asset:demoVideo:edit']"
|
|
|
+ >修改</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="danger"
|
|
|
+ plain
|
|
|
+ icon="el-icon-delete"
|
|
|
+ size="mini"
|
|
|
+ :disabled="multiple"
|
|
|
+ @click="handleDelete"
|
|
|
+ v-hasPermi="['asset:demoVideo:remove']"
|
|
|
+ >删除</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="warning"
|
|
|
+ plain
|
|
|
+ icon="el-icon-download"
|
|
|
+ size="mini"
|
|
|
+ @click="handleExport"
|
|
|
+ v-hasPermi="['asset:demoVideo:export']"
|
|
|
+ >导出</el-button>
|
|
|
+ </el-col>
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
+ </el-row>
|
|
|
+
|
|
|
+ <el-table v-loading="loading" :data="demoVideoList" @selection-change="handleSelectionChange">
|
|
|
+ <el-table-column type="selection" width="55" align="center" />
|
|
|
+ <el-table-column label="编号" align="center" prop="id" />
|
|
|
+ <el-table-column label="视频名称" align="center" prop="name">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <a style="color: #409EFF" @click="onPlayer(scope.row)">{{scope.row.name}}</a>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="视频类型" align="center" prop="type" />
|
|
|
+ <el-table-column label="视频大小" align="center" prop="size" />
|
|
|
+ <el-table-column label="视频位置" align="center" prop="url" />
|
|
|
+ <el-table-column label="备注" align="center" prop="remark" />
|
|
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-edit"
|
|
|
+ @click="handleUpdate(scope.row)"
|
|
|
+ v-hasPermi="['asset:demoVideo:edit']"
|
|
|
+ >修改</el-button>
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-delete"
|
|
|
+ @click="handleDelete(scope.row)"
|
|
|
+ v-hasPermi="['asset:demoVideo:remove']"
|
|
|
+ >删除</el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+
|
|
|
+ <pagination
|
|
|
+ v-show="total>0"
|
|
|
+ :total="total"
|
|
|
+ :page.sync="queryParams.pageNum"
|
|
|
+ :limit.sync="queryParams.pageSize"
|
|
|
+ @pagination="getList"
|
|
|
+ />
|
|
|
+
|
|
|
+ <!-- 上传演示视频对话框 -->
|
|
|
+ <el-dialog :title="videoName" :visible.sync="openPlayer" width="645px" append-to-body style="text-align: center;">
|
|
|
+ <div>
|
|
|
+ <VideoPlayer :options="videoOptions" v-if="openPlayer"/>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+
|
|
|
+ <!-- 上传演示视频对话框 -->
|
|
|
+ <el-dialog :title="title" :visible.sync="openUpload" width="500px" append-to-body style="text-align: center;">
|
|
|
+ <el-upload
|
|
|
+ class="upload-demo"
|
|
|
+ drag
|
|
|
+ :action="onUploadAction()"
|
|
|
+ :headers="{Authorization}"
|
|
|
+ :auto-upload="false"
|
|
|
+ :multiple="false"
|
|
|
+ :limit="1"
|
|
|
+ accept="video/*"
|
|
|
+ ref="upload"
|
|
|
+ :on-change="onUploadChange"
|
|
|
+ :on-remove="onUploadRemove"
|
|
|
+ :on-success="onUploadSuccess"
|
|
|
+ :on-error="onUploadError"
|
|
|
+ :file-list="fileList">
|
|
|
+ <i class="el-icon-upload"></i>
|
|
|
+ <div class="el-upload__text">将视频文件拖到此处,或<em>点击上传</em></div>
|
|
|
+ </el-upload>
|
|
|
+ <el-button size="small" type="primary" :disabled="fileList.length <= 0" @click="onUpload">确认上传</el-button>
|
|
|
+ </el-dialog>
|
|
|
+
|
|
|
+ <!-- 添加或修改演示视频对话框 -->
|
|
|
+ <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
+ <el-form-item label="视频名称" prop="name">
|
|
|
+ <el-input v-model="form.name" placeholder="请输入视频名称" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="视频大小" prop="size">
|
|
|
+ <el-input v-model="form.size" placeholder="请输入视频大小" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="视频位置" prop="url">
|
|
|
+ <el-input v-model="form.url" placeholder="请输入视频位置" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="备注" prop="remark">
|
|
|
+ <el-input v-model="form.remark" placeholder="请输入备注" />
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
+ <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
+ <el-button @click="cancel">取 消</el-button>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import { listDemoVideo, getDemoVideo, delDemoVideo, addDemoVideo, updateDemoVideo, uploadVideo, playerVideo } from "@/api/asset/demoVideo";
|
|
|
+import { getToken } from '@/utils/auth'
|
|
|
+export default {
|
|
|
+ name: "DemoVideo",
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ // 遮罩层
|
|
|
+ loading: true,
|
|
|
+ // 选中数组
|
|
|
+ ids: [],
|
|
|
+ // 非单个禁用
|
|
|
+ single: true,
|
|
|
+ // 非多个禁用
|
|
|
+ multiple: true,
|
|
|
+ // 显示搜索条件
|
|
|
+ showSearch: true,
|
|
|
+ // 总条数
|
|
|
+ total: 0,
|
|
|
+ // 演示视频表格数据
|
|
|
+ demoVideoList: [],
|
|
|
+ // 弹出层标题
|
|
|
+ title: "",
|
|
|
+ // 是否显示弹出层
|
|
|
+ open: false,
|
|
|
+ // 查询参数
|
|
|
+ queryParams: {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ name: null,
|
|
|
+ type: null,
|
|
|
+ size: null,
|
|
|
+ },
|
|
|
+ // 表单参数
|
|
|
+ form: {},
|
|
|
+ // 表单校验
|
|
|
+ rules: {
|
|
|
+ name: [
|
|
|
+ { required: true, message: "视频名称不能为空", trigger: "blur" }
|
|
|
+ ],
|
|
|
+ type: [
|
|
|
+ { required: true, message: "视频类型不能为空", trigger: "change" }
|
|
|
+ ],
|
|
|
+ size: [
|
|
|
+ { required: true, message: "视频大小不能为空", trigger: "blur" }
|
|
|
+ ],
|
|
|
+ url: [
|
|
|
+ { required: true, message: "视频位置不能为空", trigger: "blur" }
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ openUpload: false,
|
|
|
+ Authorization: 'Bearer ' + getToken(),
|
|
|
+ fileList: [],
|
|
|
+ openPlayer: false,
|
|
|
+ videoName: '',
|
|
|
+ videoOptions: {}
|
|
|
+ };
|
|
|
+ },
|
|
|
+ components: {
|
|
|
+ VideoPlayer: () => import('@/components/VideoPlayer/index.vue')
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ /** 查询演示视频列表 */
|
|
|
+ getList() {
|
|
|
+ this.loading = true;
|
|
|
+ listDemoVideo(this.queryParams).then(response => {
|
|
|
+ this.demoVideoList = response.rows;
|
|
|
+ this.total = response.total;
|
|
|
+ this.loading = false;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 取消按钮
|
|
|
+ cancel() {
|
|
|
+ this.open = false;
|
|
|
+ this.reset();
|
|
|
+ },
|
|
|
+ // 表单重置
|
|
|
+ reset() {
|
|
|
+ this.form = {
|
|
|
+ id: null,
|
|
|
+ name: null,
|
|
|
+ type: null,
|
|
|
+ size: null,
|
|
|
+ url: null,
|
|
|
+ remark: null,
|
|
|
+ createBy: null,
|
|
|
+ createTime: null,
|
|
|
+ updateBy: null,
|
|
|
+ updateTime: null
|
|
|
+ };
|
|
|
+ this.resetForm("form");
|
|
|
+ },
|
|
|
+ /** 搜索按钮操作 */
|
|
|
+ handleQuery() {
|
|
|
+ this.queryParams.pageNum = 1;
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ /** 重置按钮操作 */
|
|
|
+ resetQuery() {
|
|
|
+ this.resetForm("queryForm");
|
|
|
+ this.handleQuery();
|
|
|
+ },
|
|
|
+ // 多选框选中数据
|
|
|
+ handleSelectionChange(selection) {
|
|
|
+ this.ids = selection.map(item => item.id)
|
|
|
+ this.single = selection.length!==1
|
|
|
+ this.multiple = !selection.length
|
|
|
+ },
|
|
|
+ /** 上传按钮操作 */
|
|
|
+ handleUpload() {
|
|
|
+ this.reset();
|
|
|
+ this.openUpload = true;
|
|
|
+ this.title = "上传演示视频";
|
|
|
+ },
|
|
|
+ // 文件上传路径
|
|
|
+ onUploadAction() {
|
|
|
+ return uploadVideo()
|
|
|
+ },
|
|
|
+ // 文件改变时
|
|
|
+ onUploadChange(file, fileList) {
|
|
|
+ this.fileList = fileList
|
|
|
+ },
|
|
|
+ // 文件移除时
|
|
|
+ onUploadRemove(file, fileList) {
|
|
|
+ this.fileList = fileList
|
|
|
+ },
|
|
|
+ // 文件上传成功时
|
|
|
+ onUploadSuccess(res) {
|
|
|
+ if (res.code === 200) {
|
|
|
+ this.$refs.upload.clearFiles()
|
|
|
+ this.fileList = []
|
|
|
+ this.getList();
|
|
|
+ this.$notify({
|
|
|
+ title: '成功',
|
|
|
+ message: res.message,
|
|
|
+ type: 'success'
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ this.$notify({
|
|
|
+ title: '失败',
|
|
|
+ message: res.message,
|
|
|
+ type: 'warning'
|
|
|
+ })
|
|
|
+ }
|
|
|
+ this.openUpload = false
|
|
|
+ },
|
|
|
+ // 文件上传失败时
|
|
|
+ onUploadError(err) {
|
|
|
+ this.$notify.error({
|
|
|
+ title: '错误',
|
|
|
+ message: err.message
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 文件确认上传
|
|
|
+ onUpload() {
|
|
|
+ this.$refs.upload.submit()
|
|
|
+ },
|
|
|
+
|
|
|
+ // 播放视频
|
|
|
+ onPlayer(row) {
|
|
|
+ this.videoName = '正在播放:' + row.name
|
|
|
+ const videoURL = playerVideo(row.url)
|
|
|
+ this.videoOptions = {
|
|
|
+ autoplay: false,
|
|
|
+ controls: true,
|
|
|
+ language: 'zh-CN', // 设置语言
|
|
|
+ width: 600,
|
|
|
+ sources: [
|
|
|
+ {
|
|
|
+ src: videoURL,
|
|
|
+ type: row.type
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ this.openPlayer = true
|
|
|
+ },
|
|
|
+ onPlayerURL(url) {
|
|
|
+ return playerVideo(url)
|
|
|
+ },
|
|
|
+
|
|
|
+ /** 新增按钮操作 */
|
|
|
+ handleAdd() {
|
|
|
+ this.reset();
|
|
|
+ this.open = true;
|
|
|
+ this.title = "添加演示视频";
|
|
|
+ },
|
|
|
+ /** 修改按钮操作 */
|
|
|
+ handleUpdate(row) {
|
|
|
+ this.reset();
|
|
|
+ const id = row.id || this.ids
|
|
|
+ getDemoVideo(id).then(response => {
|
|
|
+ this.form = response.data;
|
|
|
+ this.open = true;
|
|
|
+ this.title = "修改演示视频";
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 提交按钮 */
|
|
|
+ submitForm() {
|
|
|
+ this.$refs["form"].validate(valid => {
|
|
|
+ if (valid) {
|
|
|
+ if (this.form.id != null) {
|
|
|
+ updateDemoVideo(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ addDemoVideo(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess("新增成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 删除按钮操作 */
|
|
|
+ handleDelete(row) {
|
|
|
+ const ids = row.id || this.ids;
|
|
|
+ this.$modal.confirm('是否确认删除演示视频编号为"' + ids + '"的数据项?').then(function() {
|
|
|
+ return delDemoVideo(ids);
|
|
|
+ }).then(() => {
|
|
|
+ this.getList();
|
|
|
+ this.$modal.msgSuccess("删除成功");
|
|
|
+ }).catch(() => {});
|
|
|
+ },
|
|
|
+ /** 导出按钮操作 */
|
|
|
+ handleExport() {
|
|
|
+ this.download('asset/demoVideo/export', {
|
|
|
+ ...this.queryParams
|
|
|
+ }, `demoVideo_${new Date().getTime()}.xlsx`)
|
|
|
+ }
|
|
|
+ }
|
|
|
+};
|
|
|
+</script>
|