flat: 暂存 信件、投诉建议

This commit is contained in:
Apcallover
2024-03-05 18:26:05 +08:00
parent 63ab28f014
commit 0b8fb3c77b
5 changed files with 427 additions and 2 deletions

14
src/api/manage/mailbox.js Normal file
View File

@@ -0,0 +1,14 @@
import request from '@/router/axios';
export const getList =
(current, size, params) => {
return request({
url: '/api/jobslink-api//content/consultMailboxInfo/list',
method: 'get',
params: {
...params,
current,
size,
}
})
}