Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
A
az-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
李智书
az-uniapp-wechat-web
Commits
a7fd8a12
Commit
a7fd8a12
authored
Aug 24, 2021
by
李智书
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.提交更新;
parent
cd4f2981
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
25 deletions
+23
-25
pages/IcbcModule/Recharge/Recharge.vue
pages/IcbcModule/Recharge/Recharge.vue
+8
-10
pages/IcbcModule/Reflect/Reflect.vue
pages/IcbcModule/Reflect/Reflect.vue
+15
-15
No files found.
pages/IcbcModule/Recharge/Recharge.vue
View file @
a7fd8a12
...
...
@@ -372,12 +372,10 @@
amount
=
this
.
Money
*
1
}
let
this_
=
this
;
let
loading
=
Toast
.
loading
({
message
:
'
加载中...
'
,
forbidClick
:
true
,
loadingType
:
'
spinner
'
,
duration
:
0
});
uni
.
showLoading
({
mask
:
true
,
title
:
"
处理中......
"
})
$
.
ajax
({
url
:
gHost
+
'
/bank-wechat/icbc/account/exchange/recharge
'
,
type
:
"
POST
"
,
...
...
@@ -395,7 +393,7 @@
'
sessionid
'
:
sessionID
,
},
success
:
function
(
res5
)
{
loading
.
clear
();
uni
.
hideLoading
()
if
(
res5
.
code
==
"
10000
"
)
{
this_
.
close
();
Toast
({
...
...
@@ -412,7 +410,7 @@
}
},
error
:
function
(
err
)
{
loading
.
clear
();
uni
.
hideLoading
()
},
});
},
...
...
@@ -453,7 +451,7 @@
}
else
{
uni
.
showModal
({
title
:
"
系统提示
"
,
content
:
appStatus
==
'
1
'
?
'
申请已受理
'
:
'
申请失败
'
content
:
appStatus
==
'
1
'
?
'
申请已受理
'
:
res5
.
message
})
}
}
else
{
...
...
@@ -1027,7 +1025,7 @@
}
@media (min-height:
50
0px) {
@media (min-height:
65
0px) {
.bottomdiv {
position: fixed;
left: 0;
...
...
pages/IcbcModule/Reflect/Reflect.vue
View file @
a7fd8a12
...
...
@@ -20,7 +20,7 @@
每日仅可提现一次,请明日再来。
</view>
<view
class=
"bottomdiv"
>
<view
class=
"DepositID"
@
click=
"toDeposit(0)"
v-bind:style=
"
Money!=''
?'':'opacity: 0.5 !important;'"
>
<view
class=
"DepositID"
@
click=
"toDeposit(0)"
v-bind:style=
"
inputOtherM>0
?'':'opacity: 0.5 !important;'"
>
<span>
提现
</span>
</view>
<view
class=
"switchbankCard"
@
click=
"BackToMini('TxHistory')"
>
提现记录
</view>
...
...
@@ -99,11 +99,11 @@
let
this_
=
this
this
.
inputOtherM
=
this
.
cardBalanceTx
*
1
this
.
$nextTick
(
function
()
{
if
(
this_
.
inputOtherM
==
''
||
this_
.
inputOtherM
*
1
<
3
)
{
$
(
'
.DepositID
'
).
attr
(
'
style
'
,
'
background: rgb(230, 230, 230) !important;
'
);
}
else
{
$
(
'
.DepositID
'
).
removeAttr
(
'
style
'
);
}
//
if (this_.inputOtherM == '' || this_.inputOtherM * 1
<
3
)
{
//
$('.DepositID').attr('style', 'background: rgb(230, 230, 230) !important;');
//
} else {
//
$('.DepositID').removeAttr('style');
//
}
})
},
//查询一类卡绑定列表
...
...
@@ -210,16 +210,16 @@
loading
.
hide
();
if
(
res5
.
code
==
"
10000
"
)
{
let
appStatus
=
res5
.
results
.
appStatus
;
if
(
appStatus
==
'
4
'
)
{
if
(
appStatus
==
'
4
'
)
{
uni
.
showModal
({
title
:
"
系统提示
"
,
content
:
"
提现成功!
"
})
uni
.
navigateBack
({})
}
else
{
}
else
{
uni
.
showModal
({
title
:
"
系统提示
"
,
content
:
appStatus
==
'
1
'
?
'
申请已受理
'
:
'
申请失败
'
content
:
appStatus
==
'
1
'
?
'
申请已受理
'
:
res5
.
message
})
}
...
...
@@ -247,11 +247,11 @@
obj
.
value
=
obj
.
value
.
replace
(
"
.
"
,
"
$#$
"
).
replace
(
/
\.
/g
,
""
).
replace
(
"
$#$
"
,
"
.
"
);
//只允许输入一个小数点
obj
.
value
=
obj
.
value
.
replace
(
/^
(\-)
*
(\d
+
)\.(\d\d)
.*$/
,
'
$1$2.$3
'
);
//只能输入两个小数
obj
.
value
=
obj
.
value
*
1
>
2000
?
2000
:
obj
.
value
;
if
(
obj
.
value
==
''
||
obj
.
value
*
1
<
3
)
{
$
(
'
.DepositID
'
).
attr
(
'
style
'
,
'
background: rgb(230, 230, 230) !important;
'
);
}
else
{
$
(
'
.DepositID
'
).
removeAttr
(
'
style
'
);
}
//
if (obj.value == '' || obj.value * 1
<
3
)
{
//
$('.DepositID').attr('style', 'background: rgb(230, 230, 230) !important;');
//
} else {
//
$('.DepositID').removeAttr('style');
//
}
this_
.
inputOtherM
=
obj
.
value
})
},
...
...
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