保存
This commit is contained in:
13
mail-vue/src/request/send.js
Normal file
13
mail-vue/src/request/send.js
Normal file
@@ -0,0 +1,13 @@
|
||||
import http from "@/axios/index.js";
|
||||
|
||||
export function sendEmail(form) {
|
||||
return http.post('/send/sendEmail', form)
|
||||
}
|
||||
|
||||
export function sendList(accountId, sendId, size) {
|
||||
return http.get('/send/list',{ params: {accountId, sendId, size}})
|
||||
}
|
||||
|
||||
export function sendDelete(sendIds) {
|
||||
return http.delete('/send/delete?sendIds=' + sendIds);
|
||||
}
|
||||
Reference in New Issue
Block a user