You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.6 KiB
63 lines
1.6 KiB
import { defHttp } from '@/utils/http/axios' |
|
|
|
// 创建站内信模板 |
|
export function createNotifyTemplate(data) { |
|
return defHttp.post({ url: '/system/notify-template/create', data }) |
|
} |
|
|
|
// 更新站内信模板 |
|
export function updateNotifyTemplate(data) { |
|
return defHttp.put({ url: '/system/notify-template/update', data }) |
|
} |
|
|
|
// 删除站内信模板 |
|
export function deleteNotifyTemplate(id: number) { |
|
return defHttp.delete({ url: `/system/notify-template/delete?id=${id}` }) |
|
} |
|
|
|
// 获得站内信模板 |
|
export function getNotifyTemplate(id: number) { |
|
return defHttp.get({ url: `/system/notify-template/get?id=${id}` }) |
|
} |
|
|
|
// 获得站内信模板分页 |
|
export function getNotifyTemplatePage(params) { |
|
return defHttp.get({ url: '/system/notify-template/page', params }) |
|
} |
|
|
|
// 获取岗位精简信息列表 |
|
export function listSimplePosts() { |
|
return defHttp.get({ url: '/system/post/list-all-simple' }) |
|
} |
|
|
|
// 导出站内信模板 Excel |
|
export function exportNotifyTemplateExcel(params) { |
|
return defHttp.download({ url: '/system/notify-template/export-excel', params }, '导出站内信模板.xls') |
|
} |
|
|
|
export interface SendNotifyParam { |
|
userId: number |
|
templateCode: string |
|
templateParams: { |
|
[key: string]: string |
|
} |
|
} |
|
|
|
export interface NotifyTemplate { |
|
name: string |
|
code: string |
|
type: number |
|
nickname: string |
|
content: string |
|
status: number |
|
remark?: any |
|
id: number |
|
params: string[] |
|
createTime: number |
|
key: string |
|
} |
|
|
|
// 发送 |
|
export function sendNotify(data: SendNotifyParam) { |
|
return defHttp.post({ url: '/system/notify-template/send-notify', data }) |
|
}
|
|
|