电话号码是固定的:
<a href="'tel:10086">10086</a>
电话号码是动态获取时:
走默认的方式失败
<a href="tel:{{Phone}}">{{Phone}}</a>
走字符串拼接方法成功
<a :href="'tel:' + Phone">{{Phone}}</a>
2024-02-08 22:24:34
电话号码是固定的:
<a href="'tel:10086">10086</a>
电话号码是动态获取时:
走默认的方式失败
<a href="tel:{{Phone}}">{{Phone}}</a>
走字符串拼接方法成功
<a :href="'tel:' + Phone">{{Phone}}</a>