mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-24 23:38:30 +08:00

* chore: merge main * feat: update docs * feat: remove coze-assistant * feat: add watermark plugin * feat: update preferences * feat: update docs --------- Co-authored-by: vince <vince292007@gmail.com>
11 lines
220 B
TypeScript
11 lines
220 B
TypeScript
import { requestClient } from '#/api/request';
|
|
|
|
/**
|
|
* 模拟任意状态码
|
|
*/
|
|
async function getMockStatus(status: string) {
|
|
return requestClient.get('/status', { params: { status } });
|
|
}
|
|
|
|
export { getMockStatus };
|