surprise
2024-03-05 1ce1b525e7470ebaaeb0d5cd1e59bd905c1a7114
1
2
3
4
5
6
7
8
9
10
11
12
 
import axios from "axios";
console.log(knowledgeUrl)
const knowService = axios.create({
  baseURL: knowledgeUrl, // api的base_url
  timeout: 35000, // 请求超时时间
  headers: {
    "content-type": "application/json;charset=UTF-8",
  },
  // withCredentials: true,
});
export default knowService;