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