suerprisePlus
2024-07-01 f76b96c26b878840ecc80b79d1e28e477d5573e6
1
2
3
4
5
6
7
8
9
import axios from "axios";
const mapServer = axios.create({
    // axios中请求配置有baseURL选项,表示请求URL公共部分
    baseURL: config.apiServices,
    // 超时
    timeout: -1
  });
  export default mapServer;