数通智联化工云平台
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
306 B

// 引入axios
import axios from 'axios'
// 请求延时(毫秒数,如果请求话费超过了'timeout'的时间,请求将被中断)
axios.defaults.timeout = 100000
export const getAllData = params => {
return axios.post('http://ginadmin.hxgk.group/hrapi/org/govthree',{ params: params });
};