随笔 - 135  文章 - 0  评论 - 2  阅读 - 17万
11 2020 档案
git 提交出现HEAD detached from origin/master问题的解决
摘要:问题:执行git status,提示: HEAD detached from origin/master 原因:分支选错了,后续的提交都提交到了一个匿名分支之上,整个状态是游离了的 解决方法: 1.查看在游离状态下提交的最新commit号 git branch -v 2.创建一个临时的分支,创建完成 阅读全文
posted @ 2020-11-19 10:02 稳住别慌 阅读(4018) 评论(0) 推荐(0) 编辑
git提交出错
摘要:输入git push出现错误,可以采用 git push -f 强制推送 mi@DESKTOP-3EN48FH MINGW64 /d/project/future-runmei-mall-h5 (master) $ git push To https://gitee.com/bilnn/future 阅读全文
posted @ 2020-11-10 13:38 稳住别慌 阅读(864) 评论(0) 推荐(0) 编辑
移动端==》拨打手机号
摘要:<meta name="format-detection" content="telephone=yes" /> // 调用拨号功能 callPhone(phoneNumber) { window.location.href = "tel://" + phoneNumber; }, 阅读全文
posted @ 2020-11-03 14:17 稳住别慌 阅读(93) 评论(0) 推荐(0) 编辑
验证密码
摘要:// 检查登录密码,字母数字特殊字符两两组合 checkPassword() { const reg = /(?!.*\s)(?!^[\u4e00-\u9fa5]+$)(?!^[0-9]+$)(?!^[A-z]+$)(?!^[^A-z0-9]+$)^.{8,16}$/; if (this.passw 阅读全文
posted @ 2020-11-03 14:11 稳住别慌 阅读(747) 评论(0) 推荐(0) 编辑
移动端无数据时的空白页
摘要:<!-- 当没有收货地址时 --> <div v-if="isNone" class="noAddress" style=" width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; 阅读全文
posted @ 2020-11-03 13:54 稳住别慌 阅读(252) 评论(0) 推荐(0) 编辑

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

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