// import axios from "axios"; // const instance = axios.create({ // baseURL: "http://183.136.157.9:7099/api", // timeout: 5000 // }); // // 添加请求拦截器 // axios.interceptors.request.use( // function(config) { // // 在发送请求之前做些什么 // return config; // }, // function(error) { // // 对请求错误做些什么 // return Promise.reject(error); // } // ); // // 添加响应拦截器 // axios.interceptors.response.use( // function(response) { // // 对响应数据做点什么 // return response; // }, // function(error) { // // 对响应错误做点什么 // return Promise.reject(error); // } // ); // export default instance;