优化二维码支付

This commit is contained in:
Your Name 2023-09-13 18:23:07 +08:00
parent a930cfce63
commit 9d6e88bd7a
5 changed files with 36 additions and 5 deletions

View File

@ -54,6 +54,18 @@
</select>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<vc:i18n name='展示费用' namespace='addPayFeeQrcode'></vc:i18n>
</label>
<div class="col-sm-10">
<select class="custom-select" v-model="addPayFeeQrcodeInfo.feeType">
<option selected disabled value="">{{vc.i18n('必填,请选择展示费用','addPayFeeQrcode')}}</option>
<option value="OWNER">{{vc.i18n('业主费用','addPayFeeQrcode')}}</option>
<option value="ROOM">{{vc.i18n('房屋费用','addPayFeeQrcode')}}</option>
</select>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<vc:i18n name='状态' namespace='addPayFeeQrcode'></vc:i18n>

View File

@ -14,7 +14,8 @@
customFee: '',
preFee: 'OFF',
content: '',
state:'ON'
state:'ON',
feeType:'OWNER'
}
},
_initMethod: function () {
@ -143,8 +144,8 @@
customFee: '',
preFee: 'OFF',
content: '',
state:'ON'
state:'ON',
feeType:'OWNER'
};
}
}

View File

@ -54,6 +54,18 @@
</select>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<vc:i18n name='展示费用' namespace='editPayFeeQrcode'></vc:i18n>
</label>
<div class="col-sm-10">
<select class="custom-select" v-model="editPayFeeQrcodeInfo.feeType">
<option selected disabled value="">{{vc.i18n('必填,请选择展示费用','editPayFeeQrcode')}}</option>
<option value="OWNER">{{vc.i18n('业主费用','editPayFeeQrcode')}}</option>
<option value="ROOM">{{vc.i18n('房屋费用','editPayFeeQrcode')}}</option>
</select>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">
<vc:i18n name='状态' namespace='editPayFeeQrcode'></vc:i18n>

View File

@ -11,7 +11,8 @@
preFee: 'OFF',
content: '',
qrCodeUrl:'',
state:'ON'
state:'ON',
feeType:''
}
},
_initMethod: function () {
@ -150,7 +151,8 @@
preFee: 'OFF',
content: '',
qrCodeUrl:'',
state:'ON'
state:'ON',
feeType:''
}
}
}

View File

@ -59,6 +59,9 @@
<th class="text-center">
<vc:i18n name='自定义缴费' namespace='payFeeQrcode'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='展示费用' namespace='payFeeQrcode'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='状态' namespace='payFeeQrcode'></vc:i18n>
</th>
@ -84,6 +87,7 @@
<td class="text-center" v-else>按房屋或者业主手机号</td>
<td class="text-center">{{payFeeQrcode.smsValidate == 'ON'?'短信验证码验证':'否'}}</td>
<td class="text-center">{{payFeeQrcode.customFee == 'ON'?'是':'否'}}</td>
<td class="text-center">{{payFeeQrcode.feeType == 'OWNER'?'业主费用':'房屋费用'}}</td>
<td class="text-center">{{payFeeQrcode.state == 'ON'?'启用':'停用'}}</td>
<!-- <td class="text-center">{{payFeeQrcode.preFee == 'ON'?'是':'否'}}</td> -->
<td class="text-center">{{payFeeQrcode.createStaffName}}</td>