2020年11月3日
摘要: <meta name="format-detection" content="telephone=yes" /> // 调用拨号功能 callPhone(phoneNumber) { window.location.href = "tel://" + phoneNumber; }, 阅读全文
posted @ 2020-11-03 14:17 稳住别慌 阅读(92) 评论(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 稳住别慌 阅读(737) 评论(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 稳住别慌 阅读(246) 评论(0) 推荐(0) 编辑