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
5b764f2a
Commit
5b764f2a
authored
Dec 03, 2021
by
李智书
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.提交更新;
parent
21cafe4e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
2 deletions
+16
-2
src/pages/BankModule/Reflect/Reflect.vue
src/pages/BankModule/Reflect/Reflect.vue
+16
-2
No files found.
src/pages/BankModule/Reflect/Reflect.vue
View file @
5b764f2a
...
...
@@ -155,7 +155,7 @@
duration
:
0
});
$
.
ajax
({
url
:
gHost
+
'
/bocom/exchange/withdrawSms
'
,
url
:
gHost
+
'
/b
ank-wechat/b
ocom/exchange/withdrawSms
'
,
type
:
"
POST
"
,
contentType
:
"
application/x-www-form-urlencoded
"
,
data
:
{
...
...
@@ -246,7 +246,21 @@
},
// 提现
async
toDeposit
()
{
if
(
!
this
.
inputOtherM
)
{
uni
.
showModal
({
title
:
"
系统提示
"
,
content
:
"
请输入要提现的金额!
"
})
return
}
if
(
this
.
inputOtherM
*
1
<
0.01
)
{
weui
.
topTips
(
'
提现金额须大于等于0.01元
'
);
return
}
if
(
this
.
inputOtherM
*
1
>
this
.
ReflectMoney
)
{
weui
.
topTips
(
`提现金额不可大于账户余额`
);
return
}
this
.
$refs
.
popup
.
open
(
'
top
'
)
},
// 提现
...
...
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