/*
|
* @Author: shuishen 1109946754@qq.com
|
* @Date: 2022-07-29 15:19:13
|
* @LastEditors: shuishen 1109946754@qq.com
|
* @LastEditTime: 2022-08-16 09:44:02
|
* @FilePath: \zhny-dsj\src\router\axios.js
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
*/
|
/**
|
* 全站http配置
|
*
|
* axios参数说明
|
* isSerialize是否开启form表单提交
|
* isToken是否需要token
|
*/
|
import axios from 'axios'
|
|
const service = axios.create({
|
// baseURL: 'http://182.106.212.58:8013/api', // 2
|
baseURL: 'https://dev.jxpskj.com:8023/api', // 2
|
timeout: 600000 // request timeout
|
})
|
|
export default service
|