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