From c030d1d1f3b8c663f2a0604a90fcdf0de2781513 Mon Sep 17 00:00:00 2001 From: shaoyong Date: Wed, 15 May 2024 10:57:23 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=9A=E7=9F=A5=E5=85=AC=E5=91=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/system/noticeGroup.js | 54 ++++++++ src/views/system/notice/TeamBind.vue | 198 +++++++++++++++++++++++++++ src/views/system/notice/index.vue | 100 +++++++++----- 3 files changed, 315 insertions(+), 37 deletions(-) create mode 100644 src/api/system/noticeGroup.js create mode 100644 src/views/system/notice/TeamBind.vue diff --git a/src/api/system/noticeGroup.js b/src/api/system/noticeGroup.js new file mode 100644 index 0000000..fd900c7 --- /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/views/system/notice/TeamBind.vue b/src/views/system/notice/TeamBind.vue new file mode 100644 index 0000000..c2909d8 --- /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 19e25a0..c0b12b9 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 +