摘要: 前端代码 store 中的js文件 import {excelExportTemplate } from '@/api/xxxxx' async excelExportTemplate ({commit}, fieldConfig) { var res =await new Promise((res 阅读全文
posted @ 2024-12-02 17:07 小海葵 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 前端代码如下: importExcelBtn : function(){ if(this.dialogImportExcel.fileList==null || this.dialogImportExcel.fileList.length==0){ this.$message.error('文件必须 阅读全文
posted @ 2024-12-02 16:44 小海葵 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 由于导入excel插入数据,遍历方式插入数据非常慢,所以修改成批量插入数据,代码如下: 批量插入配置类 @Repository public class BatchData { @Autowired private SqlSessionTemplate sqlSessionTemplate; pub 阅读全文
posted @ 2024-12-02 15:56 小海葵 阅读(2) 评论(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 小海葵 阅读(3) 评论(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 小海葵 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 问题描述:父页面抽屉引用子页面,子页面的a-modal框被遮住 解决办法是降低父页面的层级,提高子页面的层级,父页面:z-index="99",子页面:z-index="100" 阅读全文
posted @ 2024-11-12 18:02 小海葵 阅读(4) 评论(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) 编辑
摘要: 判断一个时间加30天是否比当前时间大,代码如下: //repTaskResult.getStartDate() 2024-6-1 //new Date() 2024-6-5 Calendar calendar=Calendar.getInstance(); calendar.setTime(repT 阅读全文
posted @ 2024-07-29 15:47 小海葵 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 由于业务需求,需要把身份证一部分隐藏掉,首先判断是不是身份证号,正则如下: String regex = "^(\\d{15}$|^\\d{18}$|^\\d{17}(\\d|X|x)$)"; 替换中间需要隐藏问题 String regex = "^(\\d{15}$|^\\d{18}$|^\\d{ 阅读全文
posted @ 2024-07-26 17:55 小海葵 阅读(5) 评论(0) 推荐(0) 编辑
摘要: <span @click="showModal(item)" :title="item.title" style="color:#4040f3;"> <span v-if="item.isTop!=null&&item.isTop==1" style="color:red;"> <b>[顶]</b> 阅读全文
posted @ 2024-07-09 16:40 小海葵 阅读(30) 评论(0) 推荐(0) 编辑