Merge remote-tracking branch 'origin/fengcang' into fengcang

fengcang
anthonyywj2 3 years ago
commit 22d0c351a1

@ -132,6 +132,7 @@
import {getLocalBusType, addLocalBusType, updateLocalBusType, deleteLocalBusType} from "@/api/basic/busLocalType";
import modifyDialog from "./BussinessTypeLoclModify";
import {findConfig} from "@/api/thrsys/spsSyncStatus";
import {isBlank} from "@/utils/strUtil";
export default {
data() {
@ -216,6 +217,10 @@ export default {
onAddSubmit() {
if (isBlank(this.inputQuery.name)) {
this.$message.warning("业务单据类型名称为空");
return;
}
addLocalBusType(this.inputQuery)
.then((response) => {
this.loading = false;

Loading…
Cancel
Save