index.ts 371 B

12345678910111213
  1. import { useAxios } from '@/hooks/web/useAxios'
  2. const request = useAxios()
  3. // 查询短信日志列表
  4. export const getSmsLogPageApi = (params) => {
  5. return request.get({ url: '/system/sms-log/page', params })
  6. }
  7. // 导出短信日志
  8. export const exportSmsLogApi = (params) => {
  9. return request.get({ url: '/system/sms-log/export', params, responseType: 'blob' })
  10. }