| 12345678910111213141516 |
- import request from '@/utils/request'
- // 通知模板列表
- export function getNotificationTemplateList(params) {
- return request({ url: '/api/admin/notification-template/list', method: 'post', data: params || {} })
- }
- // 新增/更新通知模板
- export function saveNotificationTemplate(data) {
- return request({ url: '/api/admin/notification-template/save', method: 'post', data })
- }
- // 删除通知模板
- export function deleteNotificationTemplate(data) {
- return request({ url: '/api/admin/notification-template/delete', method: 'post', data })
- }
|