摘要: 今天学了一会vue 改善绩效考核系统 阅读全文
posted @ 2023-12-27 22:35 会秃头的小白 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 今天早上考完了大数据的考试 整个考试过程 八个字:一言难尽 奋笔疾书 下午学了一会vue 对软件构造的项目进行改善 阅读全文
posted @ 2023-12-27 14:33 会秃头的小白 阅读(3) 评论(0) 推荐(0) 编辑
摘要: import request from '@/utils/request' // 登录接口 export function login(data) { return request({ url: '/vue-element-admin/user/login', method: 'post', dat 阅读全文
posted @ 2023-12-27 14:26 会秃头的小白 阅读(18) 评论(0) 推荐(0) 编辑
摘要: import { asyncRoutes, constantRoutes } from '@/router' /** * Use meta.role to determine if the current user has permission * @param roles * @param rou 阅读全文
posted @ 2023-12-27 14:25 会秃头的小白 阅读(13) 评论(0) 推荐(0) 编辑
摘要: // 引入路由 import router from './router' // 引入仓库 import store from './store' // 引入ElementUI中的提示组件 message import { Message } from 'element-ui' // 引入nprog 阅读全文
posted @ 2023-12-27 14:23 会秃头的小白 阅读(189) 评论(0) 推荐(0) 编辑
摘要: // 引入vue import Vue from 'vue' // 引入vue-router import Router from 'vue-router' // 路由就是一个插件 需要use Vue.use(Router) // 引入layout组件 很重要 // 一级路由出口 匹配layout组 阅读全文
posted @ 2023-12-27 14:22 会秃头的小白 阅读(26) 评论(0) 推荐(0) 编辑
摘要: // 引入vue import Vue from 'vue' // 映入js-cookie // 是用来操作cookie 后端返回的token就存储在cookie中 import Cookies from 'js-cookie' // 引入重置样式 import 'normalize.css/nor 阅读全文
posted @ 2023-12-27 14:21 会秃头的小白 阅读(154) 评论(0) 推荐(0) 编辑