金币系统前端
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.

12 lines
343 B

3 weeks ago
  1. import { pa } from 'element-plus/es/locales.mjs';
  2. import http from '../util/http.js';
  3. // 这个是不知道有啥用
  4. const API={
  5. post: function(url,data){
  6. return http({url:url,method:'post',data:data})
  7. },
  8. postN: function(url,params){
  9. return http({url:url,method:'post',params:params})
  10. },
  11. };
  12. export default API;