新增邮件群发和数据可视化
This commit is contained in:
@@ -8,6 +8,10 @@ export function accountAdd(email,token) {
|
||||
return http.post('/account/add', {email,token})
|
||||
}
|
||||
|
||||
export function accountSetName(accountId,name) {
|
||||
return http.put('/account/setName', {name,accountId})
|
||||
}
|
||||
|
||||
export function accountDelete(accountId) {
|
||||
return http.delete('/account/delete', {params: {accountId}})
|
||||
}
|
||||
|
||||
5
mail-vue/src/request/analysis.js
Normal file
5
mail-vue/src/request/analysis.js
Normal file
@@ -0,0 +1,5 @@
|
||||
import http from '@/axios/index.js'
|
||||
|
||||
export function analysisEcharts() {
|
||||
return http.get('/analysis/echarts');
|
||||
}
|
||||
Reference in New Issue
Block a user