前后端代码解构

This commit is contained in:
2025-03-13 11:15:27 +08:00
parent 6623a6c03d
commit 222ebb07dc
579 changed files with 0 additions and 72316 deletions

View File

@@ -1,64 +0,0 @@
import request from '@/utils/request'
// 查询事件提醒列表
export function listRemind(query) {
return request({
url: '/oa/remind/list',
method: 'get',
params: query
})
}
//查询待办事件列表
export function getRemindList(query) {
return request({
url: '/oa/remind/getRemindList',
method: 'get',
params: query
})
}
export function getRemindCount(query) {
return request({
url: '/oa/remind/getRemindCount',
method: 'get',
params: query
})
}
// 查询事件提醒详细
export function getRemind(remindId) {
return request({
url: '/oa/remind/' + remindId,
method: 'get'
})
}
// 新增事件提醒
export function addRemind(data) {
return request({
url: '/oa/remind',
method: 'post',
data: data
})
}
// 修改事件提醒
export function updateRemind(data) {
return request({
url: '/oa/remind',
method: 'put',
data: data
})
}
// 删除事件提醒
export function delRemind(remindId) {
return request({
url: '/oa/remind/' + remindId,
method: 'delete'
})
}