1. <template>
    2. <view class='contact'>
    3. <image class='img' src='http://www.itcast.cn/2018czydz/images/gywmban.jpg'></image>
    4. <view class='info'>
    5. <view @click="phone">联系电话:13151111508(点击拨打)</view>
    6. <view>地址:扬州市经济开发区依云城邦</view>
    7. </view>
    8. <map class='map' :longitude="longitude":scale='scale' :latitude="latitude" :markers="markers">
    9. </map>
    10. </view>
    11. </template>
    12. <script>
    13. export default {
    14. data() {
    15. return {
    16. longitude:119.410943,
    17. latitude:32.367115,
    18. markers:[
    19. {
    20. longitude:119.410943,
    21. latitude:32.367115,
    22. iconPath:'../../static/hmlogo.png',
    23. width:30,
    24. height:30
    25. }
    26. ],
    27. scale:15
    28. };
    29. },
    30. methods:{
    31. phone(){ //拨打电话
    32. uni.makePhoneCall({
    33. phoneNumber:13151111508
    34. })
    35. console.log(123)
    36. }
    37. }
    38. }
    39. </script>
    40. <style lang="scss">
    41. .contact{
    42. .img{
    43. width:750rpx;
    44. height: 320rpx;
    45. }
    46. .info{
    47. padding:10rpx 20rpx;
    48. font-size:40rpx;
    49. view{
    50. line-height:60px;
    51. border-bottom:1px solid #eee;
    52. }
    53. }
    54. .map{
    55. width:750rpx;
    56. height:750rpx;
    57. }
    58. }
    59. </style>

    image.png