赞助
上一页 1 2 3 4 5 6 7 8 ··· 45 下一页
摘要: num本来数个数组,但是for in把数组原型上的也遍历(偶尔会)记录一下坑,数组还是for循环,for in还是用在对象上好 阅读全文
posted @ 2022-12-28 15:24 Tsunami黄嵩粟 阅读(14) 评论(0) 推荐(0) 编辑
摘要: //获取当前月有几周 getWeeks(year, month) { var d = new Date(); // 该月第一天 d.setFullYear(year, month - 1, 1); var w1 = d.getDay(); if (w1 == 0) w1 = 7; // 该月天数 d 阅读全文
posted @ 2022-12-12 17:42 Tsunami黄嵩粟 阅读(65) 评论(0) 推荐(0) 编辑
摘要: # composition(组合式api) ## 1.为什么使用composition vue3里面不需要Mixins了?因为有compoition api 能讲逻辑进行抽离和复用 大型组件中,其中**逻辑关注点**按颜色进行分组。 这种碎片化使得理解和维护复杂组件变得困难。选项的分离掩盖了潜在的逻 阅读全文
posted @ 2022-11-08 15:15 Tsunami黄嵩粟 阅读(46) 评论(0) 推荐(0) 编辑
摘要: # vue3.0 Vue3.0 在北京时间2020年9月19 日凌晨,发布了 3.0 版本,代号:*One Piece* ## 1.新特性 Vue 3 中一些需要关注的新功能包括: - [组合式 API](https://v3.cn.vuejs.org/guide/composition-api-i 阅读全文
posted @ 2022-11-08 14:18 Tsunami黄嵩粟 阅读(70) 评论(0) 推荐(0) 编辑
摘要: $.fn.extend({ /** * * @param { * UrineOutputData: 尿量数据 * OutputData: 出量数据 * InputData: 入量数据 * shitData: 大便数据 * pressureData: 血压数据 * pulseData: 脉搏数据 * 阅读全文
posted @ 2022-11-06 16:15 Tsunami黄嵩粟 阅读(870) 评论(7) 推荐(2) 编辑
摘要: https://qa.1r1g.com/sf/ask/2872279581/ 阅读全文
posted @ 2022-10-26 17:16 Tsunami黄嵩粟 阅读(16) 评论(0) 推荐(0) 编辑
摘要: git update-index --cacheinfo 160000 97ed2f63b07c73bad9a4d55e96e25292 source/lvdao/crf-sdk git reset --hard head 有冲突直接回退上个版本 阅读全文
posted @ 2022-10-20 15:06 Tsunami黄嵩粟 阅读(35) 评论(0) 推荐(0) 编辑
摘要: var reg = /\[(.*?)\]/g; var sysArr = []; while ((temp = reg.exec(system_url))) {//获取全部【】里面的数据 sysArr.push(temp[0].replace('[', '').replace(']', '')) } 阅读全文
posted @ 2022-10-18 15:59 Tsunami黄嵩粟 阅读(21) 评论(0) 推荐(0) 编辑
摘要: <!-- * @Author: huangtao * @Date: 2021-08-11 11:27:24 * @LastEditTime: 2021-08-11 11:32:47 * @LastEditors: Please set LastEditors * @Description: In U 阅读全文
posted @ 2022-10-11 10:33 Tsunami黄嵩粟 阅读(104) 评论(0) 推荐(0) 编辑
摘要: $('#table').find('.tr' + parent_code)[0].scrollIntoView();//滚动条到当前dom元素 阅读全文
posted @ 2022-09-29 14:26 Tsunami黄嵩粟 阅读(39) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 45 下一页