上一页 1 2 3 4 5 6 ··· 20 下一页
摘要: position: fixed; left: 0; right: 0; margin: auto; width: inherit; 未加 width: inherit; ,则里面的 div 内容会超出父级 div 内容,以图为例: 阅读全文
posted @ 2022-10-31 14:45 小蘑菇123 阅读(103) 评论(0) 推荐(0) 编辑
摘要: <el-col :span="12" class="hidden-sm-and-down" :md="6" :lg="6" :xl="6" style="min-height:1px;"></el-col> 阅读全文
posted @ 2022-10-11 11:53 小蘑菇123 阅读(152) 评论(0) 推荐(0) 编辑
摘要: var myDate = new Date(); // 获取今天日期 let Y = myDate.getFullYear(); let M = myDate.getMonth() + 1 - 0 >= 10 ? Number(myDate.getMonth()) + 1 : '0' + (Numb 阅读全文
posted @ 2022-07-22 14:21 小蘑菇123 阅读(25) 评论(0) 推荐(0) 编辑
摘要: <el-upload class="upload-file-demo" style="margin-top: 20px;" action="/api/admin/other/upload/filed" ref="cert_uploadComp" :auto-upload="true" :show-f 阅读全文
posted @ 2022-07-01 11:16 小蘑菇123 阅读(1142) 评论(0) 推荐(0) 编辑
摘要: 1、template: <el-select v-model="commonPayeeId" placeholder="请输入"> <el-option value="">--{{$t('navbar.qxz')}}--</el-option> <el-option v-for="item in c 阅读全文
posted @ 2022-06-01 14:39 小蘑菇123 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 类名: hidden-xs-only - 当视口在 xs 尺寸时隐藏 hidden-sm-only - 当视口在 sm 尺寸时隐藏 hidden-sm-and-down - 当视口在 sm 及以下尺寸时隐藏 hidden-sm-and-up - 当视口在 sm 及以上尺寸时隐藏 hidden-md- 阅读全文
posted @ 2022-04-08 16:36 小蘑菇123 阅读(376) 评论(0) 推荐(0) 编辑
摘要: 例如: 1、安装 html2canvas: npm i html2canvas 2、引入 html2canvas: import html2canvas from "html2canvas" 3、添加截图按钮: <el-button class="screenshotBtn button" type 阅读全文
posted @ 2021-09-29 15:12 小蘑菇123 阅读(4772) 评论(0) 推荐(0) 编辑
摘要: 1、打印有数据,但是获取不到参数: 取值设置: roleName.value = (roleList.value as any)?.roleName; 即可 阅读全文
posted @ 2021-09-28 11:25 小蘑菇123 阅读(870) 评论(0) 推荐(0) 编辑
摘要: 1、template: <el-upload class="upload-file-demo" action="上传的url" ref="uploadComp" :auto-upload="false" //禁止自动上传 :show-file-list='true' //显示上传文件名 :file- 阅读全文
posted @ 2021-08-31 14:24 小蘑菇123 阅读(3243) 评论(0) 推荐(0) 编辑
摘要: 由于 3.0 移除了2.0 的 filters 后, 所以在3.0中,设置: <script lang="ts"> export default defineComponent({ name: "Home", setup() { // 时间戳转时间 function formatDate(value 阅读全文
posted @ 2021-08-11 15:28 小蘑菇123 阅读(1201) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 20 下一页