方诺官网改正版
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.

пре 4 година
1234567891011121314151617181920
  1. import request from '@/utils/request'
  2. export function apost (url,data){
  3. return request({
  4. url: url,//自己的接口地址
  5. method: 'post',//请求方法
  6. data //需要携带的参数
  7. })
  8. }
  9. export function aget(url){
  10. return request({
  11. url:url,
  12. method:'get'
  13. })
  14. }