mapCard.vue 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <template>
  2. <view class="container-view-car" @tap="navCarLocation">
  3. <map class="map" :longitude="longitude"
  4. :latitude="latitude" scale="16" show-location style="width:300rpx;height: 258rpx;" :markers="carLocation">
  5. <view class="top-car-location flex-row">
  6. <img style="width: 36rpx;height: 36rpx;" src="https://qiniu.bms16.com/FrKY7Ex5za22plr39ddIsJcjFVpi" alt="">
  7. <text>车辆位置</text>
  8. </view>
  9. </map>
  10. <view class="car-address">{{carAddress}}</view>
  11. </view>
  12. </template>
  13. <script>
  14. // component/nomore/nomore.js
  15. export default {
  16. data() {
  17. return {};
  18. },
  19. /**
  20. * 组件的属性列表
  21. */
  22. props: {
  23. longitude: {
  24. type: String,
  25. default: ''
  26. },
  27. latitude: {
  28. type: String,
  29. default: ''
  30. },
  31. carAddress: {
  32. type: String,
  33. default: ''
  34. },
  35. carLocation:{
  36. type:Array,
  37. default:[]
  38. }
  39. },
  40. /**
  41. * 组件的方法列表
  42. */
  43. methods: {
  44. navCarLocation(){
  45. const me=this
  46. uni.navigateTo({
  47. url: '/pages/carLocation/carLocation?longitude=' + me.longitude +'&latitude=' + me.latitude,
  48. success: function(res) {},
  49. fail: function(res) {},
  50. complete: function(res) {}
  51. });
  52. }
  53. }
  54. };
  55. </script>
  56. <style scoped>
  57. .container-view-car{
  58. background-color: #FFF;
  59. border-radius: 40rpx;
  60. width: 100%;
  61. padding: 8rpx;
  62. }
  63. .map{
  64. border-top-left-radius: 40rpx;
  65. border-top-right-radius: 40rpx;
  66. overflow: hidden;
  67. }
  68. .top-car-location{
  69. margin: 15rpx 0 0 15rpx;
  70. align-items: center;
  71. font-weight: 600;
  72. font-size: 28rpx;
  73. color: #060809;
  74. }
  75. .car-address{
  76. font-weight: 400;
  77. font-size: 28rpx;
  78. color: #060809;
  79. height: 80rpx;
  80. line-height: 80rpx;
  81. text-align: center;
  82. width: 300rpx;
  83. white-space: nowrap;
  84. overflow: hidden;
  85. text-overflow: ellipsis;
  86. background-color: #F4F5F6;
  87. border-bottom-left-radius: 40rpx;
  88. border-bottom-right-radius: 40rpx;
  89. margin-top: 8rpx;
  90. }
  91. </style>