control.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <template>
  2. <view class="container-view-contril">
  3. <scroll-view class="scroll-view flex-row" scroll-x="true">
  4. <view @tap="tapOpen" v-for="(item,index) of contrilList" :key="index" :data-item="item" class="contril-item flex-row">
  5. <img class="contril-item-img" :src="item.iconUrl" alt="">
  6. <text>{{item.name}}</text>
  7. </view>
  8. <view class="contril-item flex-row" @tap="toMoreFunctionSet">
  9. <img class="contril-item-img" src="https://qiniu.bms16.com/Ft3pNyStT22LP8Ds1Mru2LoTHadx" alt="">
  10. <text>{{$t("更多功能")}}</text>
  11. </view>
  12. </scroll-view>
  13. <view v-if="popupShow" class="show-modal">
  14. <view class="modal-info">
  15. <view class="popup-title">{{$t(popText)}}</view>
  16. <view class="popup-content">{{$t("您确认")+$t(popText)}}</view>
  17. <view class="flex-row modal-footer">
  18. <view class="show-btn cencel-btn-pop" @tap="closePopup">{{$t("取消")}}</view>
  19. <view class="show-btn ok-btn-pop" @tap="tapBlueToothCmd">{{$t("确定")}}</view>
  20. </view>
  21. </view>
  22. </view>
  23. <!-- <u-popup v-model="popupShow" mode="center" border-radius="30" height="30%" length="60%">
  24. <view class="popup-title">开启车辆</view>
  25. <view class="popup-content">确定打开</view>
  26. <view class="flex-row">
  27. <view class="sure-btn cencel-btn" @tap="closePopup">取消</view>
  28. <view class="sure-btn ok-btn" >确定</view>
  29. </view>
  30. </u-popup> -->
  31. <!-- <view v-if="isShowMore" class="show-more">
  32. <view class="more-info">
  33. <view class="flex-row flex-between model-title">
  34. <view>{{$t("更多功能")}}</view>
  35. <view>
  36. <image style="width: 32rpx;height: 32rpx;" @tap="isShowMore = false"
  37. src="https://qiniu.bms16.com/FtoTEHOJiUf_gjPCJGGHMsAtHI5M" />
  38. </view>
  39. </view>
  40. <view style="height: 300rpx;">
  41. <view data-url="test" @tap="navUrl" class="more-item flex-row">
  42. <img class="more-img" src="https://qiniu.bms16.com/FgxiD-W96FGvgyLI_kXUfWVDYLQ9" alt="">
  43. <text>{{$t("胎压")}}</text>
  44. </view>
  45. <view class="more-item flex-row">
  46. <img class="more-img" src="https://qiniu.bms16.com/FgxiD-W96FGvgyLI_kXUfWVDYLQ9" alt="">
  47. <text>{{$t("电池信息")}}</text>
  48. </view>
  49. <view @tap="navCarLocation" class="more-item flex-row">
  50. <img class="more-img" src="https://qiniu.bms16.com/FgxiD-W96FGvgyLI_kXUfWVDYLQ9" alt="">
  51. <text>{{$t("导航")}}</text>
  52. </view>
  53. </view>
  54. <view class="lift-btn-view">
  55. <view class="lift-btn">{{$t("解除绑定")}}</view>
  56. </view>
  57. </view>
  58. </view>
  59. -->
  60. </view>
  61. </template>
  62. <script>
  63. var app = getApp();
  64. var bluetooth = require('@/common/bluetooth.js');
  65. export default {
  66. props:{
  67. contrilList: {
  68. type: Array,
  69. default: () => []
  70. },
  71. },
  72. data() {
  73. return {
  74. popText:'',
  75. popupShow:false,
  76. controlType:null,//选择的车辆控制
  77. isShowMore:false
  78. };
  79. },
  80. mounted() {
  81. // this.contrilList = getFunctionTag().activeTag
  82. },
  83. /**
  84. * 组件的方法列表
  85. */
  86. methods: {
  87. tapOpen(e){
  88. const {name} = e.currentTarget.dataset.item;
  89. this.setData({
  90. popText:name,
  91. popupShow:true
  92. })
  93. },
  94. tapBlueToothCmd(){
  95. // const isLock=this.contrilList.map(i=>i.isLock||false)
  96. if(this.popText=='开机'){
  97. bluetooth.turnOnCar('900000997',()=>{
  98. console.log('发送开机指令结束');
  99. })
  100. }else if(this.popText=='闪灯鸣笛'){
  101. bluetooth.findCarCmd('900000997',()=>{
  102. console.log('发送闪灯鸣笛指令结束');
  103. })
  104. }else if(this.popText=='打开座桶'){
  105. bluetooth.openCarSeat('900000997',()=>{
  106. console.log('发送打开座桶指令结束');
  107. })
  108. }else if(this.popText=='打开尾箱'){
  109. bluetooth.openCarTrunk('900000997',()=>{
  110. console.log('发送打开尾箱指令结束');
  111. })
  112. }else if(this.popText=='关机'){
  113. bluetooth.turnOffCar('900000997',()=>{
  114. console.log('发送关机指令结束');
  115. })
  116. }else if(this.popText=='胎压'){
  117. bluetooth.getCarPressure('900000997',()=>{
  118. console.log('发送胎压指令结束');
  119. })
  120. }
  121. },
  122. closePopup(){
  123. this.popupShow=false
  124. },
  125. tapOpenMore(){
  126. // this.isShowMore=true
  127. },
  128. closeMore(){
  129. this.isShowMore=false
  130. },
  131. navUrl(url){
  132. // ifconsole.log(url,'sj');
  133. },
  134. navCarLocation(){
  135. //前往配置更多功能
  136. uni.navigateTo({
  137. url:'/pages/carLocation/carLocation'
  138. })
  139. },
  140. toMoreFunctionSet() {
  141. uni.navigateTo({
  142. url: '/pages/carFunctionSet/more'
  143. })
  144. }
  145. }
  146. };
  147. </script>
  148. <style>
  149. @import './control.css';
  150. </style>