封装axios
axios的基础使用
axios基础使用方法:
axios.create({config}) //创建axios实例
axios.get(url,{config}) //get请求
axios.post(url, data,{config}) //post请求
axios.interceptors.request.use() // 请求拦截器
axios.interceptors.response.use() // 请求拦截器
具体看下面文档
axios中文文档|axios中文网 | axios http://www.axios-js.com/zh-cn/docs/
vue3的样式使用
style="display: flex; 并列
justify-content: space-between;均匀并列
switch开关
<template #state='{record}'>
<a-switch v-model:checked="record.state" />
</template>
回退到上一页或者下一页
@click="$router.go(-1)
@click="$router.go(1)
axios请求后端拿数据展示