摘要: SELECT customer_id, SUM(order_amount) as total_orders, MAX(order_date) as latest_order_date FROM orders WHERE order_date < DATE_SUB(NOW(), INTERVAL 30 阅读全文
posted @ 2023-12-01 08:57 丶漏电姐姐 阅读(29) 评论(0) 推荐(0) 编辑
摘要: ####年月日十分秒 yyyy-MM-dd hh:mm:ss 格式如下 new Date( +new Date() + 8 * 3600 * 1000 ).toJSON().substr(0,19).replace("T"," "); ####年月日 yyyy-mm-dd 格式如下 new Date 阅读全文
posted @ 2022-06-16 11:29 丶漏电姐姐 阅读(649) 评论(0) 推荐(0) 编辑
摘要: ###修改选中文字背景色 打开Preferences 打开下拉菜单Editor 打开下拉菜单Color Scheme 选中General选项 打开右侧Editor下拉菜单 找到Selection background选项,值改成 F43B6C ###安装主题 我安装的是Atom One Light 阅读全文
posted @ 2022-06-15 09:49 丶漏电姐姐 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 自己记录一下 字符串当参数 <view class="common-list-item fund-list-item" a:if="{{whxxlxIndex 1}}"> <view class="item-title">放款日期</view> <view class="item-content" 阅读全文
posted @ 2021-11-08 15:43 丶漏电姐姐 阅读(1613) 评论(0) 推荐(0) 编辑
摘要: 我太难了。。。 一、安装jquery npm install jquery --save 二、一般安装成功后在package.json文件内的dependencies项中会有"jquery": "^1.12.4",如果没有可以手动添加。需要注意的是,现在我们都是直接使用模板创建项目的,所以第一步是可 阅读全文
posted @ 2021-09-17 10:03 丶漏电姐姐 阅读(120) 评论(0) 推荐(0) 编辑
摘要: nodejs版本管理工具nvm使用说明 阅读全文
posted @ 2020-10-28 10:56 丶漏电姐姐 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 问题背景介绍: 微信公众号网页开发的时候,点击发送短信验证码,如果响应时间超长,目前测试是10秒左右(这个10秒左右,是我自己多次测试总结出来的规律) 超过10秒左右,就会自动请求第二遍,这个问题挺恶心。上网搜了搜,发现也有很多小伙伴遇到这个问题了,比如下面这位: https://blog.fish 阅读全文
posted @ 2019-01-04 15:13 丶漏电姐姐 阅读(1343) 评论(0) 推荐(0) 编辑
摘要: 1 export default function () { 2 const json = { 3 userAgent: navigator.userAgent.toLowerCase(), 4 isAndroid: Boolean(navigator.userAgent.match(/android/ig)), 5 isIpho... 阅读全文
posted @ 2018-12-27 11:13 丶漏电姐姐 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 上面是代码,下面是运行自后的截图 阅读全文
posted @ 2018-12-17 14:35 丶漏电姐姐 阅读(2356) 评论(0) 推荐(0) 编辑
摘要: 1 // 水平居中 2 display:flex; 3 justify-content: space-around; 4 5 // 垂直居中 6 display:flex; 7 align-items:content; 8 9 // 水平垂直居中 10 display:flex; 11 justify-content:space-around; 12 align-items... 阅读全文
posted @ 2018-12-13 10:55 丶漏电姐姐 阅读(330) 评论(0) 推荐(0) 编辑