02 2021 档案

uniapp自定义弹框并显示mask
摘要:<template> <view class="module-container"> <view class="personInfo" :style="{opacity: reportModel.opacity,transform: `scale(${reportModel.scale})`,dis 阅读全文
posted @ 2021-02-26 10:22 LeeToLee 阅读(1377) 评论(0) 推荐(0) 编辑
uniapp中配置midButton并且跳转到midButton所在页面
摘要:"tabBar":{ "color":"#333333", "selectedColor":"#2a75f6", "backgroundColor":"#f4f1f1", "position":"bottom", "borderStyle":"white", "list":[ { "pagePath 阅读全文
posted @ 2021-02-26 09:58 LeeToLee 阅读(2527) 评论(2) 推荐(0) 编辑
JavaScript获取日期时间,在个位数时前面➕0
摘要:原来:2021-2-21 2:9:0 要实现的效果:2021-02-21 02:09:00 const date = new Date() const today = date.getFullYear()+'-'+('0'+(date.getMonth()+1).toString()).slice( 阅读全文
posted @ 2021-02-21 14:31 LeeToLee 阅读(469) 评论(0) 推荐(0) 编辑
uniapp——tabbar中间凸起按钮
摘要:tabbar中间凸起按钮 阅读全文
posted @ 2021-02-20 11:17 LeeToLee 阅读(1891) 评论(0) 推荐(0) 编辑
JavaScript获取当前url路径
摘要:JavaScript获取当前url路径 阅读全文
posted @ 2021-02-20 10:57 LeeToLee 阅读(109) 评论(0) 推荐(0) 编辑
vue3.0打包后白屏
摘要:vue3.0打包后白屏 阅读全文
posted @ 2021-02-20 10:53 LeeToLee 阅读(153) 评论(0) 推荐(0) 编辑
uniapp获取当前页面的路径
摘要:let curRoute = this.$mp.page.route; // 直接获取当前页面路由console.log(curRoute) 转自:https://blog.csdn.net/liuxin00020/article/details/104842217/ 阅读全文
posted @ 2021-02-15 19:54 LeeToLee 阅读(2150) 评论(0) 推荐(0) 编辑
CSS改变浏览器默认滚动条样式
摘要:.w11-con-right-con::-webkit-scrollbar-track { /* 定义滚动条轨道 内阴影+圆角*/ -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); border-radius: 5px; background 阅读全文
posted @ 2021-02-14 21:40 LeeToLee 阅读(63) 评论(0) 推荐(0) 编辑
uniapp打包后提示SDK版本不匹配
摘要:如上图所示,HBuilderX编译器版本与手机端SDK版本不匹配,每次启动app都会提示 解决: 法一、下载最新版 HBuilderX 法二、在manifest.json文件的源码视图中配置忽略这个提醒 HBuilderX1.9.0及以上版本新增以下配置避免弹出提示框 //... "app-plus 阅读全文
posted @ 2021-02-05 15:29 LeeToLee 阅读(3127) 评论(0) 推荐(0) 编辑
JavaScript获取某月的天数
摘要:function getDays(year, month){ //获取当月的天数 month = parseInt(month,10); var d= new Date(year,month,0); return d.getDate() } console.log(getDays(new Date( 阅读全文
posted @ 2021-02-03 15:01 LeeToLee 阅读(129) 评论(0) 推荐(0) 编辑

 
点击右上角即可分享
微信分享提示