Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
X
xzf_uniapp-wechat-web
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
李智书
xzf_uniapp-wechat-web
Commits
e76172ea
Commit
e76172ea
authored
Dec 02, 2021
by
符伟
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' of
https://git.xiaopay.net/lizhishu/xzf_uniapp-wechat-web
into develop
parents
71b7b2c1
affd1be8
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
381 additions
and
16 deletions
+381
-16
src/pages.json
src/pages.json
+18
-13
src/pages/BankModule/Recharge/Recharge.vue
src/pages/BankModule/Recharge/Recharge.vue
+32
-3
src/pages/OpenAccountAgreement/OpenAccountAgreement.vue
src/pages/OpenAccountAgreement/OpenAccountAgreement.vue
+331
-0
No files found.
src/pages.json
View file @
e76172ea
...
...
@@ -286,19 +286,24 @@
"enablePullDownRefresh"
:
false
}
},{
"path"
:
"pages/recharging/recharging"
,
"style"
:
{
},
{
"path"
:
"pages/recharging/recharging"
,
"style"
:
{
"navigationStyle"
:
"custom"
,
"navigationBarTitleText"
:
"充值申请成功"
,
"enablePullDownRefresh"
:
false
}
},
{
"path"
:
"pages/OpenAccountAgreement/OpenAccountAgreement"
,
"style"
:
{
"navigationStyle"
:
"custom"
,
"navigationBarTitleText"
:
"三类户开户协议"
,
"enablePullDownRefresh"
:
false
}
}
],
"globalStyle"
:
{
"navigationBarTextStyle"
:
"black"
,
...
...
src/pages/BankModule/Recharge/Recharge.vue
View file @
e76172ea
...
...
@@ -287,15 +287,26 @@
},
mounted
:
function
()
{
},
onShow
:
function
()
{
if
(
bankInfo
.
userId
)
{
this
.
queryBankInfo
();
}
},
methods
:
{
// 更换银行卡
async
ChangeBankPay
()
{
uni
.
showModal
({
title
:
"
系统提示
"
,
content
:
"
功能开发中!
"
})
return
uni
.
showLoading
({
mask
:
true
,
title
:
"
请稍后....
"
});
this
.
BackToMini
(
'
AssignAddCard
'
)
uni
.
hideLoading
()
},
// 验证码弹出框开启
toDeposit
()
{
...
...
@@ -522,8 +533,26 @@
wx
.
showModal
({
title
:
'
充值申请已提交
'
,
content
:
'
银行处理需要1-5分钟时间,充值结果以余额查询为准。
'
,
showCancel
:
false
showCancel
:
false
,
success
:
function
()
{
let
accountNo
=
this_
.
bankInfo_
.
accountNo
accountNo
=
accountNo
.
slice
(
accountNo
.
length
-
4
,
accountNo
.
length
);
let
thiTime
=
new
Date
();
let
str
=
''
if
(
thiTime
.
getMinutes
()
+
20
>=
60
)
{
str
=
thiTime
.
getHours
()
+
1
+
'
:
'
+
(
60
-
thiTime
.
getMinutes
())
}
else
{
str
=
thiTime
.
getHours
()
+
'
:
'
+
thiTime
.
getMinutes
()
}
uni
.
navigateTo
({
url
:
`../../recharging/recharging?bankName=
${
this_
.
accountEnum
[
this_
.
bankInfo_
.
accountType
+
''
]}
&bankNumber=
${
accountNo
}
&time=
${
str
}
&money=
${(
amount
*
1
).
toFixed
(
2
)}
`
})
}
})
// 20211129
this_
.
RechargeSmsorderNoInfo
=
{}
}
else
{
...
...
@@ -682,11 +711,11 @@
let
this_
=
this
;
let
loading
=
weui
.
loading
(
'
请稍后
'
);
$
.
ajax
({
url
:
gHost
+
'
/bank-wechat/
icbc/account/bindcard
/bindingList
'
,
url
:
gHost
+
'
/bank-wechat/
user/bank
/bindingList
'
,
type
:
"
POST
"
,
contentType
:
"
application/x-www-form-urlencoded
"
,
data
:
{
mediumId
:
bankInfo
.
accountNo
,
cardNo
:
bankInfo
.
accountNo
,
schoolId
:
bankInfo
.
schoolId
,
userId
:
userID
,
sessionid
:
sessionID
,
...
...
src/pages/OpenAccountAgreement/OpenAccountAgreement.vue
0 → 100644
View file @
e76172ea
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