api.js

// api.js用来统一管理我们的接口
/**   
 * api接口统一管理
 */
import { get, post } from './http.js'

// get接口
export const getData = function(url,par){
    // console.log(999)
    return get(url,par)
}
// post接口
export const postData = function(url,par){
    return post(url,par)
}

 

你可能感兴趣的:(随记)