Blame view

泰额版/Food Labeling Management Code/Yi.Vben5.Vue3/playground/src/api/examples/status.ts 226 Bytes
59e51671   “wangming”   1
1
2
3
4
5
6
7
8
9
10
  import { requestClient } from '#/api/request';
  
  /**
   * 模拟任意状态码
   */
  async function getMockStatusApi(status: string) {
    return requestClient.get('/status', { params: { status } });
  }
  
  export { getMockStatusApi };