|
@@ -508,19 +508,20 @@ export default {
|
|
|
|
|
|
this.form.normId = this.normId;
|
|
|
this.form.status = 1;
|
|
|
- // if (this.form.id != null) {
|
|
|
- // updateNORMFEE(this.form).then(response => {
|
|
|
- // this.$modal.msgSuccess("修改成功");
|
|
|
- // this.open = false;
|
|
|
- // this.getList();
|
|
|
- // });
|
|
|
- // } else {
|
|
|
+ if (this.form.id != null) {
|
|
|
+ updateNORMFEE(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ } else {
|
|
|
addNORMFEE(this.form).then((response) => {
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
this.open = false;
|
|
|
this.getList();
|
|
|
});
|
|
|
- // }
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
});
|
|
|
},
|