后端接口不返回状态码数据,接口请求方法
// 销毁通道
async delChannel() {
await this.$http
.delete('/x86/channel/' + this.delIds)
.then((res) => {
console.log(res)
return this.$message.success('删除通路成功1')
})
.catch((error) => {
console.log(error)
return this.$message.error('删除通路失败2')
})
},
后端接口返回状态码数据,接口请求方法
// 获取所有的菜单
async getMenuList() {
// 获取菜单数据
const { data: res } = await this.$http.get('menus')
// 如果没有获取数据成功,弹窗 message.error
if (res.meta.status !== 200) return this.$message.error(res.meta.msg)
this.menulist = res.data
console.log(res)
},