<template> <view class='contact'> <image class='img' src='http://www.itcast.cn/2018czydz/images/gywmban.jpg'></image> <view class='info'> <view @click="phone">联系电话:13151111508(点击拨打)</view> <view>地址:扬州市经济开发区依云城邦</view> </view> <map class='map' :longitude="longitude":scale='scale' :latitude="latitude" :markers="markers"> </map> </view></template><script> export default { data() { return { longitude:119.410943, latitude:32.367115, markers:[ { longitude:119.410943, latitude:32.367115, iconPath:'../../static/hmlogo.png', width:30, height:30 } ], scale:15 }; }, methods:{ phone(){ //拨打电话 uni.makePhoneCall({ phoneNumber:13151111508 }) console.log(123) } } }</script><style lang="scss">.contact{ .img{ width:750rpx; height: 320rpx; } .info{ padding:10rpx 20rpx; font-size:40rpx; view{ line-height:60px; border-bottom:1px solid #eee; } } .map{ width:750rpx; height:750rpx; }}</style>
