cabinetList.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <view class="">
  3. <view class="cabinet-list-main" v-if="item.dev_id" @tap="navDeatil(item)" v-for="(item, index) in near_cabinet_list" :key="index">
  4. <view class="flex-row flex-between">
  5. <view class="cabinet-name">{{item.cabinet_name}}</view>
  6. <view class="cabinet-distance">{{item.distance}}m</view>
  7. </view>
  8. <view class="battery-list-view">
  9. <view class="battery-view" v-for="(items, index) in item.tag_info" :key="index">
  10. <text class="battery-voltage">{{items.main_tag_name}}</text>
  11. <text class="battery-num">{{'*'+num}}</text>
  12. </view>
  13. </view>
  14. <view class="flex-row flex-end">
  15. <view @tap="navBtn" :data-item="item" style="height: 56rpx;"><img style="width: 112rpx;height: 64rpx;" src="https://qiniu.bms16.com/Fts38M35doVjK09GfOza5qD-wwkK" alt=""></view>
  16. </view>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. props: {
  23. near_cabinet_list:{
  24. type:Array,
  25. defult:[]
  26. }
  27. },
  28. data() {
  29. return {
  30. };
  31. }
  32. /**
  33. * 生命周期函数--监听页面加载
  34. */
  35. ,
  36. onLoad: function(options) {
  37. },
  38. methods: {
  39. navBtn(e){
  40. const shop = e.currentTarget.dataset.item;
  41. uni.openLocation({
  42. latitude: shop.latitude - 0,
  43. longitude: shop.longitude - 0,
  44. scale: 15,
  45. name: shop.cabinet_name,
  46. address: shop.address,
  47. success: function(res) {}
  48. })
  49. },
  50. navDeatil(item){
  51. let dev_id = item.dev_id
  52. uni.navigateTo({
  53. url: `/pages/cabinetDetail/cabinetDetail?dev_id=${dev_id}`
  54. });
  55. }
  56. }
  57. };
  58. </script>
  59. <style>
  60. @import './cabinetList.css';
  61. </style>