添加排序功能

This commit is contained in:
huangdeliang 2021-06-22 15:03:20 +08:00
parent bc3440d52f
commit 19e961cdbc
6 changed files with 976 additions and 751 deletions

View File

@ -138,7 +138,7 @@ token:
# 令牌密钥
secret: shengtangdiet
# 令牌有效期默认30分钟
expireTime: 120
expireTime: 360
# MyBatis配置
mybatis:

View File

@ -139,7 +139,7 @@ token:
# 令牌密钥
secret: shengtangdiet
# 令牌有效期默认30分钟
expireTime: 120
expireTime: 360
# MyBatis配置
mybatis:

View File

@ -138,7 +138,7 @@ token:
# 令牌密钥
secret: shengtangdiet
# 令牌有效期默认30分钟
expireTime: 120
expireTime: 360
# MyBatis配置
mybatis:

View File

@ -156,7 +156,7 @@
, 0 as playLevel
</if>
from sys_nutritional_video snv where cate_id = #{id} and del_flag = 0 and show_flag = 1
order by priority_level desc,id asc
order by priority_level asc
</select>
</mapper>

View File

@ -1,136 +1,197 @@
<template>
<el-dialog title="视频上传" v-if="open" :visible.sync="open" width="700px" :close-on-click-modal="false" :show-close="false" append-to-body>
<el-form ref="videoFrom" :model="videoFrom" :rules="videoRules" label-width="80px" style="height: 650px; overflow: auto">
<el-form-item label="视频标题" prop="title">
<el-input
type="textarea"
placeholder="请输入视频标题"
v-model.trim="videoFrom.title"
maxlength="50"
rows="1"
show-word-limit
<el-dialog
title="视频上传"
v-if="open"
:visible.sync="open"
width="700px"
:close-on-click-modal="false"
:show-close="false"
append-to-body
>
<el-form
ref="videoFrom"
:model="videoFrom"
:rules="videoRules"
label-width="80px"
style="height: 650px; overflow: auto"
>
<el-form-item label="视频标题" prop="title">
<el-input
type="textarea"
placeholder="请输入视频标题"
v-model.trim="videoFrom.title"
maxlength="50"
rows="1"
show-word-limit
/>
</el-form-item>
<el-form-item label="视频描述" prop="description">
<el-input
type="textarea"
placeholder="请输入视频描述"
v-model.trim="videoFrom.description"
maxlength="1000"
rows="2"
show-word-limit
/>
</el-form-item>
<div style="display: flex">
<el-form-item label="视频类别" prop="cateId" style="width: 300px">
<treeselect
v-model="videoFrom.cateId"
:options="classifyList"
:normalizer="normalizer"
:show-count="true"
placeholder="选择分类"
/>
</el-form-item>
<el-form-item
label="视频权限"
prop="payLevel"
style="margin-left: 40px"
>
<el-select
v-model="videoFrom.payLevel"
clearable
filterable
placeholder="请选择权限"
>
<el-option
v-for="dict in payVideoLevelList"
:key="dict.dictValue"
:label="dict.dictLabel"
:value="parseInt(dict.dictValue)"
/>
</el-select>
</el-form-item>
<el-form-item label="视频描述" prop="description">
<el-input
type="textarea"
placeholder="请输入视频描述"
v-model.trim="videoFrom.description"
maxlength="1000"
rows="2"
show-word-limit
/>
</el-form-item>
<div style="display:flex">
<el-form-item label="视频类别" prop="cateId" style="width:300px">
<treeselect
v-model="videoFrom.cateId"
:options="classifyList"
:normalizer="normalizer"
:show-count="true"
placeholder="选择分类"
/>
</el-form-item>
<el-form-item label="视频权限" prop="payLevel" style="margin-left:40px">
<el-select v-model="videoFrom.payLevel" clearable filterable placeholder="请选择权限">
<el-option
v-for="dict in payVideoLevelList"
:key="dict.dictValue"
:label="dict.dictLabel"
:value="parseInt(dict.dictValue)"
/>
</el-select>
</el-form-item>
</div>
<el-form-item label="视频文件" prop="file">
<div>
<input type="file" accept=".mp4" ref="videoFile" id="videoFile" @change="fileChange($event)">
<div > <span>上传状态{{statusText}}</span><span style="margin-left:100px">进度{{authProgress}}%</span></div>
<div style="color:#1890ff">
<el-button type="primary" @click="authUpload" :disabled="uploadDisabled" size="small" icon="el-icon-upload2">上传视频</el-button><span style="margin-left:20px">1只能上传mp4格式视频</span>
</div>
</div>
</el-form-item>
<el-form-item label="视频封面" prop="coverUrl">
<UploadFile ref="uploadFile" :prefix="'videoCover'" :coverUrl="videoFrom.previewUrl" @callbackMethod="handleCoverUrl" :tips="''"></UploadFile>
<el-button type="primary" size="small" icon="el-icon-film" @click="selectVideoCover" :disabled="!uploadVideoFlag" title="上传视频之后选择视频截图作为封面">选择封面</el-button>
</el-form-item>
<el-form-item label="展示状态" prop="wxShow">
<el-switch
v-model="videoFrom.wxShow"
active-text="展示"
inactive-text="不展示">
</el-switch>
<div style="color:red">提示开启展示之后客户可看到该视频请保证内容正确再展示</div>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitVideoForm">保存</el-button>
<el-button @click="cancel"> </el-button>
</div>
<!-- 手动选择封面 -->
<VideoSelectCover ref="videoSelectCoverRef"></VideoSelectCover>
</el-dialog>
<el-form-item label="视频文件" prop="file">
<div>
<input
type="file"
accept=".mp4"
ref="videoFile"
id="videoFile"
@change="fileChange($event)"
/>
<div>
<span>上传状态{{ statusText }}</span
><span style="margin-left: 100px">进度{{ authProgress }}%</span>
</div>
<div style="color: #1890ff">
<el-button
type="primary"
@click="authUpload"
:disabled="uploadDisabled"
size="small"
icon="el-icon-upload2"
>上传视频</el-button
><span style="margin-left: 20px">1只能上传mp4格式视频</span>
</div>
</div>
</el-form-item>
<el-form-item label="视频封面" prop="coverUrl">
<UploadFile
ref="uploadFile"
:prefix="'videoCover'"
:coverUrl="videoFrom.previewUrl"
@callbackMethod="handleCoverUrl"
:tips="''"
></UploadFile>
<el-button
type="primary"
size="small"
icon="el-icon-film"
@click="selectVideoCover"
:disabled="!uploadVideoFlag"
title="上传视频之后选择视频截图作为封面"
>选择封面</el-button
>
</el-form-item>
<el-form-item label="排序" prop="priorityLevel">
<el-input-number
v-model="videoFrom.priorityLevel"
size="small"
:step="1"
></el-input-number>
</el-form-item>
<el-form-item label="展示状态" prop="wxShow">
<el-switch
v-model="videoFrom.wxShow"
active-text="展示"
inactive-text="不展示"
>
</el-switch>
<div style="color: red">
提示开启展示之后客户可看到该视频请保证内容正确再展示
</div>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitVideoForm">保存</el-button>
<el-button @click="cancel"> </el-button>
</div>
<!-- 手动选择封面 -->
<VideoSelectCover ref="videoSelectCoverRef"></VideoSelectCover>
</el-dialog>
</template>
<script>
import axios from 'axios'
import {getUploadVideoAuth,addNutritionalVideo,getVideoSnapshot,submitVideoSnapshot } from "@/api/custom/nutritionalVideo";
import {getAllClassify } from "@/api/custom/videoClassify";
import UploadFile from "@/components/FileUpload/UploadFile";
import Treeselect from "@riophae/vue-treeselect";
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
import IconSelect from "@/components/IconSelect";
import VideoSelectCover from "@/components/VideoSelectCover";
export default {
name: "UploadVideo",
data () {
return {
open: false,
videoFrom:{},
videoRules:{
title: [
{ required: true, message: "标题不能为空", trigger: "blur" },
],
cateId:[
{ required: true, message: "视频类别不能为空", trigger: "blur" },
],
payLevel:[
{ required: true, message: "视频权限不能为空", trigger: "blur" },
]
},
callback: null,
classifyList: [],
defaultClassify: null,
payVideoLevelList:[],
defaultPayLevel: null,
uploadAuth:{
},
videoFileList:[],
timeout: '',
partSize: '',
parallel: '',
retryCount: '',
retryDuration: '',
region: 'cn-shenzhen',
userId: '1808303706021362',
file: null,
authProgress: 0,
uploadDisabled: true,
resumeDisabled: true,
pauseDisabled: true,
uploader: null,
statusText: '',
fileType:['mp4','MP4'],
uploading: false,
//
uploadVideoFlag: false
}
},
created(){
/*getAllClassify().then(response => {
import {
getUploadVideoAuth,
addNutritionalVideo,
getVideoSnapshot,
submitVideoSnapshot,
} from "@/api/custom/nutritionalVideo";
import { getAllClassify } from "@/api/custom/videoClassify";
import UploadFile from "@/components/FileUpload/UploadFile";
import Treeselect from "@riophae/vue-treeselect";
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
import IconSelect from "@/components/IconSelect";
import VideoSelectCover from "@/components/VideoSelectCover";
export default {
name: "UploadVideo",
data() {
return {
open: false,
videoFrom: {},
videoRules: {
title: [{ required: true, message: "标题不能为空", trigger: "blur" }],
cateId: [
{ required: true, message: "视频类别不能为空", trigger: "blur" },
],
payLevel: [
{ required: true, message: "视频权限不能为空", trigger: "blur" },
],
},
callback: null,
classifyList: [],
defaultClassify: null,
payVideoLevelList: [],
defaultPayLevel: null,
uploadAuth: {},
videoFileList: [],
timeout: "",
partSize: "",
parallel: "",
retryCount: "",
retryDuration: "",
region: "cn-shenzhen",
userId: "1808303706021362",
file: null,
authProgress: 0,
uploadDisabled: true,
resumeDisabled: true,
pauseDisabled: true,
uploader: null,
statusText: "",
fileType: ["mp4", "MP4"],
uploading: false,
//
uploadVideoFlag: false,
};
},
created() {
/*getAllClassify().then(response => {
if(response.code == 200){
this.classifyList = response.data;
if(response.data != null && response.data.length > 0){
@ -138,294 +199,345 @@
}
}
});*/
this.getDicts("video_pay_level").then((response) => {
this.payVideoLevelList = response.data;
if(response.data != null && response.data.length > 0){
this.defaultPayLevel = response.data[0].dictValue;
this.getDicts("video_pay_level").then((response) => {
this.payVideoLevelList = response.data;
if (response.data != null && response.data.length > 0) {
this.defaultPayLevel = response.data[0].dictValue;
}
});
},
components: {
UploadFile,
Treeselect,
IconSelect,
VideoSelectCover,
},
methods: {
showDialog(classifyList, callback) {
if (classifyList != null && classifyList.length > 0) {
this.defaultClassify = classifyList[0].id;
}
this.resetVideoFrom();
this.open = true;
this.callback = callback;
this.dealClassify(classifyList);
//this.classifyList = classifyList;
},
handleCoverUrl(url) {
this.videoFrom.coverUrl = url;
},
resetVideoFrom() {
this.videoFrom = {
cateId: this.defaultClassify ? this.defaultClassify : null,
coverUrl: null,
title: null,
description: null,
priorityLevel: 0,
tags: null,
payLevel: this.defaultPayLevel ? parseInt(this.defaultPayLevel) : null,
videoId: null,
wxShow: false,
previewUrl: null,
};
if (this.$refs.uploadFile) {
this.$refs.uploadFile.resetUpload();
}
this.authProgress = 0;
this.file = null;
this.videoFileList = [];
this.uploadAuth = {};
this.uploadDisabled = true;
this.uploader = null;
this.statusText = "";
this.uploading = false;
this.uploadVideoFlag = false;
this.resetForm("videoFrom");
},
submitVideoForm() {
this.$refs["videoFrom"].validate((valid) => {
if (valid) {
//
if (this.videoFrom.cateId == 0) {
this.$message({
message: "视频分类不能选择主分类",
type: "warning",
});
return;
}
if (this.uploading) {
this.$message({
message: "视频正在上传,请勿取消",
type: "warning",
});
return;
}
if (!this.uploadVideoFlag) {
this.$message({
message: "请先上传视频再保存",
type: "warning",
});
return;
}
this.videoFrom.showFlag = this.videoFrom.wxShow ? 1 : 0;
addNutritionalVideo(this.videoFrom).then((response) => {
if (response.code === 200) {
this.msgSuccess("视频保存成功");
this.open = false;
this.callback && this.callback();
}
});
}
});
},
components: {
UploadFile,Treeselect, IconSelect,VideoSelectCover
selectVideoCover() {
this.$refs.videoSelectCoverRef.showDialog(this.videoFrom, (url) => {
//console.log(url);
this.videoFrom.previewUrl = url;
this.videoFrom.coverUrl = url;
});
},
/** 转换菜单数据结构 */
normalizer(node) {
if (node.children && !node.children.length) {
delete node.children;
}
return {
id: node.id,
label: node.cateName,
children: node.children,
};
},
dealClassify(data) {
this.classifyList = [];
const classify = { id: 0, cateName: "主分类", children: [] };
classify.children = this.handleTree(data, "id");
this.classifyList.push(classify);
},
cancel() {
if (this.uploading) {
this.$message({
message: "视频正在上传,请勿取消",
type: "warning",
});
return;
}
this.open = false;
this.resetVideoFrom();
},
methods: {
showDialog(classifyList, callback){
if(classifyList != null && classifyList.length > 0){
this.defaultClassify = classifyList[0].id;
}
this.resetVideoFrom();
this.open = true;
this.callback = callback;
this.dealClassify(classifyList);
//this.classifyList = classifyList;
},
handleCoverUrl(url){
this.videoFrom.coverUrl = url;
},
resetVideoFrom(){
this.videoFrom = {
cateId: this.defaultClassify ? this.defaultClassify : null,
coverUrl: null,
title: null,
description: null,
tags: null,
payLevel: this.defaultPayLevel ? parseInt(this.defaultPayLevel) : null,
videoId: null,
wxShow: false,
previewUrl: null
};
if(this.$refs.uploadFile){
this.$refs.uploadFile.resetUpload();
}
this.authProgress = 0;
this.file = null;
this.videoFileList = [];
this.uploadAuth = {};
this.uploadDisabled = true;
this.uploader = null;
this.statusText = '';
this.uploading = false;
this.uploadVideoFlag = false;
this.resetForm("videoFrom");
},
submitVideoForm(){
this.$refs["videoFrom"].validate((valid) => {
if (valid) {
//
if(this.videoFrom.cateId == 0){
this.$message({
message: "视频分类不能选择主分类",
type: "warning",
});
return;
}
if(this.uploading){
this.$message({
message: "视频正在上传,请勿取消",
type: "warning",
});
return;
}
if(!this.uploadVideoFlag){
this.$message({
message: "请先上传视频再保存",
type: "warning",
});
return;
}
this.videoFrom.showFlag = this.videoFrom.wxShow ? 1 : 0;
addNutritionalVideo(this.videoFrom).then(response => {
if (response.code === 200) {
this.msgSuccess("视频保存成功");
this.open = false;
this.callback && this.callback();
}
})
}
});
},
selectVideoCover(){
this.$refs.videoSelectCoverRef.showDialog(this.videoFrom,(url)=>{
//console.log(url);
this.videoFrom.previewUrl = url;
this.videoFrom.coverUrl = url;
fileChange(e) {
this.$refs["videoFrom"].validate((valid) => {
if (valid) {
if (this.uploading) {
this.$message({
message: "视频正在上传,请勿取消",
type: "warning",
});
},
/** 转换菜单数据结构 */
normalizer(node) {
if (node.children && !node.children.length) {
delete node.children;
return;
}
return {
id: node.id,
label: node.cateName,
children: node.children
};
},
dealClassify(data){
this.classifyList = [];
const classify = { id: 0, cateName: '主分类', children: [] };
classify.children = this.handleTree(data, "id");
this.classifyList.push(classify);
},
cancel(){
if(this.uploading){
this.$message({
message: "视频正在上传,请勿取消",
type: "warning",
});
return;
}
this.open = false;
this.resetVideoFrom();
},
fileChange (e) {
this.$refs["videoFrom"].validate((valid) => {
if (valid) {
if(this.uploading){
this.$message({
message: "视频正在上传,请勿取消",
type: "warning",
});
return;
}
this.file = e.target.files[0];
var userData = '{"Vod":{}}'
/**if (this.uploader) {
this.file = e.target.files[0];
var userData = '{"Vod":{}}';
/**if (this.uploader) {
this.uploader.stopUpload()
this.authProgress = 0
this.statusText = ""
}**/
//
if(this.videoFrom.cateId == 0){
this.$message({
message: "视频分类不能选择主分类",
type: "warning",
});
return;
}
this.videoFrom.fileName = this.file.name;
if(this.videoFrom.fileName == null || this.videoFrom.fileName.length == 0 || this.videoFrom.fileName.lastIndexOf(".") == -1){
this.$message({
message: "当前视频名称错误",
type: "warning",
});
return;
}
let fileType = this.videoFrom.fileName.substring(this.videoFrom.fileName.lastIndexOf(".")+1);
if(this.fileType.indexOf(fileType) == -1){
this.$message({
message: "当前视频格式错误",
type: "warning",
});
return;
}
getUploadVideoAuth(this.videoFrom).then(response => {
if(response.code == 200){
this.uploadAuth = response.uploadAuth;
console.log(this.uploadAuth);
this.videoFrom.videoId = this.uploadAuth.videoId;
this.uploader = this.createUploader()
this.uploader.addFile(this.file, null, null, null, userData)
this.uploadDisabled = false
this.pauseDisabled = true
this.resumeDisabled = true
}
})
}
//
if (this.videoFrom.cateId == 0) {
this.$message({
message: "视频分类不能选择主分类",
type: "warning",
});
},
authUpload () {
// startUpload ,
if (this.uploader !== null) {
this.uploader.startUpload()
this.uploadDisabled = true
this.pauseDisabled = false
}
},
//
pauseUpload () {
if (this.uploader !== null) {
this.uploader.stopUpload()
this.resumeDisabled = false
this.pauseDisabled = true
}
},
//
resumeUpload () {
if (this.uploader !== null) {
this.uploader.startUpload()
this.resumeDisabled = true
this.pauseDisabled = false
}
},
createUploader (type) {
let self = this
let uploader = new AliyunUpload.Vod({
timeout: self.timeout || 60000,
partSize: self.partSize || 1048576,
parallel: self.parallel || 5,
retryCount: self.retryCount || 1,
retryDuration: self.retryDuration || 2,
region: self.region,
userId: self.userId,
//
addFileSuccess: function (uploadInfo) {
self.uploadDisabled = false
self.resumeDisabled = false
self.statusText = '添加视频成功, 等待上传...'
console.log("addFileSuccess: " + uploadInfo.file.name)
},
//
onUploadstarted: function (uploadInfo) {
self.uploading = true;
// UploadAuth , uploader.setUploadAuthAndAddress
// UploadAuth , uploadInfo.videoIduploadauthuploadAddress
// uploadInfo.videoId
// : demo UploadAuth , 使 uploadInfo.videoId openApi
// uploadInfo.videoId , (https://help.aliyun.com/document_detail/55408.html)
// uploadInfo.videoId , (https://help.aliyun.com/document_detail/55407.html)
uploader.setUploadAuthAndAddress(uploadInfo, self.uploadAuth.uploadAuth, self.uploadAuth.uploadAddress, self.uploadAuth.videoId)
self.statusText = '视频开始上传...'
console.log("onUploadStarted:" + uploadInfo.file.name + ", endpoint:" + uploadInfo.endpoint + ", bucket:" + uploadInfo.bucket + ", object:" + uploadInfo.object)
},
//
onUploadSucceed: function (uploadInfo) {
console.log("onUploadSucceed: " + uploadInfo.file.name + ", endpoint:" + uploadInfo.endpoint + ", bucket:" + uploadInfo.bucket + ", object:" + uploadInfo.object)
self.statusText = '视频上传成功!'
return;
}
this.videoFrom.fileName = this.file.name;
if (
this.videoFrom.fileName == null ||
this.videoFrom.fileName.length == 0 ||
this.videoFrom.fileName.lastIndexOf(".") == -1
) {
this.$message({
message: "当前视频名称错误",
type: "warning",
});
return;
}
let fileType = this.videoFrom.fileName.substring(
this.videoFrom.fileName.lastIndexOf(".") + 1
);
if (this.fileType.indexOf(fileType) == -1) {
this.$message({
message: "当前视频格式错误",
type: "warning",
});
return;
}
},
//
onUploadFailed: function (uploadInfo, code, message) {
console.log("onUploadFailed: file:" + uploadInfo.file.name + ",code:" + code + ", message:" + message);
self.uploading = false;
self.statusText = '视频上传失败!'
},
//
onUploadCanceled: function (uploadInfo, code, message) {
console.log("Canceled file: " + uploadInfo.file.name + ", code: " + code + ", message:" + message)
self.statusText = '视频已暂停上传'
},
// ,
onUploadProgress: function (uploadInfo, totalSize, progress) {
console.log("onUploadProgress:file:" + uploadInfo.file.name + ", fileSize:" + totalSize + ", percent:" + Math.ceil(progress * 100) + "%")
let progressPercent = Math.ceil(progress * 100)
self.authProgress = progressPercent
self.statusText = '视频上传中...'
},
//
onUploadTokenExpired: function (uploadInfo) {
// , UploadAuth
// uploadInfo.videoId (https://help.aliyun.com/document_detail/55408.html) UploadAuth
// resumeUploadWithAuth , , UploadAuth
/*let refreshUrl = 'https://demo-vod.cn-shanghai.aliyuncs.com/voddemo/RefreshUploadVideo?BusinessType=vodai&TerminalType=pc&DeviceModel=iPhone9,2&UUID=59ECA-4193-4695-94DD-7E1247288&AppVersion=1.0.0&Title=haha1&FileName=xxx.mp4&VideoId=' + uploadInfo.videoId
getUploadVideoAuth(this.videoFrom).then((response) => {
if (response.code == 200) {
this.uploadAuth = response.uploadAuth;
console.log(this.uploadAuth);
this.videoFrom.videoId = this.uploadAuth.videoId;
this.uploader = this.createUploader();
this.uploader.addFile(this.file, null, null, null, userData);
this.uploadDisabled = false;
this.pauseDisabled = true;
this.resumeDisabled = true;
}
});
}
});
},
authUpload() {
// startUpload ,
if (this.uploader !== null) {
this.uploader.startUpload();
this.uploadDisabled = true;
this.pauseDisabled = false;
}
},
//
pauseUpload() {
if (this.uploader !== null) {
this.uploader.stopUpload();
this.resumeDisabled = false;
this.pauseDisabled = true;
}
},
//
resumeUpload() {
if (this.uploader !== null) {
this.uploader.startUpload();
this.resumeDisabled = true;
this.pauseDisabled = false;
}
},
createUploader(type) {
let self = this;
let uploader = new AliyunUpload.Vod({
timeout: self.timeout || 60000,
partSize: self.partSize || 1048576,
parallel: self.parallel || 5,
retryCount: self.retryCount || 1,
retryDuration: self.retryDuration || 2,
region: self.region,
userId: self.userId,
//
addFileSuccess: function (uploadInfo) {
self.uploadDisabled = false;
self.resumeDisabled = false;
self.statusText = "添加视频成功, 等待上传...";
console.log("addFileSuccess: " + uploadInfo.file.name);
},
//
onUploadstarted: function (uploadInfo) {
self.uploading = true;
// UploadAuth , uploader.setUploadAuthAndAddress
// UploadAuth , uploadInfo.videoIduploadauthuploadAddress
// uploadInfo.videoId
// : demo UploadAuth , 使 uploadInfo.videoId openApi
// uploadInfo.videoId , (https://help.aliyun.com/document_detail/55408.html)
// uploadInfo.videoId , (https://help.aliyun.com/document_detail/55407.html)
uploader.setUploadAuthAndAddress(
uploadInfo,
self.uploadAuth.uploadAuth,
self.uploadAuth.uploadAddress,
self.uploadAuth.videoId
);
self.statusText = "视频开始上传...";
console.log(
"onUploadStarted:" +
uploadInfo.file.name +
", endpoint:" +
uploadInfo.endpoint +
", bucket:" +
uploadInfo.bucket +
", object:" +
uploadInfo.object
);
},
//
onUploadSucceed: function (uploadInfo) {
console.log(
"onUploadSucceed: " +
uploadInfo.file.name +
", endpoint:" +
uploadInfo.endpoint +
", bucket:" +
uploadInfo.bucket +
", object:" +
uploadInfo.object
);
self.statusText = "视频上传成功!";
},
//
onUploadFailed: function (uploadInfo, code, message) {
console.log(
"onUploadFailed: file:" +
uploadInfo.file.name +
",code:" +
code +
", message:" +
message
);
self.uploading = false;
self.statusText = "视频上传失败!";
},
//
onUploadCanceled: function (uploadInfo, code, message) {
console.log(
"Canceled file: " +
uploadInfo.file.name +
", code: " +
code +
", message:" +
message
);
self.statusText = "视频已暂停上传";
},
// ,
onUploadProgress: function (uploadInfo, totalSize, progress) {
console.log(
"onUploadProgress:file:" +
uploadInfo.file.name +
", fileSize:" +
totalSize +
", percent:" +
Math.ceil(progress * 100) +
"%"
);
let progressPercent = Math.ceil(progress * 100);
self.authProgress = progressPercent;
self.statusText = "视频上传中...";
},
//
onUploadTokenExpired: function (uploadInfo) {
// , UploadAuth
// uploadInfo.videoId (https://help.aliyun.com/document_detail/55408.html) UploadAuth
// resumeUploadWithAuth , , UploadAuth
/*let refreshUrl = 'https://demo-vod.cn-shanghai.aliyuncs.com/voddemo/RefreshUploadVideo?BusinessType=vodai&TerminalType=pc&DeviceModel=iPhone9,2&UUID=59ECA-4193-4695-94DD-7E1247288&AppVersion=1.0.0&Title=haha1&FileName=xxx.mp4&VideoId=' + uploadInfo.videoId
axios.get(refreshUrl).then(({data}) => {
let uploadAuth = data.UploadAuth
uploader.resumeUploadWithAuth(uploadAuth)
console.log('upload expired and resume upload with uploadauth ' + uploadAuth)
})*/
self.statusText = '视频上传超时...';
self.uploading = false;
},
//
onUploadEnd: function (uploadInfo) {
self.statusText = '视频上传完毕'
self.uploading = false;
self.uploadVideoFlag = true;
submitVideoSnapshot(self.videoFrom.videoId).then(response => {
if(response.code == 200){
console.log("-- 截图成功 --");
}
})
}
})
return uploader
}
}
}
self.statusText = "视频上传超时...";
self.uploading = false;
},
//
onUploadEnd: function (uploadInfo) {
self.statusText = "视频上传完毕";
self.uploading = false;
self.uploadVideoFlag = true;
submitVideoSnapshot(self.videoFrom.videoId).then((response) => {
if (response.code == 200) {
console.log("-- 截图成功 --");
}
});
},
});
return uploader;
},
},
};
</script>

View File

@ -1,6 +1,12 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
<el-form
:model="queryParams"
ref="queryForm"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="关键词" prop="key">
<el-input
v-model.trim="queryParams.key"
@ -16,12 +22,12 @@
clearable
size="small"
>
<el-option key="0" label="不展示" value="0"/>
<el-option key="1" label="展示" value="1"/>
<el-option key="0" label="不展示" value="0" />
<el-option key="1" label="展示" value="1" />
</el-select>
</el-form-item>
<el-form-item label="视频类别" prop="cateId">
<!-- <el-select v-model="queryParams.cateId" clearable filterable placeholder="请选择类别">
<el-form-item label="视频类别" prop="cateId">
<!-- <el-select v-model="queryParams.cateId" clearable filterable placeholder="请选择类别">
<el-option
v-for="classify in classifyList"
:key="classify.id"
@ -29,28 +35,41 @@
:value="classify.id"
/>
</el-select>-->
<treeselect
v-model="queryParams.cateId"
:options="classifyList"
:normalizer="normalizer"
:show-count="true"
placeholder="选择分类"
style="width:200px"
/>
<treeselect
v-model="queryParams.cateId"
:options="classifyList"
:normalizer="normalizer"
:show-count="true"
placeholder="选择分类"
style="width: 200px"
/>
</el-form-item>
<el-form-item label="视频权限" prop="payLevel">
<el-select v-model="queryParams.payLevel" clearable filterable placeholder="请选择权限">
<el-option
v-for="dict in payVideoLevelList"
:key="dict.dictValue"
:label="dict.dictLabel"
:value="parseInt(dict.dictValue)"
/>
</el-select>
</el-form-item>
<el-select
v-model="queryParams.payLevel"
clearable
filterable
placeholder="请选择权限"
>
<el-option
v-for="dict in payVideoLevelList"
:key="dict.dictValue"
:label="dict.dictLabel"
:value="parseInt(dict.dictValue)"
/>
</el-select>
</el-form-item>
<el-form-item>
<el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
<el-button
type="cyan"
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>
@ -62,7 +81,8 @@
size="mini"
@click="clickUploadVideo"
v-hasPermi="['custom:nutritionalVideo:add']"
>视频上传</el-button>
>视频上传</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
@ -72,7 +92,8 @@
:disabled="single"
@click="handleUpdate"
v-hasPermi="['custom:nutritionalVideo:edit']"
>修改</el-button>
>修改</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
@ -82,7 +103,8 @@
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['custom:nutritionalVideo:remove']"
>删除</el-button>
>删除</el-button
>
</el-col>
<el-col :span="1.5">
<el-button
@ -91,7 +113,8 @@
icon="el-icon-menu"
@click="handleVideoClassify"
v-hasPermi="['custom:videoClassify:list']"
>视频分类管理</el-button>
>视频分类管理</el-button
>
</el-col>
<!--
<el-col :span="1.5">
@ -103,48 +126,80 @@
v-hasPermi="['custom:nutritionalVideo:export']"
>导出</el-button>
</el-col>-->
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
<right-toolbar
:showSearch.sync="showSearch"
@queryTable="getList"
></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="nutritionalVideoList" @selection-change="handleSelectionChange">
<el-table
v-loading="loading"
:data="nutritionalVideoList"
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="55" align="center" />
<!--<el-table-column label="视频分类ID" align="center" prop="cateId" />-->
<el-table-column label="封面" align="center" prop="coverUrl" width="300">
<template slot-scope="scope">
<el-image
style="width: 300px; height: 200px"
:src="scope.row.coverUrl"
:preview-src-list="coverImageList">
style="width: 300px; height: 200px"
:src="scope.row.coverUrl"
:preview-src-list="coverImageList"
>
</el-image>
</template>
</el-table-column>
<el-table-column label="标题" align="center" prop="title" width="200">
<template slot-scope="scope" >
<AutoHideMessage :data="scope.row.title == null ? '' : (scope.row.title+'')" :maxLength="20"></AutoHideMessage>
<template slot-scope="scope">
<AutoHideMessage
:data="scope.row.title == null ? '' : scope.row.title + ''"
:maxLength="20"
></AutoHideMessage>
</template>
</el-table-column>
<el-table-column label="描述" align="center" prop="description" >
<template slot-scope="scope" >
<AutoHideMessage :data="scope.row.description == null ? '' : (scope.row.description+'')" :maxLength="100"></AutoHideMessage>
<el-table-column label="描述" align="center" prop="description">
<template slot-scope="scope">
<AutoHideMessage
:data="
scope.row.description == null ? '' : scope.row.description + ''
"
:maxLength="100"
></AutoHideMessage>
</template>
</el-table-column>
<!--<el-table-column label="标签" align="center" prop="tags" width="100"/>-->
<el-table-column label="分类" align="center" prop="cateName" width="100"/>
<el-table-column label="权限等级" align="center" prop="payLevelName" width="100"/>
<el-table-column label="展示状态" align="center" prop="showFlag" width="200">
<template slot-scope="scope" >
<el-table-column
label="分类"
align="center"
prop="cateName"
width="100"
/>
<el-table-column
label="权限等级"
align="center"
prop="payLevelName"
width="100"
/>
<el-table-column
label="展示状态"
align="center"
prop="showFlag"
width="200"
>
<template slot-scope="scope">
<el-switch
v-model="scope.row.wxShow"
active-text="展示"
inactive-text="不展示"
@change="handleWxShow($event, scope.row)"
>
</el-switch>
v-model="scope.row.wxShow"
active-text="展示"
inactive-text="不展示"
@change="handleWxShow($event, scope.row)"
/>
</template>
</el-table-column>
<el-table-column label="创建时间" align="center" prop="createTime" >
<el-table-column label="创建时间" align="center" prop="createTime">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.createTime, "{y}-{m}-{d} {h}:{i}") }}</span>
<span>{{
parseTime(scope.row.createTime, "{y}-{m}-{d} {h}:{i}")
}}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" width="200">
@ -155,33 +210,34 @@
icon="el-icon-edit"
@click="getVideoPlayUrl(scope.row.id)"
v-hasPermi="['custom:nutritionalVideo:query']"
>播放</el-button>
>播放</el-button
>
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['custom:nutritionalVideo:edit']"
>修改</el-button>
>修改</el-button
>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['custom:nutritionalVideo:remove']"
>删除</el-button>
>删除</el-button
>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
:pageSizes="[5,10,15,20]"
:pageSizes="[5, 10, 15, 20]"
@pagination="getList"
/>
@ -189,27 +245,27 @@
<el-dialog :title="title" :visible.sync="open" width="700px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="视频标题" prop="title">
<el-input
type="textarea"
placeholder="请输入视频标题"
v-model="form.title"
maxlength="50"
rows="1"
show-word-limit
/>
<el-input
type="textarea"
placeholder="请输入视频标题"
v-model="form.title"
maxlength="50"
rows="1"
show-word-limit
/>
</el-form-item>
<el-form-item label="视频描述" prop="description">
<el-input
type="textarea"
placeholder="请输入视频描述"
v-model="form.description"
maxlength="1000"
rows="2"
show-word-limit
/>
type="textarea"
placeholder="请输入视频描述"
v-model="form.description"
maxlength="1000"
rows="2"
show-word-limit
/>
</el-form-item>
<div style="display:flex">
<el-form-item label="视频类别" prop="cateId" style="width:300px">
<div style="display: flex">
<el-form-item label="视频类别" prop="cateId" style="width: 300px">
<!--<el-select v-model="form.cateId" clearable filterable placeholder="请选择类别">
<el-option
v-for="classify in classifyList"
@ -219,16 +275,25 @@
/>
</el-select>-->
<treeselect
v-model="form.cateId"
:options="classifyList"
:normalizer="normalizer"
:show-count="true"
placeholder="选择分类"
style="width:200px"
/>
v-model="form.cateId"
:options="classifyList"
:normalizer="normalizer"
:show-count="true"
placeholder="选择分类"
style="width: 200px"
/>
</el-form-item>
<el-form-item label="视频权限" prop="payLevel" style="margin-left:40px">
<el-select v-model="form.payLevel" clearable filterable placeholder="请选择权限">
<el-form-item
label="视频权限"
prop="payLevel"
style="margin-left: 40px"
>
<el-select
v-model="form.payLevel"
clearable
filterable
placeholder="请选择权限"
>
<el-option
v-for="dict in payVideoLevelList"
:key="dict.dictValue"
@ -237,19 +302,39 @@
/>
</el-select>
</el-form-item>
</div>
<el-form-item label="视频封面" prop="coverUrl">
<UploadFile ref="uploadFile" v-if="open" :prefix="'videoCover'" :coverUrl="form.previewUrl" @callbackMethod="handleCoverUrl" :tips="''"></UploadFile>
<el-button type="primary" size="small" icon="el-icon-film" @click="selectVideoCover" title="上传视频之后选择视频截图作为封面">选择封面</el-button>
</el-form-item>
<el-form-item label="展示状态" prop="wxShow">
<el-switch
v-model="form.wxShow"
active-text="展示"
inactive-text="不展示">
</el-switch>
<div style="color:red">提示开启展示之后客户可看到该视频请保证内容正确再展示</div>
</el-form-item>
</div>
<el-form-item label="视频封面" prop="coverUrl">
<UploadFile
ref="uploadFile"
v-if="open"
:prefix="'videoCover'"
:coverUrl="form.previewUrl"
@callbackMethod="handleCoverUrl"
:tips="''"
></UploadFile>
<el-button
type="primary"
size="small"
icon="el-icon-film"
@click="selectVideoCover"
title="上传视频之后选择视频截图作为封面"
>选择封面</el-button
>
</el-form-item>
<el-form-item label="排序" prop="priorityLevel">
<el-input-number v-model="form.priorityLevel" :step="1" size="small" />
</el-form-item>
<el-form-item label="展示状态" prop="wxShow">
<el-switch
v-model="form.wxShow"
active-text="展示"
inactive-text="不展示"
>
</el-switch>
<div style="color: red">
提示开启展示之后客户可看到该视频请保证内容正确再展示
</div>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
@ -261,281 +346,309 @@
<UploadVideo ref="uploadVideoRef"></UploadVideo>
<!-- 视频分类管理 -->
<el-dialog title="视频分类列表" :visible.sync="videoClassifyOpen" width="800px" append-to-body @closed="getAllVideoClassify();">
<el-dialog
title="视频分类列表"
:visible.sync="videoClassifyOpen"
width="800px"
append-to-body
@closed="getAllVideoClassify()"
>
<div style="height: 500px; overflow: auto">
<VideoClassify ref="videoClassifyRef"></VideoClassify>
<VideoClassify ref="videoClassifyRef"></VideoClassify>
</div>
</el-dialog>
<!-- 手动选择封面 -->
<VideoSelectCover ref="videoSelectCoverRef"></VideoSelectCover>
<VideoSelectCover ref="videoSelectCoverRef"></VideoSelectCover>
</div>
</template>
<script>
import { listNutritionalVideo, getNutritionalVideo, delNutritionalVideo, addNutritionalVideo, updateNutritionalVideo, exportNutritionalVideo, updateWxShow,getVideoPlayUrlById } from "@/api/custom/nutritionalVideo";
import {getAllClassify } from "@/api/custom/videoClassify";
import UploadVideo from "@/components/UploadVideo";
import UploadFile from "@/components/FileUpload/UploadFile";
import VideoClassify from "../videoClassify";
import AutoHideMessage from "@/components/AutoHideMessage";
import Treeselect from "@riophae/vue-treeselect";
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
import IconSelect from "@/components/IconSelect";
import VideoSelectCover from "@/components/VideoSelectCover";
export default {
name: "NutritionalVideo",
data() {
import {
listNutritionalVideo,
getNutritionalVideo,
delNutritionalVideo,
addNutritionalVideo,
updateNutritionalVideo,
exportNutritionalVideo,
updateWxShow,
getVideoPlayUrlById,
} from "@/api/custom/nutritionalVideo";
import { getAllClassify } from "@/api/custom/videoClassify";
import UploadVideo from "@/components/UploadVideo";
import UploadFile from "@/components/FileUpload/UploadFile";
import VideoClassify from "../videoClassify";
import AutoHideMessage from "@/components/AutoHideMessage";
import Treeselect from "@riophae/vue-treeselect";
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
import IconSelect from "@/components/IconSelect";
import VideoSelectCover from "@/components/VideoSelectCover";
export default {
name: "NutritionalVideo",
data() {
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
nutritionalVideoList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 5,
key: null,
showFlag: null,
cateId: null,
payLevel: null,
},
//
form: {},
//
rules: {
title: [{ required: true, message: "标题不能为空", trigger: "blur" }],
cateId: [
{ required: true, message: "视频类别不能为空", trigger: "blur" },
],
payLevel: [
{ required: true, message: "视频权限不能为空", trigger: "blur" },
],
},
coverImageList: [],
//
classifyList: [],
//
allClassifyList: [],
//
payVideoLevelList: [],
//
videoClassifyOpen: false,
};
},
created() {
this.getList();
this.getAllVideoClassify();
this.getDicts("video_pay_level").then((response) => {
this.payVideoLevelList = response.data;
});
},
components: {
UploadVideo,
UploadFile,
VideoClassify,
AutoHideMessage,
Treeselect,
IconSelect,
VideoSelectCover,
},
methods: {
/** 查询营养视频列表 */
getList() {
this.loading = true;
listNutritionalVideo(this.queryParams).then((response) => {
response.rows.forEach((element) => {
element.wxShow = element.showFlag == 1 ? true : false;
});
this.nutritionalVideoList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
getAllVideoClassify() {
getAllClassify().then((response) => {
if (response.code == 200) {
this.allClassifyList = response.data;
this.classifyList = [];
const classify = { id: 0, cateName: "主分类", children: [] };
classify.children = this.handleTree(response.data, "id");
this.classifyList.push(classify);
}
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
id: null,
videoId: null,
cateId: null,
coverUrl: null,
title: null,
description: null,
tags: null,
payLevel: null,
showFlag: null,
wxShow: false,
previewUrl: null,
};
this.resetForm("form");
},
selectVideoCover() {
this.$refs.videoSelectCoverRef.showDialog(this.form, (url) => {
//console.log(url);
this.form.previewUrl = url;
this.form.coverUrl = url;
});
},
/** 搜索按钮操作 */
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;
},
clickUploadVideo() {
this.$refs.uploadVideoRef.showDialog(this.allClassifyList, () => {
this.getList();
});
},
handleVideoClassify() {
this.videoClassifyOpen = true;
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加营养视频";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids;
getNutritionalVideo(id).then((response) => {
response.data.wxShow = response.data.showFlag == 1 ? true : false;
this.form = response.data;
this.open = true;
this.title = "修改营养视频";
});
},
//
getVideoPlayUrl(id) {
getVideoPlayUrlById(id).then((response) => {
let url = response.data.playUrl;
if (url != undefined && url != null) {
window.open(url, "_blank");
}
});
},
/** 转换菜单数据结构 */
normalizer(node) {
if (node.children && !node.children.length) {
delete node.children;
}
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
nutritionalVideoList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 5,
key: null,
showFlag: null,
cateId: null,
payLevel: null
},
//
form: {},
//
rules: {
title: [
{ required: true, message: "标题不能为空", trigger: "blur" },
],
cateId:[
{ required: true, message: "视频类别不能为空", trigger: "blur" },
],
payLevel:[
{ required: true, message: "视频权限不能为空", trigger: "blur" },
]
},
coverImageList:[],
//
classifyList:[],
//
allClassifyList:[],
//
payVideoLevelList:[],
//
videoClassifyOpen:false
id: node.id,
label: node.cateName,
children: node.children,
};
},
created() {
this.getList();
this.getAllVideoClassify();
this.getDicts("video_pay_level").then((response) => {
this.payVideoLevelList = response.data;
});
},
components: {
UploadVideo,UploadFile,VideoClassify,AutoHideMessage,Treeselect, IconSelect,VideoSelectCover
},
methods: {
/** 查询营养视频列表 */
getList() {
this.loading = true;
listNutritionalVideo(this.queryParams).then(response => {
response.rows.forEach(element => {
element.wxShow = element.showFlag == 1 ? true : false;
});
this.nutritionalVideoList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
getAllVideoClassify(){
getAllClassify().then(response => {
if(response.code == 200){
this.allClassifyList = response.data;
this.classifyList = [];
const classify = { id: 0, cateName: '主分类', children: [] };
classify.children = this.handleTree(response.data, "id");
this.classifyList.push(classify);
}
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
id: null,
videoId:null,
cateId: null,
coverUrl: null,
title: null,
description: null,
tags: null,
payLevel:null,
showFlag: null,
wxShow: false,
previewUrl: null
};
this.resetForm("form");
},
selectVideoCover(){
this.$refs.videoSelectCoverRef.showDialog(this.form,(url)=>{
//console.log(url);
this.form.previewUrl = url;
this.form.coverUrl = url;
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate((valid) => {
if (valid) {
this.form.showFlag = this.form.wxShow ? 1 : 0;
//
if (this.form.cateId == 0) {
this.$message({
message: "视频分类不能选择主分类",
type: "warning",
});
},
/** 搜索按钮操作 */
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
},
clickUploadVideo(){
this.$refs.uploadVideoRef.showDialog(this.allClassifyList, ()=>{
this.getList();
});
},
handleVideoClassify(){
this.videoClassifyOpen = true;
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加营养视频";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getNutritionalVideo(id).then(response => {
response.data.wxShow = response.data.showFlag == 1 ? true : false;
this.form = response.data;
this.open = true;
this.title = "修改营养视频";
});
},
//
getVideoPlayUrl(id){
getVideoPlayUrlById(id).then(response => {
let url = response.data.playUrl;
if(url != undefined && url != null){
window.open(url, '_blank');
}
});
},
/** 转换菜单数据结构 */
normalizer(node) {
if (node.children && !node.children.length) {
delete node.children;
}
return {
id: node.id,
label: node.cateName,
children: node.children
};
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
this.form.showFlag = this.form.wxShow ? 1 : 0;
//
if(this.form.cateId == 0){
this.$message({
message: "视频分类不能选择主分类",
type: "warning",
});
return;
}
if (this.form.id != null) {
updateNutritionalVideo(this.form).then(response => {
if (response.code === 200) {
return;
}
if (this.form.id != null) {
updateNutritionalVideo(this.form).then((response) => {
if (response.code === 200) {
this.msgSuccess("修改成功");
this.open = false;
this.getList();
}
});
} else {
addNutritionalVideo(this.form).then(response => {
if (response.code === 200) {
} else {
addNutritionalVideo(this.form).then((response) => {
if (response.code === 200) {
this.msgSuccess("新增成功");
this.open = false;
this.getList();
}
});
}
}
});
},
handleWxShow(newWxshow, row){
let param = {
id: row.id,
showFlag: newWxshow ? 1 : 0
};
updateWxShow(param);
},
handleCoverUrl(url){
this.form.coverUrl = url;
console.log(this.form.coverUrl);
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$confirm('是否确认删除营养视频编号为"' + ids + '"的数据项?', "警告", {
}
});
},
handleWxShow(newWxshow, row) {
let param = {
id: row.id,
showFlag: newWxshow ? 1 : 0,
};
updateWxShow(param);
},
handleCoverUrl(url) {
this.form.coverUrl = url;
console.log(this.form.coverUrl);
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$confirm(
'是否确认删除营养视频编号为"' + ids + '"的数据项?',
"警告",
{
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}).then(function() {
type: "warning",
}
)
.then(function () {
return delNutritionalVideo(ids);
}).then(() => {
})
.then(() => {
this.getList();
this.msgSuccess("删除成功");
}).catch(function() {});
},
/** 导出按钮操作 */
handleExport() {
const queryParams = this.queryParams;
this.$confirm('是否确认导出所有营养视频数据项?', "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}).then(function() {
this.msgSuccess("删除成功");
})
.catch(function () {});
},
/** 导出按钮操作 */
handleExport() {
const queryParams = this.queryParams;
this.$confirm("是否确认导出所有营养视频数据项?", "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(function () {
return exportNutritionalVideo(queryParams);
}).then(response => {
})
.then((response) => {
this.download(response.msg);
}).catch(function() {});
}
}
};
})
.catch(function () {});
},
},
};
</script>