数码资讯
手机号隐藏
选购提示
关注价格、性能、续航、售后和真实使用场景,理性比较后再下单。
<p> <span>手机号:</span> {{ telShow ? changetel(userInfo.contactWay) : userInfo.contactWay }} <i class="showTel" @click="showTelClick(userInfo.contactWay)">{{ telShow ? "显示" : "隐藏" }}</i> </p>
changetel(tel) {
return getTel(tel);
},
//显示手机号
showTelClick(tel) {
console.log("tel", tel);
this.telShow = !this.telShow;
},
export function getTel(tel) {
let reg = /^(\d{3})\d{4}(\d{4})$/;
if (tel) {
return tel.replace(reg, "$1****$2")
} else {
return ""
}
}
import { formatDate, getTel } from "@/filters/index.js";
声明:本文内容用于数码产品信息整理与选购参考,具体价格、库存、售后政策以官方渠道和电商页面实时信息为准。