优化业主详情页面费用功能

This commit is contained in:
Your Name 2023-09-08 13:12:36 +08:00
parent 0bf4bcbef4
commit 6ad190c219
5 changed files with 33 additions and 2 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.state">
<option selected disabled value="">{{vc.i18n('必填,请选择状态','addPayFeeQrcode')}}</option>
<option value="ON">{{vc.i18n('启用','addPayFeeQrcode')}}</option>
<option value="OFF">{{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,7 @@
customFee: '',
preFee: 'OFF',
content: '',
state:'ON'
}
},
_initMethod: function () {
@ -143,6 +143,7 @@
customFee: '',
preFee: 'OFF',
content: '',
state:'ON'
};
}

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.state">
<option selected disabled value="">{{vc.i18n('必填,请选择状态','editPayFeeQrcode')}}</option>
<option value="ON">{{vc.i18n('启用','editPayFeeQrcode')}}</option>
<option value="OFF">{{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,6 +11,7 @@
preFee: 'OFF',
content: '',
qrCodeUrl:'',
state:'ON'
}
},
_initMethod: function () {
@ -148,7 +149,8 @@
customFee: '',
preFee: 'OFF',
content: '',
qrCodeUrl:''
qrCodeUrl:'',
state:'ON'
}
}
}

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> -->
@ -81,6 +84,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.state == 'ON'?'启用':'停用'}}</td>
<!-- <td class="text-center">{{payFeeQrcode.preFee == 'ON'?'是':'否'}}</td> -->
<td class="text-center">{{payFeeQrcode.createStaffName}}</td>
<td class="text-center">{{payFeeQrcode.createTime}}</td>