相关html 代码:
```
<div ng-repeat="nu in num" class="col col-25 whiteFore"
ng-click="callPhone({{nu.tel}})">
<i class="icon ion-ios-telephone"></i>
电话{{nu.tel}}
</div>
```
相关js代码
```
$scope.num = [{
tel:'18838.....'
},
{
tel:'13137......'
},{
tel:'1513......'
}]
$scope.callPhone = function (mobilePhone) {
$window.location.href = "tel:" + mobilePhone;
};
```