摘要:
const compute = { // 加法运算 accAdd(arg1, arg2) { let r1; let r2; let m; let c; try { r1 = arg1.toString().split('.')[1].length; } catch (e) { r1 = 0; } 阅读全文
摘要:
<template> <div class="contentArea"> <div class="fileContainer" ref="fileDiv" v-if="$route.query.fileName.indexOf('docx') !== -1"></div> <div class="f 阅读全文
摘要:
https://blog.csdn.net/weixin_46801282/article/details/123386264 // base64数据 this.imgSrc = 'data:image/jpg;base64,' + res.payload.imageStr; 解决方案一:后端把图片 阅读全文
摘要:
<a-table :columns="columns" :rowKey="record=>record.rowId" :data-source="data" :scroll="{x:true}" :pagination='false' 当点击按钮编辑table里面的内容时导致,高度变化,需要手动触发 阅读全文
摘要:
tree.vue 组件 <template> <div> <div @click="getData" :style="getDetph(currentItem.level)" class="li"> <span class="icon"></span> <div contenteditable cl 阅读全文
摘要:
1:npm install element-plus --save 2: 组件按需引入所需插件:unplugin-auto-import 、 unplugin-vue-components 图标按需引入所需插件:unplugin-auto-import 、 unplugin-icons npm i 阅读全文
摘要:
export function getCurrentMenu(dataList, roleList){ let menu = dataList.filter(item =>{ console.log(roleList.indexOf(item.name) !== -1) if(roleList.in 阅读全文
摘要:
export const isIdCard = card => { // 身份证号 if (!card) return true let num = card.toUpperCase() // 身份证号码为15位或者18位,15位时全为数字,18位前17位为数字,最后一位是校验位,可能为数字或字符X 阅读全文
摘要:
FileDownload(this.upStandFileId) .then((res) => { // 预览文件 const binaryData = [res.data]; const pdfUrl = window.URL.createObjectURL( new Blob(binaryDat 阅读全文