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
4619c718
Commit
4619c718
authored
Apr 01, 2022
by
袁玲利
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
银行卡bin管理
parent
909ff900
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1787 additions
and
1811 deletions
+1787
-1811
src/pages/BankModule/Recharge/Recharge.vue
src/pages/BankModule/Recharge/Recharge.vue
+1773
-1797
src/pages/IcbcModule/Recharge/Recharge.vue
src/pages/IcbcModule/Recharge/Recharge.vue
+14
-14
No files found.
src/pages/BankModule/Recharge/Recharge.vue
View file @
4619c718
This diff is collapsed.
Click to expand it.
src/pages/IcbcModule/Recharge/Recharge.vue
View file @
4619c718
...
...
@@ -97,7 +97,8 @@
>
</view>
<!-- 充值其它金额 -->
<view
class=
"OtherMoney"
v-if=
"isOtherMoney"
>
<!--
<view
class=
"OtherMoney"
v-if=
"isOtherMoney"
>
-->
<view
class=
"OtherMoney"
>
<span>
¥
</span>
<input
v-model=
"inputOtherM"
...
...
@@ -321,10 +322,6 @@ export default {
lable
:
"
元
"
,
value
:
1000
,
},
{
lable
:
"
其他金额
"
,
value
:
""
,
},
],
numberList
:
[],
tempFiles1
:
"
../../static/img/idCardBg1.png
"
,
//上传身份证临时选择文件
...
...
@@ -453,6 +450,8 @@ export default {
// 输入限制
inputControl
(
e
)
{
let
this_
=
this
;
this_
.
MoneyIndex
=
-
1
;
this_
.
isOtherMoney
=
true
;
let
obj
=
e
.
detail
;
this
.
$nextTick
(
function
()
{
obj
.
value
=
obj
.
value
.
replace
(
/
[^\d
.
]
/g
,
""
);
//清除"数字"和"."以外的字符
...
...
@@ -636,14 +635,15 @@ export default {
},
// 快捷选择金额
async
depotMoney
(
value
,
MoneyIndex
)
{
console
.
log
(
value
);
if
(
!
value
)
{
this
.
isOtherMoney
=
true
;
this
.
Money
=
""
;
this
.
MoneyIndex
=
MoneyIndex
;
return
;
}
//
console.log(value);
//
if (!value) {
//
this.isOtherMoney = true;
//
this.Money = "";
//
this.MoneyIndex = MoneyIndex;
//
return;
//
}
this
.
isOtherMoney
=
false
;
this
.
inputOtherM
=
""
;
this
.
Money
=
parseInt
(
value
);
this
.
MoneyIndex
=
MoneyIndex
;
},
...
...
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