mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-11-17 02:22:09 +08:00
19 lines
531 B
Vue
19 lines
531 B
Vue
/**
|
||
* @description 导出默认网路配置
|
||
**/
|
||
const network = {
|
||
//配后端数据的接收方式application/json;charset=UTF-8或者application/x-www-form-urlencoded;charset=UTF-8
|
||
contentType: 'application/json;charset=UTF-8',
|
||
//消息框消失时间
|
||
messageDuration: 3000,
|
||
//最长请求时间
|
||
requestTimeout: 5000,
|
||
//操作正常code,支持String、Array、int多种类型
|
||
successCode: [200, 0],
|
||
//登录失效code
|
||
invalidCode: 402,
|
||
//无权限code
|
||
noPermissionCode: 401,
|
||
}
|
||
module.exports = network
|