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.
18 lines
393 B
18 lines
393 B
1 year ago
|
import http from '../utils/http'
|
||
|
//
|
||
|
/**
|
||
|
* @parms resquest 请求地址 例如:http://197.82.15.15:8088/request/...
|
||
|
* @param '/testIp'代表vue-cil中config,index.js中配置的代理
|
||
|
*/
|
||
|
|
||
|
// get请求
|
||
|
const testApi = {
|
||
|
getListAPI(params) {
|
||
|
return http.get('/api/joke/list', params)
|
||
|
},
|
||
|
postFormAPI(params) {
|
||
|
return http.post('/api/user/reg', params)
|
||
|
}
|
||
|
}
|
||
|
export default testApi
|