apply-clients 3.4.98-13 → 3.4.98-14
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
|
@@ -461,6 +461,9 @@ export default {
|
|
|
461
461
|
this.defnames = this.$appdata.getParam(row.f_apply_type + '付款预设')
|
|
462
462
|
},
|
|
463
463
|
savedefname(){
|
|
464
|
+
if(isEmpty(this.charge.defname )){
|
|
465
|
+
return this.$showMessage('收费环节不能为空!!')
|
|
466
|
+
}
|
|
464
467
|
new HttpResetClass().load('POST', 'apply/rs/entity/t_charge_record', {
|
|
465
468
|
id: this.charge.id,
|
|
466
469
|
defname: this.charge.defname,
|
|
@@ -773,6 +773,9 @@ export default {
|
|
|
773
773
|
if(this.charge.charges.length <= 0){
|
|
774
774
|
return this.$showMessage('收费项目不能为空,请添加收费项目!!')
|
|
775
775
|
}
|
|
776
|
+
if(isEmpty(this.charge.defname )){
|
|
777
|
+
return this.$showMessage('收费环节不能为空!!')
|
|
778
|
+
}
|
|
776
779
|
let http = new HttpResetClass()
|
|
777
780
|
let data = {
|
|
778
781
|
apply: this.selectdata,
|