diff --git a/src/api/basic/invRelBusTypes.js b/src/api/basic/invRelBusTypes.js
index ba39c971..e8d02d8c 100644
--- a/src/api/basic/invRelBusTypes.js
+++ b/src/api/basic/invRelBusTypes.js
@@ -2,31 +2,48 @@ import axios from "../../utils/request";
export function filterSelectInvUser(query) {
- return axios({
- url: "/spms/bus/user/select/filter",
- method: "get",
- params: query
- });
+ return axios({
+ url: "/spms/bus/user/select/filter",
+ method: "get",
+ params: query
+ });
}
+export function filterUnSelectInvUser(query) {
+ return axios({
+ url: "/spms/bus/user/unselect/filter",
+ method: "get",
+ params: query
+ });
+}
export function updateInvUser(query) {
- return axios(
- {
- url: "/spms/bus/user/warehouse/update",
- method: "post",
- data: query
- }
- )
+ return axios(
+ {
+ url: "/spms/bus/user/warehouse/update",
+ method: "post",
+ data: query
+ }
+ )
+}
+
+export function postInvUser(query) {
+ return axios(
+ {
+ url: "/spms/bus/user/warehouse/post",
+ method: "post",
+ data: query
+ }
+ )
}
export function filterUserBusTypeList(query) {
- return axios(
- {
- url: "spms/bus/user/filterUserBusList",
- method: "get",
- params: query
- }
- )
+ return axios(
+ {
+ url: "spms/bus/user/filterUserBusList",
+ method: "get",
+ params: query
+ }
+ )
}
diff --git a/src/views/inventory/InvSpaceManage.vue b/src/views/inventory/InvSpaceManage.vue
index d4cd7684..2c7ac70e 100644
--- a/src/views/inventory/InvSpaceManage.vue
+++ b/src/views/inventory/InvSpaceManage.vue
@@ -2,15 +2,15 @@
-
-
+
+
查询
新增货位
@@ -39,89 +39,72 @@
编辑
删除
-
-
-
- 货位编码:
-
-
-
-
+
+
+
+
-
- 货位名称:
-
-
-
-
+
+
-
-
- 货位分类:
-
-
-
-
+
+
+
-
-
- 启用状态:
-
-
-
+
+
禁用
启用
-
-
- 备注:
-
-
-
+
+
+
@@ -179,8 +162,8 @@ export default {
1: "启用"
},
formMap: {
- add: "添加货位",
- edit: "编辑货位"
+ add: "仓库信息-新增货位",
+ edit: "仓库信息-编辑货位"
},
formName: null,
modifyWarehouseDisable: true,
@@ -256,19 +239,19 @@ export default {
cancelButtonText: "取消",
type: "warning",
})
- .then(() => {
- let params = {id: rowId};
- deleteSpace(params).then((res) => {
- if (res.code === 20000) {
- this.$message.success("删除成功!");
- this.getList();
- } else {
- this.$message.error(res.message);
- }
+ .then(() => {
+ let params = {id: rowId};
+ deleteSpace(params).then((res) => {
+ if (res.code === 20000) {
+ this.$message.success("删除成功!");
+ this.getList();
+ } else {
+ this.$message.error(res.message);
+ }
+ })
})
- })
- .catch(() => {
- });
+ .catch(() => {
+ });
},
cancelDialog() {
this.modifySpaceVisible = false
@@ -277,11 +260,11 @@ export default {
getStorage() {
this.storageList = [];
filterUplLocInv()
- .then((response) => {
- this.storageList = response.data || [];
- })
- .catch(() => {
- });
+ .then((response) => {
+ this.storageList = response.data || [];
+ })
+ .catch(() => {
+ });
},
resetForm() {
if (this.$refs["formData"]) {
diff --git a/src/views/monitor/operlog/index.vue b/src/views/monitor/operlog/index.vue
index def06e73..4ebf3e92 100644
--- a/src/views/monitor/operlog/index.vue
+++ b/src/views/monitor/operlog/index.vue
@@ -105,7 +105,6 @@
+
+
+
+
+
+
diff --git a/src/views/system/dept/invWarehouse.vue b/src/views/system/dept/invWarehouse.vue
index eddea3c7..9a8b7258 100644
--- a/src/views/system/dept/invWarehouse.vue
+++ b/src/views/system/dept/invWarehouse.vue
@@ -32,26 +32,26 @@
>
-
+
关联
- 解绑
@@ -248,10 +248,9 @@
min-width="30%"
>
-
移除
@@ -386,6 +385,7 @@
:reserve-selection="true"
width="55">
+
@@ -412,9 +412,9 @@
-
-
-
-
@@ -445,7 +434,7 @@ import {
import {getHospitalUserList, selectNotSelectUser} from "@/api/auth/authUser";
import {getJoinBussinessType} from "@/api/basic/bussinessType";
import {findConfig} from "@/api/thrsys/spsSyncStatus";
-import relBusUserDialog from "./invWarehouseRelBusTypes";
+import relBusUserDialog from "./invUserRelBusTypes";
import {selectSysParamByKey} from "@/api/system/param/systemParamConfig";
import invSpaceManage from "@/views/inventory/InvSpaceManage";
import {
@@ -512,12 +501,12 @@ export default {
selectUserList: [],
selectUserToatl: 0,
selectAddUser: [],
- //------用户-单据相关-----------------------
+ //------用户-单据类型相关-----------------------
curSeleUser: null,
relBusUserVisile: false,
userBussinessTypeList: [],
-
+ bussinessTypeTotal: 0,
bussinessTypeQuery: {
enabled: true,
page: 1,
@@ -538,7 +527,6 @@ export default {
invStorageCode: null,
invWarehouseCode: null
},
- invSpaceManageVisible: false,
sysList: [],
sysSubList: [],
};
@@ -843,7 +831,6 @@ export default {
var action = obj.toString();
this.bussinessTypeQuery.ids = action;
}
-
this.bussinessTypeQuery.code = this.busQuery.code;
getJoinBussinessType(this.bussinessTypeQuery).then((res) => {
this.selectBussinessTypeList = [];
diff --git a/src/views/system/role/index.vue b/src/views/system/role/index.vue
index 7096e2fe..44e398f9 100644
--- a/src/views/system/role/index.vue
+++ b/src/views/system/role/index.vue
@@ -67,15 +67,17 @@
{{ parseTime(scope.row.createTime) }}
-
-
+
+
编辑
删除
diff --git a/src/views/thirdSys/product/thrProducts.vue b/src/views/thirdSys/product/thrProducts.vue
index 3a3d279c..388f42fa 100644
--- a/src/views/thirdSys/product/thrProducts.vue
+++ b/src/views/thirdSys/product/thrProducts.vue
@@ -1,59 +1,89 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ item.thirdName }}
- {{ item.thirdId }}
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.thirdName }}
+ {{ item.thirdId }}
+
+
+
+
+
+
+
+
-
+ 显示/隐藏搜索栏
+ 重置
查询
- 新增
+ 新增
-
-
+
+
+
+
+
@@ -62,7 +92,7 @@
-
+
详情
@@ -129,6 +159,7 @@ import {findConfig} from "@/api/thrsys/spsSyncStatus";
export default {
data() {
return {
+ showSearch: true,
filterQuery: {
code: null,
name: "",
@@ -192,7 +223,9 @@ export default {
};
this.getList();
},
-
+ hideSearch() {
+ this.showSearch = !this.showSearch;
+ },
search() {
this.filterQuery.page = 1;
this.getList();