Service.js
505 Bytes
/**
* @name 此页面使用公共返回数据
*/
import Axios,{URL} from "@/service/index";
@Axios
class index{
GET(url,params){
return this.$axios.get(url,params)
.then(d=>{
return d;
})
}
POST(url,data){
return this.$axios.post(url,data)
.then(d=>{
return d;
})
}
}
export {
URL
}
export default new index;