摘要: uni-app 中使用vant 运行项目报错Syntax Error: SyntaxError(43:193) Unclosed bracket(css 错误) 全局搜索https://img.yzcdn.cn/vant/vant-icon-d3825a.woff,把所有的url前加一个空格,不管是 阅读全文
posted @ 2023-02-22 17:36 jmwyc 阅读(45) 评论(0) 推荐(0) 编辑
摘要: vue 封装密码输入框(屏蔽浏览器反显,禁止粘贴) 备注:使用了ant-design-vue,可以换其他组件输入框或原生 <template> <a-input style="ime-mode: disabled" :value="hideValue" @change="valueChange" @ 阅读全文
posted @ 2023-01-16 10:16 jmwyc 阅读(524) 评论(0) 推荐(0) 编辑
摘要: 背景 gitlab 上的仓库不知被谁删了,准备新建远程仓库并把本地的所有分支及记录提交上去 正文 新建远程仓库 本地代码执行 git remote rename origin old-origin 命令, 将被删除的远程仓库命名为old-origin git remote add origin ht 阅读全文
posted @ 2023-01-12 09:30 jmwyc 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 1.给Date对象添加format方法,date类型的对象即可使用格式化方法(注意需要引入main.js中) Date.prototype.format = function(fmt) { let o = { "M+" : this.getMonth()+1, //月份 "d+" : this.ge 阅读全文
posted @ 2023-01-04 15:53 jmwyc 阅读(841) 评论(0) 推荐(0) 编辑
摘要: vue性能优化 参考链接: https://www.jianshu.com/p/0c05faee0975(打包分析软件) https://blog.csdn.net/qq_37818095/article/details/94616497(前端性能分析) https://github.com/Pan 阅读全文
posted @ 2020-11-04 18:04 jmwyc 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 正则表达式 表达式符号说明 ^ 匹配一个输入或一行的开头,/^a/匹配"an A",而不匹配"An a" $ 匹配一个输入或一行的结尾,/a$/匹配"An a",而不匹配"an A" * 匹配前面元字符0次或多次 + 匹配前面元字符1次或多次 ? 匹配前面元字符0次或1次 x|y 匹配x或y \d 阅读全文
posted @ 2020-09-09 14:40 jmwyc 阅读(1836) 评论(0) 推荐(0) 编辑
摘要: css 实现一行文本、两行文本 .onerow{ overflow:hidden; width: 100%; display:inline-block; text-overflow:ellipsis; white-space:nowrap; word-break: break-all; } .one 阅读全文
posted @ 2020-09-09 11:41 jmwyc 阅读(306) 评论(0) 推荐(0) 编辑
摘要: ::-webkit-scrollbar {/* 隐藏滚动条 (设置滚动条样式)*/ width: 0; height: 0; color: transparent; } 详看: https://blog.csdn.net/fareast_mzh/article/details/81975306 阅读全文
posted @ 2019-11-26 16:01 jmwyc 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 出现这种问题,border-radius没有达到自己想要的效果 原因:border-radius定义了border的圆角,未定义span元素的圆角范围 解决:不设置border,则border-radius对整个span生效。再加box-shadow实现border效果 阅读全文
posted @ 2019-11-26 15:53 jmwyc 阅读(8596) 评论(0) 推荐(0) 编辑
摘要: 复选框选中的时候,必须提示是否确定选中,取消勾选的时候也要。 不能解决的思路: 1.element的checkbox只有一个change事件,该事件只返回该选项最新的值(true,false)(不会返回该事件的元素对象) 2.checkbox上面不能加上其他的事件,比如@click不起作用。 3.c 阅读全文
posted @ 2019-11-13 15:20 jmwyc 阅读(2310) 评论(0) 推荐(0) 编辑