apply-clients 7.1.27 → 7.1.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
<h4 class="modal-title">收费明细</h4>
|
|
96
96
|
</header>
|
|
97
97
|
<article slot="modal-body" class="modal-body clearfix">
|
|
98
|
-
<div class="form-group col-sm-12" :class="chargeUseraddress ? '':'has-error'" v-if="selectdata.f_apply_type
|
|
98
|
+
<div class="form-group col-sm-12" :class="chargeUseraddress ? '':'has-error'" v-if="selectdata.f_apply_type == '报装'">
|
|
99
99
|
<label class="col-sm-2 control-label">缴费地址:</label>
|
|
100
100
|
<div class="col-sm-10">
|
|
101
101
|
<input-select
|
|
@@ -110,6 +110,17 @@
|
|
|
110
110
|
close-on-select ></input-select>
|
|
111
111
|
</div>
|
|
112
112
|
</div>
|
|
113
|
+
<div class="form-group col-sm-12" :class="charge.f_payer ? '':'has-error'">
|
|
114
|
+
<label class="col-sm-2 control-label">缴费单位:</label>
|
|
115
|
+
<div class="col-sm-10">
|
|
116
|
+
<input type="number"
|
|
117
|
+
class="form-control input_view"
|
|
118
|
+
style="width: 100%"
|
|
119
|
+
placeholder="0.00"
|
|
120
|
+
@keyup="handleInput"
|
|
121
|
+
v-model="charge.f_payer" />
|
|
122
|
+
</div>
|
|
123
|
+
</div>
|
|
113
124
|
<div class="form-group col-sm-12" :class="charge.f_charge_money ? '':'has-error'">
|
|
114
125
|
<label class="col-sm-2 control-label">收费金额:</label>
|
|
115
126
|
<div class="col-sm-10">
|
|
@@ -392,7 +403,7 @@ export default {
|
|
|
392
403
|
this.charge.f_amount_words = this.smalltoBIG(e.target.value)
|
|
393
404
|
},
|
|
394
405
|
async saveCharge() {
|
|
395
|
-
if (isEmpty(this.charge.f_useraddress_id) && this.selectdata.f_apply_type
|
|
406
|
+
if (isEmpty(this.charge.f_useraddress_id) && this.selectdata.f_apply_type == '报装') {
|
|
396
407
|
this.$showAlert('请选择缴费的地址信息!!!', 'warning', 3000)
|
|
397
408
|
return
|
|
398
409
|
}
|
|
@@ -409,10 +420,10 @@ export default {
|
|
|
409
420
|
// this.$showAlert('单笔收费不能超过单价!!!', 'warning', 3000)
|
|
410
421
|
// return
|
|
411
422
|
// }
|
|
412
|
-
if (Number(this.charge.f_charge_money) > Number(this.outstandingAmount)) {
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
}
|
|
423
|
+
// if (Number(this.charge.f_charge_money) > Number(this.outstandingAmount)) {
|
|
424
|
+
// this.$showAlert('单笔收费不能超过当前用户未结金额!!!', 'warning', 3000)
|
|
425
|
+
// return
|
|
426
|
+
// }
|
|
416
427
|
}
|
|
417
428
|
if (isEmpty(this.charge.f_payment_method)) {
|
|
418
429
|
this.$showAlert('请选择付款方式!!!', 'warning', 3000)
|