mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-06 03:58:03 +08:00
23 lines
442 B
TypeScript
23 lines
442 B
TypeScript
/**
|
|
* @description: 请求结果设置
|
|
*/
|
|
export enum ResultEnum {
|
|
SUCCESS = 10000,
|
|
FAIL = 10001,
|
|
ERROR = 1,
|
|
TIMEOUT = 401,
|
|
TYPE = 'success',
|
|
}
|
|
|
|
/**
|
|
* @description: contentType
|
|
*/
|
|
export enum ContentTypeEnum {
|
|
// json
|
|
JSON = 'application/json;charset=UTF-8',
|
|
// form-data qs
|
|
FORM_URLENCODED = 'application/x-www-form-urlencoded;charset=UTF-8',
|
|
// form-data upload
|
|
FORM_DATA = 'multipart/form-data;charset=UTF-8',
|
|
}
|