control.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  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.isTurnOn==0?item.offUrl: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="popupControlShow" class="show-modal">
  14. <view class="modal-info">
  15. <view class="popup-title">{{($t(popText)==$t('开机'))?$t('开启车辆'):($t(popText)==$t('关机')?$t('关闭车辆'):$t(popText))}}</view>
  16. <view class="popup-content">{{$t("您确认")+(($t(popText)==$t('开机'))?$t('开启车辆'):($t(popText)==$t('关机')?$t('关闭车辆'):$t(popText)))+$t("吗")}}</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="popupControlShow" 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. let app = getApp();
  64. var bluetooth = require('@/common/bluetooth.js');
  65. var config = require('@/common/config.js');
  66. var common = require('@/common/common.js');
  67. var http = require('@/common/http.js');
  68. import controlMixin from '@/mixin/index';
  69. import i18n from '@/locale/index.js'
  70. import {
  71. getFunctionTag,
  72. setFunctionTag
  73. } from '@/common/storage.js';
  74. export default {
  75. mixins: [controlMixin],
  76. props:{
  77. contrilList: {
  78. type: Array,
  79. default: () => []
  80. },
  81. online: {
  82. type: Boolean,
  83. default: false
  84. },
  85. },
  86. data() {
  87. return {
  88. // popText:'',
  89. // popupControlShow:false,
  90. // controlType:null,//选择的车辆控制
  91. isShowMore:false,
  92. car_line:false
  93. };
  94. },
  95. mounted() {
  96. // this.contrilList = getFunctionTag().activeTag
  97. },
  98. /**
  99. * 组件的方法列表
  100. */
  101. methods: {
  102. tapOpen(e){
  103. const item = e.currentTarget.dataset.item;
  104. this.changClick(item)
  105. },
  106. toMoreFunctionSet() {
  107. uni.navigateTo({
  108. url: '/pages/carFunctionSet/more?online='+this.online
  109. })
  110. }
  111. // tapOpen(e){
  112. // this.carOnline=this.online
  113. // console.log( getFunctionTag().activeTag, getFunctionTag());
  114. // const {name,type} = e.currentTarget.dataset.item;
  115. // this.setData({
  116. // popText:name,
  117. // cmdType:type,
  118. // popupControlShow:true
  119. // })
  120. // },
  121. // tapBlueToothCmd(){
  122. // const car_info= uni.getStorageSync('car_info');
  123. // const me=this
  124. // // 判断车辆是否在线状态 true 在线调用接口 不在线提示连接蓝牙
  125. // if (this.online) {
  126. // if(this.cmdType=='batteryInfo'){
  127. // uni.navigateTo({
  128. // url:`/pages/batteryDetail/batteryDetail`
  129. // })
  130. // }else if(this.cmdType=='navigation'){
  131. // const {
  132. // address,
  133. // latitude,
  134. // longitude,
  135. // car_name
  136. // } =car_info
  137. // uni.openLocation({
  138. // latitude: latitude - 0,
  139. // longitude: longitude - 0,
  140. // scale: 15,
  141. // name: car_name,
  142. // address: address,
  143. // success: function (res) {},
  144. // })
  145. // }else if(this.cmdType=='turnOnOrOff'){
  146. // const switchType=this.contrilList.find(item => item.isTurnOn)
  147. // const pData={
  148. // car_sn:car_info.car_sn,
  149. // switch:switchType
  150. // }
  151. // const me=this
  152. // common.loading();
  153. // http.postApi(config.API_FLK_CAR_SWITCH, pData, (resp) => {
  154. // uni.hideLoading();
  155. // if (resp.data.code === 200) {
  156. // common.simpleToast(me.popText + '成功');
  157. // const activeTag=me.contrilList.map(item=>{
  158. // item.isTurnOn=(item.isTurnOn==1)?0:1
  159. // item.name=i18n.t((item.isTurnOn==1)?'关机':'开机')
  160. // return item
  161. // })
  162. // const tag=getFunctionTag().tag
  163. // setFunctionTag({activeTag,tag})
  164. // } else {
  165. // common.simpleToast(resp.data.msg);
  166. // }
  167. // });
  168. // }else{
  169. // const testArr=[
  170. // {type:'findCar',opt_type:1},
  171. // {type:'openSeatBag',opt_type:0},
  172. // {type:'openTailBox',opt_type:2},
  173. // ]
  174. // const pData = testArr.find(i=>i.type===this.cmdType)
  175. // const me=this
  176. // common.loading();
  177. // http.postApi(config.API_FLK_CAR_REMOTE_CONTROL, pData, (resp) => {
  178. // uni.hideLoading();
  179. // if (resp.data.code === 200) {
  180. // common.simpleToast(me.popText + '成功');
  181. // } else {
  182. // common.simpleToast(resp.data.msg);
  183. // }
  184. // });
  185. // }
  186. // } else {
  187. // //蓝牙是否已经连接 未连接提示去连接 已连接下发对应指令
  188. // const isBluetoothConnect = app.globalData.connectionStateChangeFunc[car_info.car_sn]
  189. // if(isBluetoothConnect){
  190. // const isTurnOn=this.contrilList.find(item => item.isTurnOn).isTurnOn==1
  191. // console.log(isTurnOn,this.cmdType,this.contrilList);
  192. // const bluetoothCommands = {
  193. // 'turnOnOrOff': isTurnOn?bluetooth.turnOnCar:bluetooth.turnOffCar,
  194. // 'findCar': bluetooth.findCarCmd,
  195. // 'openSeatBag': bluetooth.openCarSeat,
  196. // 'openTailBox': bluetooth.openCarTrunk,
  197. // 'tirePressure': bluetooth.getCarPressure
  198. // };
  199. // common.loading();
  200. // const command = bluetoothCommands[this.cmdType];
  201. // if (command) {
  202. // command('900000997', () => {
  203. // uni.hideLoading();
  204. // if(this.cmdType=='openSeatBag'||this.cmdType=='openTailBox'){
  205. // common.simpleToast('操作成功');
  206. // }
  207. // console.log(`发送${this.popText}指令结束`);
  208. // });
  209. // }
  210. // }else{
  211. // uni.showModal({
  212. // title: '提示',
  213. // content: '当前车辆处于离线,是否前往开启蓝牙配对操作车辆?',
  214. // showCancel: true,
  215. // cancelText: '取消',
  216. // confirmText: '确定',
  217. // success: function(res) {
  218. // if (res.confirm) {
  219. // me.$emit('toBluetooth')
  220. // }
  221. // },
  222. // fail: function(res) {},
  223. // complete: function(res) {},
  224. // })
  225. // }
  226. // }
  227. // this.popupControlShow=false
  228. // },
  229. // // closePopup(){
  230. // this.popupControlShow=false
  231. // },
  232. // tapOpenMore(){
  233. // // this.isShowMore=true
  234. // },
  235. // closeMore(){
  236. // this.isShowMore=false
  237. // },
  238. // navUrl(url){
  239. // // ifconsole.log(url,'sj');
  240. // },
  241. // navCarLocation(){
  242. // //前往配置更多功能
  243. // uni.navigateTo({
  244. // url:'/pages/carLocation/carLocation'
  245. // })
  246. // },
  247. }
  248. };
  249. </script>
  250. <style>
  251. @import './control.css';
  252. </style>