摘要: 问题描述 在element-ui的table使用fixed固定列的时候,发现切换后返回,固定列会出现错位的情况。如下图所示: 解决方法 table设置 :cell-style="{height:'41px'}" eg: <el-table :cell-style="{height:'41px'}"> 阅读全文
posted @ 2024-08-29 10:57 陈宝 阅读(52) 评论(0) 推荐(0) 编辑
摘要: CREATE FUNCTION `fun_get_distance` ( `myLongitude` DECIMAL ( 20, 15 ), `myLatitude` DECIMAL ( 20, 15 ), `sysLongitude` DECIMAL ( 20, 15 ), `sysLatitud 阅读全文
posted @ 2022-11-13 10:31 陈宝 阅读(138) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="utf-8" ?> <configuration> <!-- This section contains the log4net configuration settings --> <log4net> <appender name="Ro 阅读全文
posted @ 2022-02-14 11:12 陈宝 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 代码 //base64编码 String a = new String(base64.encode(text.getBytes("UTF-8"))); String b = new String(Base64.encodeBase64(text.getBytes("UTF-8"))); String 阅读全文
posted @ 2021-03-15 13:46 陈宝 阅读(672) 评论(0) 推荐(0) 编辑
摘要: #查询当前所有用户select user,host from mysql.user; #添加用户flush privileges;CREATE USER '用户名'@'%' IDENTIFIED BY '密码';#给权限grant select,insert,update,delete on *.* 阅读全文
posted @ 2018-11-27 21:28 陈宝 阅读(76) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Threading; namespace ThreadTest { class Program { static void Main(string[] args) { try { TestDemo manager = new TestDemo() 阅读全文
posted @ 2017-11-30 13:24 陈宝 阅读(3806) 评论(1) 推荐(0) 编辑
摘要: /// /// 移除URL上指定的参数,不区分参数大小写 /// public string RemoveUrlParam(string url, string param) { var lowerUrl = url.ToLower(); var lowerPara... 阅读全文
posted @ 2017-02-23 14:56 陈宝 阅读(1820) 评论(0) 推荐(0) 编辑