赞
踩
import axios from 'axios'`
axios.defaults.baseURL = '【接口网址】'
axios.interceptors.request.use(config => {
// console.log(config)
config.headers.Authorization = window.sessionStorage.getItem('token')
// 在最后必须 return config
return config
})
Vue.prototype.$http = axios
async 【函数名】() {
const { data: res } = await this.$http.get('menus')
//判断状态
if (res.meta.status !== 200) return this.$message.error(res.meta.msg)
this.menulist = res.data
console.log(res)
},
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。