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.
13 lines
343 B
13 lines
343 B
import { pa } from 'element-plus/es/locales.mjs';
|
|
import http from '../util/http.js';
|
|
// 这个是不知道有啥用
|
|
const API={
|
|
post: function(url,data){
|
|
return http({url:url,method:'post',data:data})
|
|
},
|
|
postN: function(url,params){
|
|
return http({url:url,method:'post',params:params})
|
|
},
|
|
};
|
|
|
|
export default API;
|