1234567891011121314151617181920212223 |
- import { AxiosResponse } from 'axios'
- import { ContentType, HttpClient, RequestParams } from '/@/api/admin/http-client'
- export class Api<SecurityDataType = unknown> extends HttpClient<SecurityDataType> {
- /**
- * No description
- *
- * @tags
- * @name GetList
- * @summary 查询列表
- * @request POST:'/api/app/push/get-wx-user-page'
- * @secure
- */
- getList = (data:any ,params: RequestParams = {}) : any =>
- this.request<AxiosResponse,any>({
- path:'/api/app/push/get-wx-user-page',
- method: 'POST',
- body:data,
- type: ContentType.Json,
- secure: true,
- format: 'json',
- ...params
- })
- }
|