上一页 1 2 3 4 5 6 ··· 37 下一页
摘要: select formatDateTime(create_time, '%Y-%m-%d') dat, count(*) counfrom user where group by formatDateTime(create_time, '%Y-%m-%d'); 阅读全文
posted @ 2023-06-29 09:16 明明一颗大白菜 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 1.首先创建src下创建utils文件夹,创建transition.js文件封装过渡组件 const transitionStyle = '0.3s height ease-in-out' const Transition = { // 进入前 设置el元素的transition,高度0 befor 阅读全文
posted @ 2023-05-24 18:08 明明一颗大白菜 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 按月统计(一) select date_format(create_time, '%Y-%m') mont, count(*) coun from t_content group by date_format(create_time, '%Y-%m'); 按天统计(二) select date_fo 阅读全文
posted @ 2023-03-31 09:31 明明一颗大白菜 阅读(455) 评论(0) 推荐(0) 编辑
摘要: 全局css样式里面,添加下面的代码: .el-scrollbar { .el-scrollbar__bar { opacity: 1 !important; } } 阅读全文
posted @ 2023-03-27 10:59 明明一颗大白菜 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 用nuxt,大部分都是用的服务端渲染的模式,但是如果用静态部署的方式,则不会生成404错误页面,这个时候需要在nuxt.config.js里面进行配置: generate: { fallback: true, interval: 150, }, 阅读全文
posted @ 2023-02-09 17:07 明明一颗大白菜 阅读(541) 评论(0) 推荐(0) 编辑
摘要: 如: 验证字符串'php is good'中是否同时存在'php' 和 'good' 正则则这样写: /^(?=.*php)(?=.*good).*$/ 阅读全文
posted @ 2022-12-21 18:30 明明一颗大白菜 阅读(870) 评论(0) 推荐(0) 编辑
摘要: var timer function run(){ //clearInterval要放在方法开始,不然的话,下面的代码还没运行到clearInterval,又开始了循环了。 if(timer){ clearInterval(timer) } //do something.... timer = se 阅读全文
posted @ 2022-12-13 14:14 明明一颗大白菜 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 修改NetworkManager.conf 配置文件 vim /etc/NetworkManager/NetworkManager.conf 在[main]中添加 dns=no 修改resolv.conf配置文件 vim /etc/resolv.conf 添加 #主DNS服务器 nameserver 阅读全文
posted @ 2022-11-03 11:34 明明一颗大白菜 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 1、查看已开放的端口firewall-cmd --list-ports 2、开放端口(开放后需要要重启防火墙才生效)firewall-cmd --zone=public --add-port=3338/tcp --permanent 3、重启防火墙firewall-cmd --reload 4、关闭 阅读全文
posted @ 2022-10-28 09:53 明明一颗大白菜 阅读(327) 评论(0) 推荐(0) 编辑
摘要: 只需要在主进程文件里面加这一句代码即可: app.commandLine.appendSwitch('wm-window-animations-disabled'); 阅读全文
posted @ 2022-07-29 17:25 明明一颗大白菜 阅读(1181) 评论(1) 推荐(1) 编辑
上一页 1 2 3 4 5 6 ··· 37 下一页
<-- -->