mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 19:41:44 +08:00
10 lines
148 B
TypeScript
10 lines
148 B
TypeScript
/**
|
|
* @description: 请求结果设置
|
|
*/
|
|
export enum ResultEnum {
|
|
SUCCESS = 10000,
|
|
ERROR = 1,
|
|
TIMEOUT = 401,
|
|
TYPE = 'success',
|
|
}
|