You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
304 B
8 lines
304 B
|
2 years ago
|
// 引入axios
|
||
|
|
import axios from 'axios'
|
||
|
|
// 请求延时(毫秒数,如果请求话费超过了'timeout'的时间,请求将被中断)
|
||
|
|
axios.defaults.timeout = 100000
|
||
|
|
export const getAllData = params => {
|
||
|
|
return axios.post('http://localhost:8081/api/projectInfo/GetAll,{ params: params });
|
||
|
|
};
|
||
|
|
|