|
|
@@ -8,8 +8,8 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="payment">
|
|
|
- <view class="nav acea-row row-around row-middle">
|
|
|
- <view class="item" :class="active==index?'on':''" v-for="(item,index) in navRecharge" :key="index" @click="navRecharges(index)">{{item}}</view>
|
|
|
+ <view class="nav acea-row row-around row-middle" >
|
|
|
+ <view class="item" :class="active==index?'on':''" v-for="(item,index) in navRecharge" :key="index" @click="navRecharges(index)" v-if="item != '账户充值'">{{item}}</view>
|
|
|
</view>
|
|
|
<view class='tip picList' v-if="active == 0" >
|
|
|
<view class="pic-box pic-box-color acea-row row-center-wrapper row-column" :class="activePic == index ? 'pic-box-color-active' : ''"
|
|
|
@@ -33,7 +33,7 @@
|
|
|
</view>
|
|
|
<!-- 佣金转余额 -->
|
|
|
<view class="tip" v-else-if="active ==1">
|
|
|
- <view class='input'><text>¥</text><input @input='inputNum' :maxlength="moneyMaxLeng" placeholder="0.00" type='number' placeholder-class='placeholder' :value="number" name="number"></input></view>
|
|
|
+ <view class='input'><text style="padding-left: 0;">¥</text><input @input='inputNum' :maxlength="moneyMaxLeng" placeholder="0.00" type='number' placeholder-class='placeholder' :value="number" name="number" style="padding-right: 0;width: 100%;"></input></view>
|
|
|
<view class="tips-title">
|
|
|
<view style="font-weight: bold; font-size: 26rpx;">提示:</view>
|
|
|
<view style="margin-top: 10rpx;">当前可转入佣金为 <text class='font-color'>¥{{userinfo.commissionCount || 0}}</text>,冻结佣金为<text class='font-color'>¥{{userinfo.broken_commission}}</text></view>
|
|
|
@@ -47,7 +47,7 @@
|
|
|
</view>
|
|
|
<view class="tip" v-else>
|
|
|
<view class='input'><input placeholder="请输入收款人手机号" type='number' placeholder-class='placeholder' :value="to_phone" name="to_phone" style="width: 100%;padding-right: 0;"></input></view>
|
|
|
- <view class='input'><text>¥</text><input @input='inputNum' :maxlength="moneyMaxLeng" placeholder="0.00" type='number' placeholder-class='placeholder' :value="number" name="number"></input></view>
|
|
|
+ <view class='input'><text style="padding-left: 0;">¥</text><input @input='inputNum' :maxlength="moneyMaxLeng" placeholder="0.00" type='number' placeholder-class='placeholder' :value="number" name="number" style="width: 100%;padding-right: 0;"></input></view>
|
|
|
<view class="tips-box">
|
|
|
<view class="tips mt-30">注意事项:</view>
|
|
|
<view class="tips-samll" v-for="item in rechargeAttention" :key="item">
|
|
|
@@ -104,7 +104,7 @@
|
|
|
return {
|
|
|
now_money: 0,
|
|
|
navRecharge: ['账户充值', '佣金转入','余额转账'],
|
|
|
- active: 0,
|
|
|
+ active: 1,
|
|
|
number: '',
|
|
|
to_phone: '',
|
|
|
userinfo: {},
|
|
|
@@ -147,7 +147,7 @@
|
|
|
// #endif
|
|
|
type: '',
|
|
|
rechargeAttention:[],
|
|
|
- moneyMaxLeng:8
|
|
|
+ moneyMaxLeng:18
|
|
|
};
|
|
|
},
|
|
|
computed: mapGetters(['isLogin']),
|
|
|
@@ -201,7 +201,7 @@
|
|
|
if(dot>-1){
|
|
|
this.moneyMaxLeng = dot+3;
|
|
|
}else{
|
|
|
- this.moneyMaxLeng = 8
|
|
|
+ this.moneyMaxLeng = 18
|
|
|
}
|
|
|
},
|
|
|
/**
|