Commit 4619c718 authored by 袁玲利's avatar 袁玲利

银行卡bin管理

parent 909ff900
This diff is collapsed.
......@@ -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;
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment