摘要: 父节点选中,子节点就全部选中 var data=[]; ttreeData.forEach(item => { data.push(item.id) }) this.tree.checkedKeys =data 阅读全文
posted @ 2024-12-12 15:39 小海葵 阅读(4) 评论(0) 推荐(0) 编辑
摘要: <a-tree :tree-data="treeData" v-model="tree.checkedKeys" :expanded-keys="tree.expandedKeys" :replaceFields="tree.replaceFields" :checkable="tree.check 阅读全文
posted @ 2024-12-12 15:38 小海葵 阅读(11) 评论(0) 推荐(0) 编辑
摘要: <a-date-picker :defaultValue="moment(getCurrentData(), 'YYYY-MM-DD')" @change="changeDate" v-model:value="value1" /> import moment from "moment"; meth 阅读全文
posted @ 2024-12-12 15:29 小海葵 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 前端代码 store 中的js文件 import {excelExportTemplate } from '@/api/xxxxx' async excelExportTemplate ({commit}, fieldConfig) { var res =await new Promise((res 阅读全文
posted @ 2024-12-02 17:07 小海葵 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 前端代码如下: importExcelBtn : function(){ if(this.dialogImportExcel.fileList==null || this.dialogImportExcel.fileList.length==0){ this.$message.error('文件必须 阅读全文
posted @ 2024-12-02 16:44 小海葵 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 由于导入excel插入数据,遍历方式插入数据非常慢,所以修改成批量插入数据,代码如下: 批量插入配置类 @Repository public class BatchData { @Autowired private SqlSessionTemplate sqlSessionTemplate; pub 阅读全文
posted @ 2024-12-02 15:56 小海葵 阅读(3) 评论(0) 推荐(0) 编辑
摘要: let loadingInstance = this.$loading({ lock: true, background: "rgba(0, 0, 0, 0.7)", text: "准备数据,请不要刷新或关闭页面", }); loadingInstance.close();//关闭loading 阅读全文
posted @ 2024-11-28 16:43 小海葵 阅读(5) 评论(0) 推荐(0) 编辑
摘要: excelExportTemplateBtn: function (){ const url=‘下载方法路径’ this.getBlob(url).then(blob => { this.saveAs(blob, 'test.xlsx') }) } getBlob: function (url, o 阅读全文
posted @ 2024-11-24 22:09 小海葵 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 问题描述:父页面抽屉引用子页面,子页面的a-modal框被遮住 解决办法是降低父页面的层级,提高子页面的层级,父页面:z-index="99",子页面:z-index="100" 阅读全文
posted @ 2024-11-12 18:02 小海葵 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 1.接口传值是list类型,代码如下 <foreach item="id" collection="array" open="(" separator="," close=")"> #{id} </foreach> 2.接口传值是hashmap类型并且包含类型,代码如下 <foreach item= 阅读全文
posted @ 2024-11-11 10:08 小海葵 阅读(1) 评论(0) 推荐(0) 编辑