suerprisePlus
2024-11-27 ab8f3297f7c8243d486c9da0900e4f813b2ea2df
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;