11 2024 档案
摘要:let loadingInstance = this.$loading({ lock: true, background: "rgba(0, 0, 0, 0.7)", text: "准备数据,请不要刷新或关闭页面", }); loadingInstance.close();//关闭loading
阅读全文
摘要:excelExportTemplateBtn: function (){ const url=‘下载方法路径’ this.getBlob(url).then(blob => { this.saveAs(blob, 'test.xlsx') }) } getBlob: function (url, o
阅读全文
摘要:问题描述:父页面抽屉引用子页面,子页面的a-modal框被遮住 解决办法是降低父页面的层级,提高子页面的层级,父页面:z-index="99",子页面:z-index="100"
阅读全文
摘要:1.接口传值是list类型,代码如下 <foreach item="id" collection="array" open="(" separator="," close=")"> #{id} </foreach> 2.接口传值是hashmap类型并且包含类型,代码如下 <foreach item=
阅读全文