
* chore: wip vxe-table * feat: add table demo * chore: follow ci recommendations to adjust details * chore: add custom-cell demo * feat: add custom-cell table demo * feat: add table from demo
11 lines
226 B
TypeScript
11 lines
226 B
TypeScript
import { requestClient } from '#/api/request';
|
|
|
|
/**
|
|
* 模拟任意状态码
|
|
*/
|
|
async function getMockStatusApi(status: string) {
|
|
return requestClient.get('/status', { params: { status } });
|
|
}
|
|
|
|
export { getMockStatusApi };
|