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
42e37720
Commit
42e37720
authored
May 20, 2021
by
李嘉林
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
webview 添加sessionid
parent
9c83b605
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
5 deletions
+21
-5
src/pages/index/index.vue
+9
-2
src/utils/mayi.js
+12
-3
No files found.
src/pages/index/index.vue
View file @
42e37720
...
...
@@ -21,7 +21,7 @@ export default {
link
:
this
.
baseUrl
,
page
:
"/"
,
location_obj
:
encodeURIComponent
(
wx
.
getStorageSync
(
"location"
)),
params
:
"?mixid="
+
this
.
shopId
+
`&native_test=1
&location_obj=
${
this
.
location_obj
}
`
,
params
:
"?mixid="
+
this
.
shopId
+
`&native_test=1`
,
userInfo
:
{
nickName
:
"mpvue"
,
...
...
@@ -53,8 +53,15 @@ export default {
},
computed
:
{
pageUrl
()
{
if
(
this
.
location_obj
){
this
.
params
+=
`&location_obj=
${
this
.
location_obj
}
`
;
}
if
(
wx
.
getStorageSync
(
"sessionid"
)){
this
.
params
+=
`&sessionid=
${
wx
.
getStorageSync
(
"sessionid"
)}
`
;
}
console
.
log
(
this
.
params
,
'-------------------------57'
)
return
this
.
link
+
this
.
page
+
this
.
params
;
}
}
,
},
watch
:
{
pageUrl
(
n
,
o
)
{
...
...
src/utils/mayi.js
View file @
42e37720
...
...
@@ -299,14 +299,20 @@ export function themeMemberCardClick(item) {
showCancel
:
false
,
confirmColor
:
''
,
success
:
res
=>
{
let
backParams
=
`&cardId=
${
cardData
.
id
}
&userTel=
${
userInfo
.
mobilephone
}
`
;
let
backParams
=
`&cardId=
${
cardData
.
id
}
`
;
if
(
userInfo
.
mobilephone
)
{
backParams
+=
`&userTel=
${
userInfo
.
mobilephone
}
`
;
}
toPage
(
"/personalCenter/membershipCard"
,
backParams
);
}
})
}
else
{
if
(
res
.
data
.
msg
==
"不能重复领卡"
)
{
console
.
log
(
"---------------------------to-----1"
)
let
backParams
=
`&cardId=
${
cardData
.
id
}
&userTel=
${
userInfo
.
mobilephone
}
`
;
let
backParams
=
`&cardId=
${
cardData
.
id
}
`
;
if
(
userInfo
.
mobilephone
)
{
backParams
+=
`&userTel=
${
userInfo
.
mobilephone
}
`
;
}
toPage
(
"/personalCenter/membershipCard"
,
backParams
);
}
else
{
wx
.
showToast
({
title
:
res
.
data
.
msg
,
icon
:
"none"
});
...
...
@@ -324,7 +330,10 @@ export function themeMemberCardClick(item) {
toPage
(
"/pay/payCard"
,
backParams
);
}
else
{
console
.
log
(
"---------------------------to-----3"
)
let
backParams
=
`&cardId=
${
cardData
.
id
}
&userTel=
${
userInfo
.
mobilephone
}
`
;
let
backParams
=
`&cardId=
${
cardData
.
id
}
`
;
if
(
userInfo
.
mobilephone
)
{
backParams
+=
`&userTel=
${
userInfo
.
mobilephone
}
`
;
}
toPage
(
"/personalCenter/membershipCard"
,
backParams
);
}
}
else
{
...
...
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