| 12345678910111213141516171819 |
- import type { Recordable } from '@vben/types';
- import { requestClient } from '#/api/request';
- /**
- * 发起数组请求
- */
- async function getParamsData(
- params: Recordable<any>,
- type: 'brackets' | 'comma' | 'indices' | 'repeat',
- ) {
- return requestClient.get('/status', {
- params,
- paramsSerializer: type,
- responseReturn: 'raw',
- });
- }
- export { getParamsData };
|