|
|
@@ -167,6 +167,13 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
+ <div class="inp-list-line">
|
|
|
+ <div class="line-label">备注信息</div>
|
|
|
+ <div class="line-input">
|
|
|
+ <input type="digit" style="text-align:center;" v-model="rechargeRemark" class="inp-input" placeholder="选填" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
<div class="inp-list-line" style="margin-top:35upx;">
|
|
|
<div class="line-label">付款方式</div>
|
|
|
<div class="line-input" @click="getPayWay()">
|
|
|
@@ -175,6 +182,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+
|
|
|
</template>
|
|
|
</modal-module>
|
|
|
|
|
|
@@ -229,6 +237,7 @@ export default {
|
|
|
funtion: () => {
|
|
|
this.czShow = true
|
|
|
this.rechargeMoney = ''
|
|
|
+ this.rechargeRemark = ''
|
|
|
this.payWay = -1
|
|
|
setTimeout(x => {
|
|
|
this.$nextTick(() => {
|
|
|
@@ -252,6 +261,7 @@ export default {
|
|
|
czFocus:false,
|
|
|
czShow:false,
|
|
|
rechargeMoney:'',
|
|
|
+ rechargeRemark:'',
|
|
|
payWay:-1
|
|
|
};
|
|
|
},
|
|
|
@@ -375,10 +385,10 @@ export default {
|
|
|
return false
|
|
|
}
|
|
|
if(this.payWay == -1){
|
|
|
- this.$msg('请选择支付方式')
|
|
|
+ this.$msg('请选择付款方式')
|
|
|
return false
|
|
|
}
|
|
|
- rechargeFn({amount:this.rechargeMoney,customId:this.userInfo.id,payWay:this.payWay}).then(res=>{
|
|
|
+ rechargeFn({amount:this.rechargeMoney,customId:this.userInfo.id,payWay:this.payWay,remark:this.rechargeRemark}).then(res=>{
|
|
|
if(res.code == 1){
|
|
|
that.czShow = false
|
|
|
that.czFocus = false
|