common.js 183 B

1234567891011
  1. import { get, post } from '../response/request'
  2. // POST请求
  3. export const POST = (url,params) => (
  4. post(url,params)
  5. )
  6. // Get请求
  7. export const GET = (url) => (
  8. get(url)
  9. )