上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页
摘要: -- 模糊匹配多个关键字 and regexp_like (name, '(刘|王二花)') and regexp_like (name, '刘|王二花') -- 模糊查询匹配多个字段 and instr(dept_code || dept_name, #{deptName}) > 0 阅读全文
posted @ 2022-09-29 10:58 一隅桥畔 阅读(218) 评论(0) 推荐(0)
摘要: -- 查询倒数第二条 select * from (select row_number() over(order by pay_no desc) rn, t.* from tm_pm_pay t where hospital_code = '0002') where rn = 2 阅读全文
posted @ 2022-09-28 10:02 一隅桥畔 阅读(800) 评论(0) 推荐(0)
摘要: 1、在页面上点击右键,选择检查(或者按F12快捷键) 2、在右侧的style样式中搜索content_views,将其中的勾选去掉,然后就可以复制了 阅读全文
posted @ 2022-09-17 12:08 一隅桥畔 阅读(54) 评论(0) 推荐(0)
摘要: /** * 自适应列宽 * @param sheet * @param columnLength 列数 */ private static void setSizeColumn(HSSFSheet sheet, int columnLength) { for (int columnNum = 0; 阅读全文
posted @ 2022-09-17 11:25 一隅桥畔 阅读(730) 评论(0) 推荐(0)
摘要: 错误原因,资源(asset)和入口起点超过指定文件限制,需要在vue.config.js文件内做如下配置: //方法1 module.exports = { //webpack配置 configureWebpack: { //关闭webpack的性能提示 performance: { hints:f 阅读全文
posted @ 2022-09-15 16:40 一隅桥畔 阅读(2553) 评论(0) 推荐(0)
摘要: --执行语句生成函数fn_GetPy create function fn_GetPy(@str nvarchar(4000)) returns nvarchar(4000) --WITH ENCRYPTION as begin declare @intLen int declare @strRet 阅读全文
posted @ 2022-09-13 19:06 一隅桥畔 阅读(98) 评论(0) 推荐(0)
摘要: //1、通过. var age = obj.age; //1、通过[] var age = obj[age]; //注:[key]里面的key可以是动态的 阅读全文
posted @ 2022-09-08 19:28 一隅桥畔 阅读(53) 评论(0) 推荐(0)
摘要: //最大值 int maxValue = list.stream().mapToInt(User::getScore).max().getAsInt(); long maxValue = list.stream().mapToLong(User::getScore).max().getAsLong( 阅读全文
posted @ 2022-08-29 18:18 一隅桥畔 阅读(1851) 评论(0) 推荐(1)
摘要: //导出excel文件 exportExcel() { applyOrderExportExcel(this.listQuery).then((res) => { const fileName = `${+new Date()}.xlsx`; const blob = new Blob([res], 阅读全文
posted @ 2022-08-24 14:36 一隅桥畔 阅读(476) 评论(0) 推荐(0)
摘要: //调整高度函数 function setHeight(element) { //通过css属性,将元素高度设置为文本高度 $(element).css({'height':'auto','overflow-y':'hidden'}).height(element.scrollHeight); } 阅读全文
posted @ 2022-08-12 19:50 一隅桥畔 阅读(663) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页