流浪のwolf

卷帝

导航

上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 73 下一页

2023年2月17日

如何设置表格的高度 element 的table 组件

摘要: <el-table :row-style="{ height: '30px' }" :cell-style="{ padding: 0 }" :data="tableData" style="width: 100%" size="medium" border height="650" > ps: : 阅读全文

posted @ 2023-02-17 17:21 流浪のwolf 阅读(20) 评论(0) 推荐(0) 编辑

数据导出

摘要: // 【导出功能】 async exportAllData() { // 1. 获取到所有的数据 let { rows } = await getEmployeesListApi({ page: 1, size: 1000000 }); // 2. 整理数据 let { headerKey, res 阅读全文

posted @ 2023-02-17 08:04 流浪のwolf 阅读(5) 评论(0) 推荐(0) 编辑

过滤器函数 filtes 的使用总结

摘要: // import parseTime, formatTime and set to filter /** * Show plural label if time is plural number * @param {number} time * @param {string} label * @r 阅读全文

posted @ 2023-02-17 08:01 流浪のwolf 阅读(65) 评论(0) 推荐(0) 编辑

按钮权限思路

摘要: 权限按钮就是根据用户返回的 id 和按钮的唯一标识id 比较 判断按钮是否有权限 ; 一般把判断按钮的函数放在全局混入中使用 // 校验按钮权限 checkPermission(str) { // str是某个按钮的权限标识 // 判断str是否在当前用户的按钮权限标识数组中 const userI 阅读全文

posted @ 2023-02-17 07:58 流浪のwolf 阅读(17) 评论(0) 推荐(0) 编辑

在 vuex 中建立一个 permission.js 文件用于合并静态和动态的路由规则

摘要: 结果会获取完整的用户的路由规则 // 新建一个vuex模块来专门处理权限相关操作 import { constantRoutes, asyncRoutes } from "@/router"; export default { namespaced: true, state() { return { 阅读全文

posted @ 2023-02-17 07:56 流浪のwolf 阅读(81) 评论(0) 推荐(0) 编辑

退出登录操作

摘要: async logout() { try { await this.$confirm("确定退出吗?"); } catch (error) { return console.log(error); } // 要退出 this.$store.dispatch("user/quitAction"); / 阅读全文

posted @ 2023-02-17 07:55 流浪のwolf 阅读(22) 评论(0) 推荐(0) 编辑

2023年2月16日

SQL的分类

摘要: DDL: 数据定义语言,用来定义数据库对象(数据表,表 ,字段) ; DML:数据操作语言,用来对数据库表中的数据进行增删改 ; DQL:数据库查询语言,用来查询数据库中的表的记录 DCL:数据控制语言,用来数据库用户控制数据库的访问权限 ; 阅读全文

posted @ 2023-02-16 19:24 流浪のwolf 阅读(15) 评论(0) 推荐(0) 编辑

pageTools 一个复用的通知条

摘要: <template> <el-card class="page-tools"> <el-row type="flex" align="middle" justify="space-between"> <div> <el-button v-if="text" icon="el-icon-info" s 阅读全文

posted @ 2023-02-16 07:37 流浪のwolf 阅读(15) 评论(0) 推荐(0) 编辑

v-imgerror作用:当图片链接无效的时候,显示默认图片内容

摘要: // 回顾自定义指令 // 作用: 自定义一些对DOM的操作快捷指令 // 前提: 指令就是用来操作DOM (v-if/v-show/v-for....) // 语法: Vue.directive(指令名,{ 配置对象 }) // 使用: <标签 v-指令名="表达式/变量" /> // impor 阅读全文

posted @ 2023-02-16 07:34 流浪のwolf 阅读(98) 评论(0) 推荐(0) 编辑

本地存储Cookies 的获取和存入 - js-Cookies

摘要: // 导入js-cookie 用于操作cookie import Cookies from "js-cookie"; const TokenKey = "hrsass_admin_token"; const LoginKey = "hrsass_login_time"; // 读取token exp 阅读全文

posted @ 2023-02-16 07:30 流浪のwolf 阅读(22) 评论(0) 推荐(0) 编辑

上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 73 下一页