From 069a88b81c190b1ef01c2da3c3e219b56866403f Mon Sep 17 00:00:00 2001 From: wangxy <1356089412@qq.com> Date: Wed, 10 Apr 2024 11:47:44 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/reward/apply.js | 44 ++++++++++++++++++++++++++++++++ src/views/reward/apply/index.vue | 4 +-- 2 files changed, 46 insertions(+), 2 deletions(-) create mode 100644 src/api/reward/apply.js diff --git a/src/api/reward/apply.js b/src/api/reward/apply.js new file mode 100644 index 0000000..ea0ae21 --- /dev/null +++ b/src/api/reward/apply.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询公告列表 +export function listApply(query) { + return request({ + url: '/reward/apply/list', + method: 'get', + params: query + }) +} + +// 查询公告详细 +export function getNotice(noticeId) { + return request({ + url: '/system/notice/' + noticeId, + method: 'get' + }) +} + +// 新增公告 +export function addNotice(data) { + return request({ + url: '/system/notice', + method: 'post', + data: data + }) +} + +// 修改公告 +export function updateNotice(data) { + return request({ + url: '/system/notice', + method: 'put', + data: data + }) +} + +// 删除公告 +export function delNotice(noticeId) { + return request({ + url: '/system/notice/' + noticeId, + method: 'delete' + }) +} diff --git a/src/views/reward/apply/index.vue b/src/views/reward/apply/index.vue index d8b0cda..9c53aad 100644 --- a/src/views/reward/apply/index.vue +++ b/src/views/reward/apply/index.vue @@ -169,7 +169,7 @@