摘要: 横向滚动 隐藏横向滚动条 .el-scrollbar__wrap { overflow-x: hidden; } 显示横向滚动条 .el-scrollbar__wrap { overflow-x: auto; } .el-scrollbar__view { display: inline-block 阅读全文
posted @ 2022-09-20 11:46 卑面派对 阅读(722) 评论(0) 推荐(0) 编辑
摘要: 需求 表格数据实现单选,单击某行实现单选,再次点击选中行,取消单选 问题 在不需要点击取消单选的功能 此问题不会出现 点击组件区域 会无法选择, debugger 发现触发了row-click 两次 问题代码如下 <template> <el-table ... @row-click="handle 阅读全文
posted @ 2022-08-23 17:06 卑面派对 阅读(930) 评论(0) 推荐(0) 编辑
摘要: 需求: 子组件需要动态获取父组件某个属性或者动态调用父组件方法 // 父组件 <template> <el-dialog> <son @return-prop="getName"/> </el-dialog> </template> <script> ... data() { return {pro 阅读全文
posted @ 2022-08-10 16:21 卑面派对 阅读(424) 评论(0) 推荐(0) 编辑
摘要: 在tsconfig.node.json添加compilerOptions对象属性添加"allowSyntheticDefaultImports": true { "compilerOptions": { "composite": true, "module": "esnext", "moduleRe 阅读全文
posted @ 2022-08-08 15:32 卑面派对 阅读(608) 评论(0) 推荐(0) 编辑
摘要: 验证包含字母、数字 /^[0-9a-zA-Z]*$/g 验证特殊符号 /[`~!@#$%^&*()-_+=<>?:"{}|,/;'\\[\].·~!@#¥%……&*()+={}|《》?:“”【】、;‘’,。、]/g 验证文件命名 if (/[\\\\/:*?"<>|]/gu.test(value)) 阅读全文
posted @ 2022-08-03 16:26 卑面派对 阅读(6) 评论(0) 推荐(0) 编辑
摘要: dayjs 使用 import * as dayjs from 'dayjs' dayjs(dateTime).format('YYYY-MM-DD HH:mm:ss') // 1970-00-00 00:00:00 dayjs(dateTime).format('YYYY-MM-DD') // 1 阅读全文
posted @ 2022-08-03 16:05 卑面派对 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 文件相关 获取文件后缀名 /** * @description 获取文件后缀名 * @param {String} fileName */ export function getFileExt(fileName) { return fileName.substring(fileName.lastIn 阅读全文
posted @ 2022-08-03 15:45 卑面派对 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 平铺数组 组装成tree结构数据 /** * @description 平铺的数组数据 组装成树结构数据 * @param {array} data 平铺的数组 * @param {string|number} rootId 根节点id */ export function generateTree 阅读全文
posted @ 2022-08-03 15:45 卑面派对 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 颜色转换 import { normal } from 'color-blend' /** * @description 将16进制色号转换成rgb:{r,g,b,a} * @param {string} color * @param {float} Alpha * @return {object} 阅读全文
posted @ 2022-08-03 15:19 卑面派对 阅读(27) 评论(0) 推荐(0) 编辑
摘要: float circle(in vec2 st, in float r, in float blur){ float d = distance(st, vec2(.5)); float t = smoothstep(r,r+blur,d);; return t; } void mainImage( 阅读全文
posted @ 2022-06-23 23:35 卑面派对 阅读(25) 评论(0) 推荐(0) 编辑