摘要: .box::-webkit-scrollbar { /*滚动条整体样式*/ width : 5px; /*高宽分别对应横竖滚动条的尺寸*/ height: 1px; } .box::-webkit-scrollbar-thumb { /*滚动条里面小方块*/ border-radius: 5px; 阅读全文
posted @ 2021-08-05 16:20 wxxwjef 阅读(347) 评论(0) 推荐(0) 编辑
摘要: 转载自:https://blog.csdn.net/GRAY_KEY/article/details/81295961 3D地图图表效果如下: 具体代码如下: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>铜仁市3D地图(点击 阅读全文
posted @ 2021-07-30 17:25 wxxwjef 阅读(2225) 评论(0) 推荐(0) 编辑
摘要: 我们有时候会有这种需求:这种与列值相关的展示有时候非常具有数据的直观性,我将用一个小Demo来实现此类操作。 表结构 create table demo1( sname varchar(20) not null comment '学员', course varchar(10) not null co 阅读全文
posted @ 2021-06-29 22:13 wxxwjef 阅读(3365) 评论(1) 推荐(0) 编辑
摘要: 1.安装 下载地址:https://neo4j.com/download/ ,我下载的是Community Edition。这里要说明一下,4.0以上都是需要openJDK的环境的,所以怕麻烦的小伙伴可以下载3.5.x安装 2.解压 解压之后在D盘或者其他盘建一个目录,从根目录开始的文件夹都不要带有 阅读全文
posted @ 2021-06-24 11:42 wxxwjef 阅读(847) 评论(0) 推荐(0) 编辑
摘要: 引起分页组件重新查询的操作中,切勿再函数方法前调用this.total = 0,这将会使分页组件总数切换为0 ,页码自动归为1,后续再设置分页总数total大于0时,页码始终高亮1。 function queryData() { // this.total = 0; 切勿执行此操作,会将分页组件高亮 阅读全文
posted @ 2020-11-07 22:24 wxxwjef 阅读(1525) 评论(0) 推荐(0) 编辑
摘要: 今天 select * from 表名 where to_days(时间字段名) = to_days(now()); 昨天 SELECT * FROM 表名 WHERE TO_DAYS( NOW( ) ) - TO_DAYS( 时间字段名) <= 1 7天 SELECT * FROM 表名 wher 阅读全文
posted @ 2020-03-31 11:51 wxxwjef 阅读(10947) 评论(0) 推荐(1) 编辑
摘要: 1.eclipse打开,进入一个工作空间,右键New --> Other Maven --> Maven Project --> Next Next 选择maven-archetype-quickstart --> Next 输入Group Id和Artifact Id --> Finish 刚创建 阅读全文
posted @ 2020-03-05 13:47 wxxwjef 阅读(1239) 评论(0) 推荐(0) 编辑
摘要: IDE:InteliJ 某天,前一次运行application还可以正常启动springboot项目,重启就出现启动失败,提示: hile scanning for the next token found character '@' that cannot start any token. (Do 阅读全文
posted @ 2020-02-27 10:59 wxxwjef 阅读(7943) 评论(1) 推荐(1) 编辑
摘要: 有些因为安装或者操作顺序的原因,导致flutter识别不到正确的android studio路径,于是需要利用命令手动将ide地址赋上。 首先,重新配置ide地址的命令如下: flutter config --android-studio-dir D:/AndroidStudio 先看下错误示范,利 阅读全文
posted @ 2020-02-27 10:50 wxxwjef 阅读(4535) 评论(1) 推荐(0) 编辑
摘要: 1.安装依赖 yum install gcc yum install pcre-devel yum install zlib zlib-devel yum install openssl openssl-devel #一键安装上面四个依赖 yum -y install gcc zlib zlib-d 阅读全文
posted @ 2020-01-09 13:54 wxxwjef 阅读(166) 评论(0) 推荐(0) 编辑