Commit 2c1cfbfd authored by 黄奎's avatar 黄奎

视频上传生成封面图调整

parent 70a2353a
...@@ -280,8 +280,7 @@ ...@@ -280,8 +280,7 @@
checkList: [], checkList: [],
checkAllList: [], checkAllList: [],
checkAll: false, checkAll: false,
uploadLoadingObj: null, //视频上传提示loaging
} }
}, },
created() { created() {
...@@ -324,7 +323,6 @@ ...@@ -324,7 +323,6 @@
while (n--) { while (n--) {
u8Arr[n] = bstr.charCodeAt(n); // 将每个字节赋值到u8Arr中 u8Arr[n] = bstr.charCodeAt(n); // 将每个字节赋值到u8Arr中
} }
var newFile = new File([u8Arr], fileName, { var newFile = new File([u8Arr], fileName, {
type: mime type: mime
}); // 返回新生成的文件对象 }); // 返回新生成的文件对象
...@@ -333,6 +331,9 @@ ...@@ -333,6 +331,9 @@
if (res.resultCode == 1) { if (res.resultCode == 1) {
that.addpageMsg.Image = res.FileUrl; that.addpageMsg.Image = res.FileUrl;
that.addPageList(); that.addPageList();
if (that.uploadLoadingObj) {
that.uploadLoadingObj.close();
}
} }
}) })
} }
...@@ -541,10 +542,15 @@ ...@@ -541,10 +542,15 @@
} }
}) })
}, },
//上传视频 //上传视频
UploadVideo(file) { UploadVideo(file) {
var that = this; var that = this;
that.uploadLoadingObj = this.$loading({
lock: true,
text: '正在上传视频,请稍后...',
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)'
});
// this.UploadSelfFile(this.FileType().Video, file.file, res => { // this.UploadSelfFile(this.FileType().Video, file.file, res => {
// if (res.resultCode == 1) { // if (res.resultCode == 1) {
// that.addpageMsg.Image = res.VideoCoverImg; // that.addpageMsg.Image = res.VideoCoverImg;
...@@ -568,7 +574,6 @@ ...@@ -568,7 +574,6 @@
}, },
beforeAvatarUpload(file) { beforeAvatarUpload(file) {
this.getTimes(file); // this.getTimes(file); //
}, },
getTimes(file) { //获取时长 getTimes(file) { //获取时长
var content = file; var content = file;
......
...@@ -157,6 +157,7 @@ ...@@ -157,6 +157,7 @@
}, },
selectId: -1, selectId: -1,
emitmsg: {}, emitmsg: {},
uploadLoadingObj: null,
} }
}, },
computed: { computed: {
...@@ -196,7 +197,6 @@ ...@@ -196,7 +197,6 @@
canvas.height = 140; canvas.height = 140;
canvas.getContext('2d').drawImage(video, 0, 0, video.clientWidth, video.clientHeight) canvas.getContext('2d').drawImage(video, 0, 0, video.clientWidth, video.clientHeight)
base64Str = canvas.toDataURL('image/jpeg'); base64Str = canvas.toDataURL('image/jpeg');
console.log("base64Str", base64Str)
var arr = base64Str.split(','); // 分隔base64编码的头部信息 var arr = base64Str.split(','); // 分隔base64编码的头部信息
var mime = arr[0].match(/:(.*?);/)[1]; // 获取MIME类型 var mime = arr[0].match(/:(.*?);/)[1]; // 获取MIME类型
var bstr = atob(arr[1]); // Base64解码 var bstr = atob(arr[1]); // Base64解码
...@@ -214,11 +214,13 @@ ...@@ -214,11 +214,13 @@
if (res.resultCode == 1) { if (res.resultCode == 1) {
that.addpageMsg.Image = res.FileUrl; that.addpageMsg.Image = res.FileUrl;
that.addPageList(); that.addPageList();
if (that.uploadLoadingObj) {
that.uploadLoadingObj.close();
}
} }
}) })
} }
}, },
Time(value) { Time(value) {
var theTime = parseInt(value); // 秒 var theTime = parseInt(value); // 秒
var middle = 0; // 分 var middle = 0; // 分
...@@ -270,6 +272,12 @@ ...@@ -270,6 +272,12 @@
// that.$forceUpdate(); // that.$forceUpdate();
// } // }
// }) // })
that.uploadLoadingObj = this.$loading({
lock: true,
text: '正在上传视频,请稍后...',
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)'
});
this.UploadFileToTencent(this.FileType().Video, file.file, res => { this.UploadFileToTencent(this.FileType().Video, file.file, res => {
if (res.resultCode == 1) { if (res.resultCode == 1) {
if (that.addpageMsg.Type == 2) { if (that.addpageMsg.Type == 2) {
......
...@@ -54,7 +54,7 @@ export default { ...@@ -54,7 +54,7 @@ export default {
//域名管理对象 //域名管理对象
Vue.prototype.domainManager = function () { Vue.prototype.domainManager = function () {
let domainUrl = "http://localhost:5000"; let domainUrl = "http://192.168.10.68:8200";
// let domainUrl = "https://mallapi.oytour.com"; // let domainUrl = "https://mallapi.oytour.com";
let javaUrl = 'http://192.168.10.214:8018'; let javaUrl = 'http://192.168.10.214:8018';
let vtUploadUrl = "http://192.168.10.214:8120"; let vtUploadUrl = "http://192.168.10.214:8120";
...@@ -174,14 +174,13 @@ export default { ...@@ -174,14 +174,13 @@ export default {
}, },
//上传文件到云存储 //上传文件到云存储
Vue.prototype.UploadFileToTencent = function (path, fileObj, callback) { Vue.prototype.UploadFileToTencent = function (path, fileObj, callback) {
// debugger;
var upInfo = JSON.parse(localStorage.uploadInfo); var upInfo = JSON.parse(localStorage.uploadInfo);
let maxSize = 500 * 1024 let maxSize = 500 * 1024
if ((fileObj.type == "image/png" || fileObj.type == "image/jpeg") && fileObj.size > maxSize) { if ((fileObj.type == "image/png" || fileObj.type == "image/jpeg") && fileObj.size > maxSize) {
let that = this let that = this
lrz(fileObj, { lrz(fileObj, {
width: 750, width: 750,
quality: 0.8 quality: 0.9
}) })
.then(function (rst) { .then(function (rst) {
//成功时执行 //成功时执行
...@@ -374,7 +373,7 @@ export default { ...@@ -374,7 +373,7 @@ export default {
var TenantId = "0"; //商户Id var TenantId = "0"; //商户Id
var EmpId = 0; //员工编号【员工登录时使用】 var EmpId = 0; //员工编号【员工登录时使用】
if (this.getLocalStorage() != null) { if (this.getLocalStorage() != null) {
token = this.getLocalStorage().Token ; token = this.getLocalStorage().Token;
key = this.getLocalStorage().SecretKey; key = this.getLocalStorage().SecretKey;
MallBaseId = this.getLocalStorage().MallBaseId; MallBaseId = this.getLocalStorage().MallBaseId;
TenantId = this.getLocalStorage().TenantId; TenantId = this.getLocalStorage().TenantId;
...@@ -578,7 +577,7 @@ export default { ...@@ -578,7 +577,7 @@ export default {
window.open(newUrl.href, '_blank'); window.open(newUrl.href, '_blank');
}, },
// iframe-甲鹤 提交数据 // iframe-甲鹤 提交数据
Vue.prototype.i_post = function (cmd, msg, successCall, faildCall,) { Vue.prototype.i_post = function (cmd, msg, successCall, faildCall, ) {
var apiurl = this.domainManager().DomainUrl + cmd; var apiurl = this.domainManager().DomainUrl + cmd;
var postData = this.Get_i_Data(cmd, msg, ""); var postData = this.Get_i_Data(cmd, msg, "");
this.$http.post(apiurl, postData, { this.$http.post(apiurl, postData, {
...@@ -604,7 +603,7 @@ export default { ...@@ -604,7 +603,7 @@ export default {
msg = {} msg = {}
} }
var timestamp = (new Date()).valueOf(); var timestamp = (new Date()).valueOf();
let apiData={} let apiData = {}
if (localStorage.getItem('iframeData')) { if (localStorage.getItem('iframeData')) {
apiData = JSON.parse(localStorage.getItem('iframeData')) apiData = JSON.parse(localStorage.getItem('iframeData'))
} }
...@@ -626,7 +625,7 @@ export default { ...@@ -626,7 +625,7 @@ export default {
cmd: cmdStr, cmd: cmdStr,
MallBaseId: 5, MallBaseId: 5,
TenantId: TenantId, TenantId: TenantId,
EmpId: 0,//员工编号【员工登录时使用】 EmpId: 0, //员工编号【员工登录时使用】
SmallShopsId: 0, SmallShopsId: 0,
MiniAppId: "wxbb033190e0ffa5db", MiniAppId: "wxbb033190e0ffa5db",
OpenId: "ow_7I5cKHQJeQlNJOKoeERRhe6SA", OpenId: "ow_7I5cKHQJeQlNJOKoeERRhe6SA",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment