control.vue 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  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 class="flex-row power-view">
  14. <view class="power-on-off flex-row" >
  15. <view :style="sliderStyle" @touchstart="touchStart" @touchmove="touchMove" @touchend="touchEnd" class="power-on-btn"><image style="width: 52rpx;height: 52rpx;" src="https://qiniu.bms16.com/Fkovrpq1bexe-Unal_VJREbLUhdu" mode=""></image></view>
  16. <view class="power-on-text" >滑动启动</view>
  17. </view>
  18. <view class="car-change-battery flex-row">
  19. <view class="car-change-btn"><image style="width: 80rpx;height: 80rpx;" src="https://qiniu.bms16.com/FgvnT-msLbL5RHjl6fvNlM0kab5N" mode=""></image></view>
  20. <view class="car-change-text">车辆换电</view>
  21. </view>
  22. </view>
  23. <view v-if="popupControlShow" class="show-modal">
  24. <view class="modal-info">
  25. <view class="popup-title">{{($t(popText)==$t('开机'))?$t('开启车辆'):($t(popText)==$t('关机')?$t('关闭车辆'):$t(popText))}}</view>
  26. <view class="popup-content">{{$t("您确认")+(($t(popText)==$t('开机'))?$t('开启车辆'):($t(popText)==$t('关机')?$t('关闭车辆'):$t(popText)))+$t("吗")}}</view>
  27. <view class="flex-row modal-footer">
  28. <view class="show-btn cencel-btn-pop" @tap="closePopup">{{$t("取消")}}</view>
  29. <view class="show-btn ok-btn-pop" @tap="tapBlueToothCmd">{{$t("确定")}}</view>
  30. </view>
  31. </view>
  32. </view>
  33. <!-- <u-popup v-model="popupControlShow" mode="center" border-radius="30" height="30%" length="60%">
  34. <view class="popup-title">开启车辆</view>
  35. <view class="popup-content">确定打开</view>
  36. <view class="flex-row">
  37. <view class="sure-btn cencel-btn" @tap="closePopup">取消</view>
  38. <view class="sure-btn ok-btn" >确定</view>
  39. </view>
  40. </u-popup> -->
  41. <!-- <view v-if="isShowMore" class="show-more">
  42. <view class="more-info">
  43. <view class="flex-row flex-between model-title">
  44. <view>{{$t("更多功能")}}</view>
  45. <view>
  46. <image style="width: 32rpx;height: 32rpx;" @tap="isShowMore = false"
  47. src="https://qiniu.bms16.com/FtoTEHOJiUf_gjPCJGGHMsAtHI5M" />
  48. </view>
  49. </view>
  50. <view style="height: 300rpx;">
  51. <view data-url="test" @tap="navUrl" class="more-item flex-row">
  52. <img class="more-img" src="https://qiniu.bms16.com/FgxiD-W96FGvgyLI_kXUfWVDYLQ9" alt="">
  53. <text>{{$t("胎压")}}</text>
  54. </view>
  55. <view class="more-item flex-row">
  56. <img class="more-img" src="https://qiniu.bms16.com/FgxiD-W96FGvgyLI_kXUfWVDYLQ9" alt="">
  57. <text>{{$t("电池信息")}}</text>
  58. </view>
  59. <view @tap="navCarLocation" class="more-item flex-row">
  60. <img class="more-img" src="https://qiniu.bms16.com/FgxiD-W96FGvgyLI_kXUfWVDYLQ9" alt="">
  61. <text>{{$t("导航")}}</text>
  62. </view>
  63. </view>
  64. <view class="lift-btn-view">
  65. <view class="lift-btn">{{$t("解除绑定")}}</view>
  66. </view>
  67. </view>
  68. </view>
  69. -->
  70. </view>
  71. </template>
  72. <script>
  73. var bluetooth = require('@/common/bluetooth.js');
  74. var config = require('@/common/config.js');
  75. var common = require('@/common/common.js');
  76. var http = require('@/common/http.js');
  77. import controlMixin from '@/mixin/index';
  78. import i18n from '@/locale/index.js'
  79. import {
  80. getFunctionTag,
  81. setFunctionTag
  82. } from '@/common/storage.js';
  83. export default {
  84. mixins: [controlMixin],
  85. props:{
  86. contrilList: {
  87. type: Array,
  88. default: () => []
  89. },
  90. online: {
  91. type: Boolean,
  92. default: false
  93. },
  94. },
  95. data() {
  96. return {
  97. // popText:'',
  98. // popupControlShow:false,
  99. // controlType:null,//选择的车辆控制
  100. isShowMore:false,
  101. car_line:false,
  102. startX: 0, // 滑块开始滑动的初始位置
  103. moveX: 0, // 滑块滑动的距离
  104. unlocked: false // 是否解锁成功的标志
  105. };
  106. },
  107. computed: {
  108. // 计算滑块的样式
  109. sliderStyle() {
  110. return {
  111. transform: `translateX(${this.moveX}px)`
  112. };
  113. }
  114. },
  115. mounted() {
  116. // this.contrilList = getFunctionTag().activeTag
  117. },
  118. /**
  119. * 组件的方法列表
  120. */
  121. methods: {
  122. tapOpen(e){
  123. const item = e.currentTarget.dataset.item;
  124. this.changClick(item)
  125. },
  126. toMoreFunctionSet() {
  127. uni.navigateTo({
  128. url: '/pages/carFunctionSet/more?online='+this.online
  129. })
  130. },
  131. touchStart(event) {
  132. console.log(event,'test');
  133. this.startX = this.unlocked?this.moveX:event.touches[0].clientX;
  134. },
  135. touchMove(event) {
  136. this.moveX = event.touches[0].clientX - this.startX;
  137. console.log( event.touches[0].clientX,this.startX,'this.moveX');
  138. if (this.moveX < 0) this.moveX = 0;
  139. if (this.moveX > 70 &&!this.unlocked) this.moveX = 135; // 假设滑块最大滑动距离为135px
  140. },
  141. touchEnd() {
  142. console.log(this.moveX,'this.moveX1111');
  143. if (this.moveX >= 135) {
  144. this.unlocked = true;
  145. console.log('解锁成功');
  146. } else {
  147. // this.moveX = 0;
  148. }
  149. }
  150. // tapOpen(e){
  151. // this.carOnline=this.online
  152. // console.log( getFunctionTag().activeTag, getFunctionTag());
  153. // const {name,type} = e.currentTarget.dataset.item;
  154. // this.setData({
  155. // popText:name,
  156. // cmdType:type,
  157. // popupControlShow:true
  158. // })
  159. // },
  160. // tapBlueToothCmd(){
  161. // const car_info= uni.getStorageSync('car_info');
  162. // const me=this
  163. // // 判断车辆是否在线状态 true 在线调用接口 不在线提示连接蓝牙
  164. // if (this.online) {
  165. // if(this.cmdType=='batteryInfo'){
  166. // uni.navigateTo({
  167. // url:`/pages/batteryDetail/batteryDetail`
  168. // })
  169. // }else if(this.cmdType=='navigation'){
  170. // const {
  171. // address,
  172. // latitude,
  173. // longitude,
  174. // car_name
  175. // } =car_info
  176. // uni.openLocation({
  177. // latitude: latitude - 0,
  178. // longitude: longitude - 0,
  179. // scale: 15,
  180. // name: car_name,
  181. // address: address,
  182. // success: function (res) {},
  183. // })
  184. // }else if(this.cmdType=='turnOnOrOff'){
  185. // const switchType=this.contrilList.find(item => item.isTurnOn)
  186. // const pData={
  187. // car_sn:car_info.car_sn,
  188. // switch:switchType
  189. // }
  190. // const me=this
  191. // common.loading();
  192. // http.postApi(config.API_FLK_CAR_SWITCH, pData, (resp) => {
  193. // uni.hideLoading();
  194. // if (resp.data.code === 200) {
  195. // common.simpleToast(me.popText + '成功');
  196. // const activeTag=me.contrilList.map(item=>{
  197. // item.isTurnOn=(item.isTurnOn==1)?0:1
  198. // item.name=i18n.t((item.isTurnOn==1)?'关机':'开机')
  199. // return item
  200. // })
  201. // const tag=getFunctionTag().tag
  202. // setFunctionTag({activeTag,tag})
  203. // } else {
  204. // common.simpleToast(resp.data.msg);
  205. // }
  206. // });
  207. // }else{
  208. // const testArr=[
  209. // {type:'findCar',opt_type:1},
  210. // {type:'openSeatBag',opt_type:0},
  211. // {type:'openTailBox',opt_type:2},
  212. // ]
  213. // const pData = testArr.find(i=>i.type===this.cmdType)
  214. // const me=this
  215. // common.loading();
  216. // http.postApi(config.API_FLK_CAR_REMOTE_CONTROL, pData, (resp) => {
  217. // uni.hideLoading();
  218. // if (resp.data.code === 200) {
  219. // common.simpleToast(me.popText + '成功');
  220. // } else {
  221. // common.simpleToast(resp.data.msg);
  222. // }
  223. // });
  224. // }
  225. // } else {
  226. // //蓝牙是否已经连接 未连接提示去连接 已连接下发对应指令
  227. // const isBluetoothConnect = app.globalData.connectionStateChangeFunc[car_info.car_sn]
  228. // if(isBluetoothConnect){
  229. // const isTurnOn=this.contrilList.find(item => item.isTurnOn).isTurnOn==1
  230. // console.log(isTurnOn,this.cmdType,this.contrilList);
  231. // const bluetoothCommands = {
  232. // 'turnOnOrOff': isTurnOn?bluetooth.turnOnCar:bluetooth.turnOffCar,
  233. // 'findCar': bluetooth.findCarCmd,
  234. // 'openSeatBag': bluetooth.openCarSeat,
  235. // 'openTailBox': bluetooth.openCarTrunk,
  236. // 'tirePressure': bluetooth.getCarPressure
  237. // };
  238. // common.loading();
  239. // const command = bluetoothCommands[this.cmdType];
  240. // if (command) {
  241. // command('900000997', () => {
  242. // uni.hideLoading();
  243. // if(this.cmdType=='openSeatBag'||this.cmdType=='openTailBox'){
  244. // common.simpleToast('操作成功');
  245. // }
  246. // console.log(`发送${this.popText}指令结束`);
  247. // });
  248. // }
  249. // }else{
  250. // uni.showModal({
  251. // title: '提示',
  252. // content: '当前车辆处于离线,是否前往开启蓝牙配对操作车辆?',
  253. // showCancel: true,
  254. // cancelText: '取消',
  255. // confirmText: '确定',
  256. // success: function(res) {
  257. // if (res.confirm) {
  258. // me.$emit('toBluetooth')
  259. // }
  260. // },
  261. // fail: function(res) {},
  262. // complete: function(res) {},
  263. // })
  264. // }
  265. // }
  266. // this.popupControlShow=false
  267. // },
  268. // // closePopup(){
  269. // this.popupControlShow=false
  270. // },
  271. // tapOpenMore(){
  272. // // this.isShowMore=true
  273. // },
  274. // closeMore(){
  275. // this.isShowMore=false
  276. // },
  277. // navUrl(url){
  278. // // ifconsole.log(url,'sj');
  279. // },
  280. // navCarLocation(){
  281. // //前往配置更多功能
  282. // uni.navigateTo({
  283. // url:'/pages/carLocation/carLocation'
  284. // })
  285. // },
  286. }
  287. };
  288. </script>
  289. <style>
  290. @import './control.css';
  291. </style>