From 516350279657cf1e599314df3cfc988c720f3753 Mon Sep 17 00:00:00 2001 From: "aoli.qu" <408346101@qq.com> Date: Thu, 23 Dec 2021 09:31:23 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=9A=E7=9F=A5=E5=85=AC=E5=91=8A=E5=BC=80?= =?UTF-8?q?=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/notice/notice.js | 10 ++- src/views/notice/NoticeDetail.vue | 122 ++++++++++++++++++++++++------ 2 files changed, 109 insertions(+), 23 deletions(-) diff --git a/src/api/notice/notice.js b/src/api/notice/notice.js index fcfe551..3fdf13c 100644 --- a/src/api/notice/notice.js +++ b/src/api/notice/notice.js @@ -5,7 +5,8 @@ const noticeApi = { del: 'notice/del', get: 'notice/get', page: 'notice/pageList', - read: 'notice/read' + read: 'notice/read', + pagePerson: 'notice/pagePersonList' } export function noticeAdd (params) { @@ -44,3 +45,10 @@ export function noticeRead (params) { params: params }) } +export function noticePagePerson (params) { + return request({ + url: noticeApi.pagePerson, + method: 'post', + params: params + }) +} diff --git a/src/views/notice/NoticeDetail.vue b/src/views/notice/NoticeDetail.vue index 417cd54..939c123 100644 --- a/src/views/notice/NoticeDetail.vue +++ b/src/views/notice/NoticeDetail.vue @@ -1,17 +1,18 @@ -