REVIEW 站内信模版的发送

This commit is contained in:
YunaiV
2023-04-15 17:07:41 +08:00
parent 97f9560c4d
commit e3660e0b20
4 changed files with 152 additions and 128 deletions

View File

@ -1,24 +1,17 @@
import request from '@/config/axios'
export interface NotifyTemplateVO {
id: number | null
id?: number
name: string
nickname: string
code: string
content: string
type: number | null
type: number
params: string
status: number | null
status: number
remark: string
}
export interface NotifyTemplatePageReqVO extends PageParam {
name?: string
code?: string
status?: number
createTime?: Date[]
}
export interface NotifySendReqVO {
userId: number | null
templateCode: string
@ -26,22 +19,22 @@ export interface NotifySendReqVO {
}
// 查询站内信模板列表
export const getNotifyTemplatePageApi = async (params: NotifyTemplatePageReqVO) => {
export const getNotifyTemplatePage = async (params: PageParam) => {
return await request.get({ url: '/system/notify-template/page', params })
}
// 查询站内信模板详情
export const getNotifyTemplateApi = async (id: number) => {
export const getNotifyTemplate = async (id: number) => {
return await request.get({ url: '/system/notify-template/get?id=' + id })
}
// 新增站内信模板
export const createNotifyTemplateApi = async (data: NotifyTemplateVO) => {
export const createNotifyTemplate = async (data: NotifyTemplateVO) => {
return await request.post({ url: '/system/notify-template/create', data })
}
// 修改站内信模板
export const updateNotifyTemplateApi = async (data: NotifyTemplateVO) => {
export const updateNotifyTemplate = async (data: NotifyTemplateVO) => {
return await request.put({ url: '/system/notify-template/update', data })
}
@ -51,6 +44,6 @@ export const deleteNotifyTemplateApi = async (id: number) => {
}
// 发送站内信
export const sendNotifyApi = (data: NotifySendReqVO) => {
export const sendNotify = (data: NotifySendReqVO) => {
return request.post({ url: '/system/notify-template/send-notify', data })
}