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
99bfe1f2
Commit
99bfe1f2
authored
5 years ago
by
fengzhaoyu
Committed by
fengzhaoyu
5 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改:修改后台切近前台连接断开,二维码不刷新
parent
915c0a31
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
54 additions
and
0 deletions
+54
-0
payment.js
pages/payment/payment.js
+54
-0
No files found.
pages/payment/payment.js
View file @
99bfe1f2
...
@@ -95,6 +95,60 @@ Page({
...
@@ -95,6 +95,60 @@ Page({
},
},
onShow
()
{
onShow
()
{
//刷新二维码
const
_that
=
this
;
clearInterval
(
timeRefreshQRcode
);
_that
.
refreshQRcode
();
timeRefreshQRcode
=
setInterval
(
function
()
{
_that
.
refreshQRcode
();
},
55000
);
//页面显示
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
()
{
onHide
()
{
// 页面隐藏
// 页面隐藏
...
...
This diff is collapsed.
Click to expand it.
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