control.vue 10.0 KB

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