11 lines
364 B
TypeScript
11 lines
364 B
TypeScript
import { request } from '@/utils/request';
|
||
|
||
/**
|
||
* 查询客户出金审核记录
|
||
* GET /saleH5/audit/queryGoldOutList
|
||
* 接口ID:248673243
|
||
* 接口地址:https://app.apifox.com/link/project/4728063/apis/api-248673243
|
||
*/
|
||
export function queryList(data: {}) {
|
||
return request({ url: '/api/saleH5/audit/queryGoldOutList', method: 'GET', data });
|
||
} |