Files
HTFX-CRM-Sales/services/audit/integral.ts
2025-07-07 16:05:18 +08:00

11 lines
360 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { request } from '@/utils/request';
/**
* 查询积分审核记录
* GET /saleH5/audit/queryIntegralList
* 接口ID248747213
* 接口地址https://app.apifox.com/link/project/4728063/apis/api-248747213
*/
export function queryList(data: {}) {
return request({ url: '/api/saleH5/audit/queryIntegralList', method: 'GET', data });
}