diff --git a/src/api/system/noticeGroup.js b/src/api/system/noticeGroup.js new file mode 100644 index 00000000..fd900c7e --- /dev/null +++ b/src/api/system/noticeGroup.js @@ -0,0 +1,54 @@ +import request from '@/utils/request' + +// 查询通知公告-班组列表 +export function listNoticeGroup(query) { + return request({ + url: '/system/noticeGroup/list', + method: 'get', + params: query + }); +} + +// 查询通知公告-班组详细 +export function getNoticeGroup(id) { + return request({ + url: '/system/noticeGroup/' + id, + method: 'get' + }); +} + +// 新增通知公告-班组 +export function addNoticeGroup(data) { + return request({ + url: '/system/noticeGroup', + method: 'post', + data: data + }); +} + +// 修改通知公告-班组 +export function updateNoticeGroup(data) { + return request({ + url: '/system/noticeGroup', + method: 'put', + data: data + }); +} + +// 删除通知公告-班组 +export function delNoticeGroup(data) { + return request({ + url: '/system/noticeGroup/delNoticeGroup', + method: 'post', + data: data + }); +} + +export function teamBind(data) { + return request({ + url: '/system/noticeGroup/teamBind', + method: 'post', + data: data + }); +} + diff --git a/src/api/wms/product.js b/src/api/wms/product.js index 9a8a974d..fb3c99bd 100644 --- a/src/api/wms/product.js +++ b/src/api/wms/product.js @@ -55,3 +55,21 @@ export function delProduct(productId) { method: 'delete' }); } + +// 修改物料附属信息 +export function updateProductAttached(data) { + return request({ + url: '/wms/attached', + method: 'put', + data: data + }); +} + +// 新增物料附属信息 +export function addProductAttached(data) { + return request({ + url: '/wms/attached', + method: 'post', + data: data + }); +} diff --git a/src/views/system/notice/TeamBind.vue b/src/views/system/notice/TeamBind.vue new file mode 100644 index 00000000..c2909d8b --- /dev/null +++ b/src/views/system/notice/TeamBind.vue @@ -0,0 +1,198 @@ + + + + + diff --git a/src/views/system/notice/index.vue b/src/views/system/notice/index.vue index 19e25a00..c0b12b93 100644 --- a/src/views/system/notice/index.vue +++ b/src/views/system/notice/index.vue @@ -66,6 +66,17 @@ v-hasPermi="['system:notice:remove']" >删除 + + 班组绑定 + @@ -125,56 +136,62 @@ - - - - - - - - - - - - - - - - - {{dict.label}} - - - - - - - - - + + + + + + + + + + + + + + + + + {{dict.label}} + + + + + + + + + + + \ No newline at end of file + diff --git a/src/views/wms/product/index.vue b/src/views/wms/product/index.vue index 5b00c479..839c3377 100644 --- a/src/views/wms/product/index.vue +++ b/src/views/wms/product/index.vue @@ -62,6 +62,18 @@ >修改 + + 新增/修改附属属性 + 同步物料工艺 + >同步物料工艺