瑶都万能墙
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
627 B

8 months ago
  1. <template>
  2. <view class="address"
  3. @click.stop="openLocation(latitude, longitude)"
  4. v-if="address">
  5. <uv-icon size="30rpx" name="map"></uv-icon>
  6. <view class="text-ellipsis">
  7. {{ address }}
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. props : ['latitude', 'longitude', 'address'],
  14. data() {
  15. return {
  16. }
  17. },
  18. methods: {
  19. }
  20. }
  21. </script>
  22. <style scoped lang="scss">
  23. .address {
  24. font-size: 24rpx;
  25. margin: 20rpx 0;
  26. display: flex;
  27. align-items: center;
  28. background-color: #eee;
  29. padding: 10rpx 20rpx;
  30. width: fit-content;
  31. border-radius: 40rpx;
  32. max-width: calc(100% - 40rpx);
  33. }
  34. </style>