Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ElectricitySheep
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄媛媛
ElectricitySheep
Commits
2c1cfbfd
Commit
2c1cfbfd
authored
Feb 01, 2024
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
视频上传生成封面图调整
parent
70a2353a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
24 deletions
+36
-24
materialMan.vue
src/components/CommodityMan/materialMan.vue
+10
-5
Choosevideo.vue
src/components/global/Choosevideo.vue
+10
-2
index.js
src/plug/index.js
+16
-17
No files found.
src/components/CommodityMan/materialMan.vue
View file @
2c1cfbfd
...
...
@@ -280,8 +280,7 @@
checkList
:
[],
checkAllList
:
[],
checkAll
:
false
,
uploadLoadingObj
:
null
,
//视频上传提示loaging
}
},
created
()
{
...
...
@@ -324,7 +323,6 @@
while
(
n
--
)
{
u8Arr
[
n
]
=
bstr
.
charCodeAt
(
n
);
// 将每个字节赋值到u8Arr中
}
var
newFile
=
new
File
([
u8Arr
],
fileName
,
{
type
:
mime
});
// 返回新生成的文件对象
...
...
@@ -333,6 +331,9 @@
if
(
res
.
resultCode
==
1
)
{
that
.
addpageMsg
.
Image
=
res
.
FileUrl
;
that
.
addPageList
();
if
(
that
.
uploadLoadingObj
)
{
that
.
uploadLoadingObj
.
close
();
}
}
})
}
...
...
@@ -541,10 +542,15 @@
}
})
},
//上传视频
UploadVideo
(
file
)
{
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 => {
// if (res.resultCode == 1) {
// that.addpageMsg.Image = res.VideoCoverImg;
...
...
@@ -568,7 +574,6 @@
},
beforeAvatarUpload
(
file
)
{
this
.
getTimes
(
file
);
//
},
getTimes
(
file
)
{
//获取时长
var
content
=
file
;
...
...
src/components/global/Choosevideo.vue
View file @
2c1cfbfd
...
...
@@ -157,6 +157,7 @@
},
selectId
:
-
1
,
emitmsg
:
{},
uploadLoadingObj
:
null
,
}
},
computed
:
{
...
...
@@ -196,7 +197,6 @@
canvas
.
height
=
140
;
canvas
.
getContext
(
'2d'
).
drawImage
(
video
,
0
,
0
,
video
.
clientWidth
,
video
.
clientHeight
)
base64Str
=
canvas
.
toDataURL
(
'image/jpeg'
);
console
.
log
(
"base64Str"
,
base64Str
)
var
arr
=
base64Str
.
split
(
','
);
// 分隔base64编码的头部信息
var
mime
=
arr
[
0
].
match
(
/:
(
.*
?)
;/
)[
1
];
// 获取MIME类型
var
bstr
=
atob
(
arr
[
1
]);
// Base64解码
...
...
@@ -214,11 +214,13 @@
if
(
res
.
resultCode
==
1
)
{
that
.
addpageMsg
.
Image
=
res
.
FileUrl
;
that
.
addPageList
();
if
(
that
.
uploadLoadingObj
)
{
that
.
uploadLoadingObj
.
close
();
}
}
})
}
},
Time
(
value
)
{
var
theTime
=
parseInt
(
value
);
// 秒
var
middle
=
0
;
// 分
...
...
@@ -270,6 +272,12 @@
// 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
=>
{
if
(
res
.
resultCode
==
1
)
{
if
(
that
.
addpageMsg
.
Type
==
2
)
{
...
...
src/plug/index.js
View file @
2c1cfbfd
...
...
@@ -54,8 +54,8 @@ export default {
//域名管理对象
Vue
.
prototype
.
domainManager
=
function
()
{
let
domainUrl
=
"http://localhost:50
00"
;
// let domainUrl = "https://mallapi.oytour.com";
let
domainUrl
=
"http://192.168.10.68:82
00"
;
// let domainUrl = "https://mallapi.oytour.com";
let
javaUrl
=
'http://192.168.10.214:8018'
;
let
vtUploadUrl
=
"http://192.168.10.214:8120"
;
let
vtViewUrl
=
"http://192.168.10.214:8130"
;
...
...
@@ -174,14 +174,13 @@ export default {
},
//上传文件到云存储
Vue
.
prototype
.
UploadFileToTencent
=
function
(
path
,
fileObj
,
callback
)
{
// debugger;
var
upInfo
=
JSON
.
parse
(
localStorage
.
uploadInfo
);
let
maxSize
=
500
*
1024
if
((
fileObj
.
type
==
"image/png"
||
fileObj
.
type
==
"image/jpeg"
)
&&
fileObj
.
size
>
maxSize
)
{
let
that
=
this
lrz
(
fileObj
,
{
width
:
750
,
quality
:
0.
8
quality
:
0.
9
})
.
then
(
function
(
rst
)
{
//成功时执行
...
...
@@ -331,8 +330,8 @@ export default {
}
//HTTP提交数据
Vue
.
prototype
.
apipost
=
function
(
cmd
,
msg
,
successCall
,
faildCall
,
isOnline
)
{
var
apiurl
=
this
.
domainManager
().
DomainUrl
+
cmd
;
var
postData
=
this
.
GetPostData
(
cmd
,
msg
,
""
);
this
.
$http
.
post
(
apiurl
,
postData
,
{
...
...
@@ -374,7 +373,7 @@ export default {
var
TenantId
=
"0"
;
//商户Id
var
EmpId
=
0
;
//员工编号【员工登录时使用】
if
(
this
.
getLocalStorage
()
!=
null
)
{
token
=
this
.
getLocalStorage
().
Token
;
token
=
this
.
getLocalStorage
().
Token
;
key
=
this
.
getLocalStorage
().
SecretKey
;
MallBaseId
=
this
.
getLocalStorage
().
MallBaseId
;
TenantId
=
this
.
getLocalStorage
().
TenantId
;
...
...
@@ -578,15 +577,15 @@ export default {
window
.
open
(
newUrl
.
href
,
'_blank'
);
},
// 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
postData
=
this
.
Get_i_Data
(
cmd
,
msg
,
""
);
var
postData
=
this
.
Get_i_Data
(
cmd
,
msg
,
""
);
this
.
$http
.
post
(
apiurl
,
postData
,
{
headers
:
{
'Content-Type'
:
'application/json'
,
'Referer-Viitto'
:
this
.
$route
.
path
}
})
headers
:
{
'Content-Type'
:
'application/json'
,
'Referer-Viitto'
:
this
.
$route
.
path
}
})
.
then
(
res
=>
{
if
(
res
.
data
.
resultCode
==
10000
||
res
.
data
.
resultCode
==
10001
)
{
// this.$router.push({
...
...
@@ -604,9 +603,9 @@ export default {
msg
=
{}
}
var
timestamp
=
(
new
Date
()).
valueOf
();
let
apiData
=
{}
let
apiData
=
{}
if
(
localStorage
.
getItem
(
'iframeData'
))
{
apiData
=
JSON
.
parse
(
localStorage
.
getItem
(
'iframeData'
))
apiData
=
JSON
.
parse
(
localStorage
.
getItem
(
'iframeData'
))
}
var
token
=
apiData
.
token
;
var
key
=
""
;
...
...
@@ -626,7 +625,7 @@ export default {
cmd
:
cmdStr
,
MallBaseId
:
5
,
TenantId
:
TenantId
,
EmpId
:
0
,
//员工编号【员工登录时使用】
EmpId
:
0
,
//员工编号【员工登录时使用】
SmallShopsId
:
0
,
MiniAppId
:
"wxbb033190e0ffa5db"
,
OpenId
:
"ow_7I5cKHQJeQlNJOKoeERRhe6SA"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment