diff --git a/src/views/user_manage/user_list.vue b/src/views/user_manage/user_list.vue index 81411e9..6b4dd04 100644 --- a/src/views/user_manage/user_list.vue +++ b/src/views/user_manage/user_list.vue @@ -97,14 +97,6 @@ 增减余额 - - - - @@ -162,13 +154,13 @@ 扣除 - + - 消费 - 充值退款 + 充值 + 消费退款 @@ -208,7 +200,8 @@ export default { userinfo: { nickName: '', operationType: 'in', - type: 'consume' + type: 'consume', + amount: '' }, userinfos: { levelConsume: "0", @@ -232,9 +225,9 @@ export default { checkIfNum() { this.userinfos.telephone = this.userinfos.telephone.toString().replace(/\D/g, ''); }, - amountNum(){ + amountNum() { this.userinfo.amount = this.userinfo.amount.toString().replace(/[^\d|\.]/g, '') - + }, handleClose() { this.dialogVisible = false @@ -261,6 +254,7 @@ export default { this.userinfo.nickName = d.nickName this.userinfo.amounts = d.amount this.userinfo.id = d.id + this.userinfo.amount = "" }, edituser(d) { let obj = { ...d }