摘要: //表格优化 bodyCell(column) { if(column.column?.key!=='operation'){ column.column.width = 'auto'; } if(column.column.render){ const cellRender = column.co 阅读全文
posted @ 2024-12-09 10:42 你风致 阅读(1) 评论(0) 推荐(0) 编辑
摘要: (422.445).toFixed(2) "422.44" (422.165).toFixed(2) "422.17" (422.446).toFixed(2) "422.45" (422.455).toFixed(2) "422.45" (422.456).toFixed(2) "422.46" 阅读全文
posted @ 2024-11-06 16:16 你风致 阅读(8) 评论(0) 推荐(0) 编辑
摘要: //手动刷新的情况,路由from应该是没有多余路径的,我们可以由此来判断,并存储一个值到本地; beforeRouteEnter(to, from, next){ if(!from||from?.fullPath '/'){ //代表是手动刷新 sessionStorage.setItem('isR 阅读全文
posted @ 2024-10-14 10:17 你风致 阅读(11) 评论(0) 推荐(0) 编辑
摘要: //样式模拟 div > div { width: 200px; height: 500px; border: 1px solid #38c46d; } #anchor { position: fixed; width: 100px; height: 200px; border: 1px solid 阅读全文
posted @ 2024-09-04 14:55 你风致 阅读(10) 评论(0) 推荐(0) 编辑
摘要: import { Spin } from 'ant-design-vue'; //定义变量 spinning: false, //放在第一层级 <> <div className="aspin" v-show={this.spinning}> <antSpin spinning={this.spin 阅读全文
posted @ 2024-08-05 14:18 你风致 阅读(6) 评论(0) 推荐(0) 编辑
摘要: const user = { profile: { name: '张三' } }; const userName = user.profile?.name ?? '匿名'; // 结果: userName = '张三' 此代码首先演示了如何使用可选链运算符 (?.) 安全地访问user.profil 阅读全文
posted @ 2024-07-08 14:10 你风致 阅读(13) 评论(0) 推荐(0) 编辑
摘要: this.$nextTick(()=>{ const modal:any = document.getElementsByClassName('ant-modal')[0] const content:any = document.getElementsByClassName('ant-modal- 阅读全文
posted @ 2024-06-11 13:49 你风致 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 实际上就是伪元素的长方形,上下左右边框,在旋转过后把上和左边框给隐藏了。这样就形成√了 .mycheckBox::after{ position: absolute; display: table; border: 2px solid #fff; border-top: 0; border-left 阅读全文
posted @ 2024-05-08 14:27 你风致 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 关闭下拉框的动画样式即可解决 .ant-select-dropdown.slide-up-appear.slide-up-appear-active.ant-select-dropdown-placement-bottomLeft, .ant-select-dropdown.slide-up-ent 阅读全文
posted @ 2024-04-09 10:29 你风致 阅读(86) 评论(0) 推荐(0) 编辑
摘要: function getClose(url:string){ const openObj = window.open(url,"_blank"); //如果你是在另一个组件想关闭某窗口,需要定义个变量挂载到window下面,挂载到this下面不生效 (window as any).closeObj 阅读全文
posted @ 2024-03-11 10:18 你风致 阅读(33) 评论(0) 推荐(0) 编辑