Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mayi-mp-shop
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
程默
mayi-mp-shop
Commits
b1620a23
Commit
b1620a23
authored
Sep 11, 2023
by
李嘉林
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
头像上传换移动云
parent
cd8246ad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
27 deletions
+24
-27
src/pages/userInfo/index.vue
+24
-27
No files found.
src/pages/userInfo/index.vue
View file @
b1620a23
...
...
@@ -346,41 +346,38 @@ export default {
wx
.
showLoading
({
title
:
'上传中...'
,
})
this
.
get_oss_config
(()
=>
{
let
fileName
=
`
${
_this
.
ossConfig
.
dir
}${
userImg
.
split
(
"/"
).
pop
()}
`
;
console
.
log
(
fileName
,
'----------fileName'
)
wx
.
uploadFile
({
url
:
`
${
_this
.
ossConfig
.
host
}
`
,
filePath
:
userImg
,
name
:
"file"
,
formData
:
{
key
:
fileName
,
OSSAccessKeyId
:
_this
.
ossConfig
.
accessid
,
policy
:
_this
.
ossConfig
.
policy
,
signature
:
_this
.
ossConfig
.
signature
,
success_action_status
:
"200"
,
},
success
(
res
)
{
if
(
res
.
statusCode
==
200
)
{
let
host
=
_this
.
ossConfig
.
host
.
substr
(
-
1
)
==
"/"
?
_this
.
ossConfig
.
host
:
`
${
_this
.
ossConfig
.
host
}
/`
;
_this
.
userMsg
.
headPortraitUrl
=
`
${
host
}${
fileName
}
`
;
wx
.
uploadFile
({
url
:
`
${
process
.
env
.
OLSHOP_URL
}
/common/uploadFile`
,
filePath
:
userImg
,
name
:
"file"
,
formData
:
{},
success
(
res
)
{
console
.
log
(
res
.
data
,
'--res'
)
try
{
let
data
=
res
.
data
?
JSON
.
parse
(
res
.
data
)
:
{};
if
(
data
.
code
==
200
)
{
_this
.
userMsg
.
headPortraitUrl
=
data
.
data
.
imgUrl
;
console
.
log
(
_this
.
userMsg
.
headPortraitUrl
,
'---_this.userMsg.headPortraitUrl'
)
wx
.
hideLoading
();
}
//do something
},
fail
(
res
)
{
console
.
log
(
res
,
"-----------------fail"
);
}
catch
(
error
)
{
wx
.
showToast
({
title
:
"上传失败"
,
icon
:
"error"
,
duration
:
1000
,
});
},
});
}
//do something
},
fail
(
res
)
{
log
.
info
(
res
,
'---上传头像失败'
)
console
.
log
(
res
,
'---上传头像失败'
)
wx
.
showToast
({
title
:
"上传失败"
,
icon
:
"error"
,
duration
:
1000
,
});
},
});
},
random_string
(
len
)
{
...
...
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