suerprisePlus
2024-08-05 30e393df7b1d89c4172a7f4bec6e80e2dc00c373
1
2
3
4
5
6
7
8
import axios from 'axios';
const peiWangServer = axios.create({
    // axios中请求配置有baseURL选项,表示请求URL公共部分
    baseURL: config.peiWangServices,
    // 超时
    timeout: -1,
});
export default peiWangServer;