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
be8e13eb
Commit
be8e13eb
authored
May 20, 2024
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
阿里文件上传修改
parent
e36010bb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
29 deletions
+27
-29
index.js
src/plug/index.js
+27
-29
No files found.
src/plug/index.js
View file @
be8e13eb
...
...
@@ -55,10 +55,10 @@ export default {
//域名管理对象
Vue
.
prototype
.
domainManager
=
function
()
{
let
domainUrl
=
"http://192.168.10.68:5000"
;
// let
domainUrl = "https://mallapi.oytour.com";
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"
;
let
vtUploadUrl
=
"http://192.168.
5.46
:8120"
;
let
vtViewUrl
=
"http://192.168.
5.46
:8130"
;
let
locationName
=
window
.
location
.
hostname
;
if
(
locationName
.
indexOf
(
'testmall.oytour'
)
!==
-
1
)
{
...
...
@@ -285,36 +285,34 @@ export default {
}
});
},
//上传至阿里云
//上传至阿里云
【2024-05-20转为后台上传】
Vue
.
prototype
.
uploadToAli
=
function
(
path
,
fileObj
,
successCall
)
{
var
upInfo
=
JSON
.
parse
(
localStorage
.
uploadInfo
);
var
OSS
=
require
(
'ali-oss'
);
var
oss
=
new
OSS
({
region
:
upInfo
.
Region
,
accessKeyId
:
upInfo
.
SecretId
,
accessKeySecret
:
upInfo
.
SecretKey
,
bucket
:
upInfo
.
Bucket
})
//获取文件扩展名
var
filename
=
fileObj
.
name
;
var
index
=
filename
.
lastIndexOf
(
"."
);
var
suffix
=
filename
.
substr
(
index
);
var
timestamp1
=
Date
.
parse
(
new
Date
())
+
"_"
+
(
Math
.
ceil
(
Math
.
random
()
*
1000
));
var
that
=
this
;
let
str
=
''
;
if
(
this
.
isOnline
())
{
str
=
"/
Test
"
str
=
"/
2024
"
}
var
newFileName
=
str
+
'/Upload/'
+
path
+
"/"
+
timestamp1
+
""
+
suffix
;
var
result
=
oss
.
multipartUpload
(
newFileName
,
fileObj
,
{
progress
:
function
*
(
p
)
{}
}).
then
(
res
=>
{
var
uploadResult
=
{
resultCode
:
1
,
FileName
:
fileObj
.
name
,
FileUrl
:
res
.
res
.
requestUrls
[
0
].
replace
(
'http'
,
'https'
)
}
successCall
(
uploadResult
);
})
var
newFileName
=
str
+
'/Upload/'
+
path
+
"/"
;
var
uploadUrl
=
that
.
domainManager
().
VTUploadUrl
+
"/Upload/UploadToALiOSS?filePath="
+
newFileName
;
var
formData
=
new
FormData
();
formData
.
append
(
"myfile"
,
fileObj
);
that
.
$http
.
post
(
uploadUrl
,
formData
,
{})
.
then
(
res
=>
{
console
.
log
(
"ali_res"
,
res
);
if
(
res
&&
res
.
data
.
StatusCode
==
1
&&
res
.
data
.
FilePath
)
{
var
uploadResult
=
{
resultCode
:
1
,
FileName
:
fileObj
.
name
,
FileUrl
:
res
.
data
.
FilePath
,
VideoCoverImg
:
that
.
domainManager
().
VTViewUrl
+
res
.
data
.
VideoCoverImg
}
if
(
successCall
)
{
successCall
(
uploadResult
);
}
}
}).
catch
(
function
(
reason
)
{
console
.
log
(
reason
)
});
},
//公用跳转
Vue
.
prototype
.
CommonJump
=
function
(
path
,
obj
)
{
...
...
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