vxList.ts 668 B

1234567891011121314151617181920212223
  1. import { AxiosResponse } from 'axios'
  2. import { ContentType, HttpClient, RequestParams } from '/@/api/admin/http-client'
  3. export class Api<SecurityDataType = unknown> extends HttpClient<SecurityDataType> {
  4. /**
  5. * No description
  6. *
  7. * @tags
  8. * @name GetList
  9. * @summary 查询列表
  10. * @request POST:'/api/app/push/get-wx-user-page'
  11. * @secure
  12. */
  13. getList = (data:any ,params: RequestParams = {}) : any =>
  14. this.request<AxiosResponse,any>({
  15. path:'/api/app/push/get-wx-user-page',
  16. method: 'POST',
  17. body:data,
  18. type: ContentType.Json,
  19. secure: true,
  20. format: 'json',
  21. ...params
  22. })
  23. }