control.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <template>
  2. <view class="container-view-contril">
  3. <scroll-view class="scroll-view flex-row" scroll-x="true">
  4. <view @tap="tapOpen" class="contril-item flex-row">
  5. <img class="contril-item-img" src="https://qiniu.bms16.com/FmDQhes8TGJh0GZB1Hu3yePuUsRw" alt="">
  6. <text>{{$t("开机")}}</text>
  7. </view>
  8. <view @tap="tapOpen" class="contril-item flex-row">
  9. <img class="contril-item-img" src="https://qiniu.bms16.com/FjoP6k55xhNkbJa-Zm582KQcbuy8" alt="">
  10. <text>{{$t("闪灯鸣笛")}}</text>
  11. </view>
  12. <view @tap="tapOpen" class="contril-item flex-row">
  13. <img class="contril-item-img" src="https://qiniu.bms16.com/FsUx45Qk6skjrCZuFHHMcqp6WR_I" alt="">
  14. <text>{{$t("打开座桶")}}</text>
  15. </view>
  16. <view @tap="tapOpen" class="contril-item flex-row">
  17. <img class="contril-item-img" src="https://qiniu.bms16.com/FjgrfPEufqSzOxb6Aobuc_bbbtJE" alt="">
  18. <text>{{$t("打开尾箱")}}</text>
  19. </view>
  20. <view class="contril-item flex-row" @tap="toMoreFunctionSet">
  21. <img class="contril-item-img" src="https://qiniu.bms16.com/Ft3pNyStT22LP8Ds1Mru2LoTHadx" alt="">
  22. <text>{{$t("更多功能")}}</text>
  23. </view>
  24. </scroll-view>
  25. <view v-if="popupShow" class="show-modal">
  26. <view class="modal-info">
  27. <view class="popup-title">{{$t("开启车辆")}}</view>
  28. <view class="popup-content">{{$t("确定打开")}}</view>
  29. <view class="flex-row modal-footer">
  30. <view class="show-btn cencel-btn-pop" @tap="closePopup">{{$t("取消")}}</view>
  31. <view class="show-btn ok-btn-pop" >{{$t("确定")}}</view>
  32. </view>
  33. </view>
  34. </view>
  35. <!-- <u-popup v-model="popupShow" mode="center" border-radius="30" height="30%" length="60%">
  36. <view class="popup-title">开启车辆</view>
  37. <view class="popup-content">确定打开</view>
  38. <view class="flex-row">
  39. <view class="sure-btn cencel-btn" @tap="closePopup">取消</view>
  40. <view class="sure-btn ok-btn" >确定</view>
  41. </view>
  42. </u-popup> -->
  43. <!-- <view v-if="isShowMore" class="show-more">
  44. <view class="more-info">
  45. <view class="flex-row flex-between model-title">
  46. <view>{{$t("更多功能")}}</view>
  47. <view>
  48. <image style="width: 32rpx;height: 32rpx;" @tap="isShowMore = false"
  49. src="https://qiniu.bms16.com/FtoTEHOJiUf_gjPCJGGHMsAtHI5M" />
  50. </view>
  51. </view>
  52. <view style="height: 300rpx;">
  53. <view data-url="test" @tap="navUrl" class="more-item flex-row">
  54. <img class="more-img" src="https://qiniu.bms16.com/FgxiD-W96FGvgyLI_kXUfWVDYLQ9" alt="">
  55. <text>{{$t("胎压")}}</text>
  56. </view>
  57. <view class="more-item flex-row">
  58. <img class="more-img" src="https://qiniu.bms16.com/FgxiD-W96FGvgyLI_kXUfWVDYLQ9" alt="">
  59. <text>{{$t("电池信息")}}</text>
  60. </view>
  61. <view @tap="navCarLocation" class="more-item flex-row">
  62. <img class="more-img" src="https://qiniu.bms16.com/FgxiD-W96FGvgyLI_kXUfWVDYLQ9" alt="">
  63. <text>{{$t("导航")}}</text>
  64. </view>
  65. </view>
  66. <view class="lift-btn-view">
  67. <view class="lift-btn">{{$t("解除绑定")}}</view>
  68. </view>
  69. </view>
  70. </view>
  71. -->
  72. </view>
  73. </template>
  74. <script>
  75. // component/nomore/nomore.js
  76. export default {
  77. data() {
  78. return {
  79. contrilList:[
  80. {text:'开机',imgSrc:'https://qiniu.bms16.com/FgxiD-W96FGvgyLI_kXUfWVDYLQ9'},
  81. {text:'闪灯鸣笛',imgSrc:'https://qiniu.bms16.com/FgxiD-W96FGvgyLI_kXUfWVDYLQ9'},
  82. {text:'闪灯鸣笛',imgSrc:'https://qiniu.bms16.com/FgxiD-W96FGvgyLI_kXUfWVDYLQ9'},
  83. {text:'闪灯鸣笛',imgSrc:'https://qiniu.bms16.com/FgxiD-W96FGvgyLI_kXUfWVDYLQ9'},
  84. {text:'闪灯鸣笛',imgSrc:'https://qiniu.bms16.com/FgxiD-W96FGvgyLI_kXUfWVDYLQ9'},
  85. ],
  86. popupShow:false,
  87. controlType:null,//选择的车辆控制
  88. isShowMore:false
  89. };
  90. },
  91. /**
  92. * 组件的属性列表
  93. */
  94. props: {
  95. },
  96. /**
  97. * 组件的方法列表
  98. */
  99. methods: {
  100. tapOpen(){
  101. this.popupShow=true
  102. },
  103. closePopup(){
  104. this.popupShow=false
  105. },
  106. tapOpenMore(){
  107. // this.isShowMore=true
  108. },
  109. closeMore(){
  110. this.isShowMore=false
  111. },
  112. navUrl(url){
  113. // ifconsole.log(url,'sj');
  114. },
  115. navCarLocation(){
  116. //前往配置更多功能
  117. uni.navigateTo({
  118. url:'/pages/carLocation/carLocation'
  119. })
  120. },
  121. toMoreFunctionSet() {
  122. uni.navigateTo({
  123. url: '/pages/carFunctionSet/more'
  124. })
  125. }
  126. }
  127. };
  128. </script>
  129. <style>
  130. @import './control.css';
  131. </style>