Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mingPayMobile
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fengzhaoyu
mingPayMobile
Commits
2e144639
Commit
2e144639
authored
Aug 02, 2019
by
fengzhaoyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mod:修改付款时进入后台再切回前台连接断开,解决方案:在onshow中重新建立连接。
parent
666ec144
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
0 deletions
+46
-0
payment.js
pages/payment/payment.js
+46
-0
No files found.
pages/payment/payment.js
View file @
2e144639
...
...
@@ -94,6 +94,52 @@ Page({
})
},
onShow
()
{
//页面显示
dd
.
connectSocket
({
url
:
`ws://
${
app
.
globalData
.
globalUrl
}
/v1/mingpaywebsocket?param=
${
dd
.
corpId
}
_
${
dd
.
getStorageSync
({
key
:
'userId'
}).
data
}
`
,
data
:
{},
header
:{
'content-type'
:
'application/json'
,
'Authorization'
:
`Bearer
${
dd
.
getStorageSync
({
key
:
'token'
}).
data
.
access_token
}
`
},
method
:
"GET"
,
});
dd
.
onSocketOpen
(
function
(
res
)
{
console
.
log
(
'WebSocket 连接已打开!'
);
});
dd
.
onSocketError
(
function
(
res
){
console
.
log
(
'WebSocket 连接打开失败,请检查!'
);
});
dd
.
onSocketMessage
(
function
(
res
)
{
console
.
log
(
JSON
.
parse
(
res
.
data
))
let
resData
=
JSON
.
parse
(
res
.
data
)
if
(
resData
.
paymentCode
===
0
){
dd
.
redirectTo
({
url
:
`./../paySuccess/paySuccess?money=
${(
JSON
.
parse
(
res
.
data
).
orderAmount
).
toFixed
(
2
)}
`
})
}
else
if
(
resData
.
paymentCode
===
10001
){
dd
.
alert
({
content
:
'账户状态异常'
,
buttonText
:
'确定'
});
}
else
if
(
resData
.
paymentCode
===
10002
){
dd
.
alert
({
content
:
'卡片状态异常'
,
buttonText
:
'确定'
});
}
else
if
(
resData
.
paymentCode
===
10003
){
dd
.
alert
({
content
:
'账户余额不足'
,
buttonText
:
'确定'
});
}
else
if
(
resData
.
paymentCode
===
10004
){
dd
.
alert
({
content
:
'二维码失效'
,
buttonText
:
'确定'
});
}
})
},
onHide
()
{
...
...
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