control.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500
  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" >{{ $t('滑动启动') }}</view>
  17. </view> -->
  18. <custom-switch @changEnd='changEnd' :width="'400rpx'"
  19. :height="'96rpx'" :modelValue="switchValue" :fetchData="loadData"></custom-switch>
  20. <!-- <custom-switch :defaultPosition="'right'" :width="'400rpx'"
  21. :height="'96rpx'" v-model="switchValue" :fetchData="loadData"></custom-switch> -->
  22. <view v-if="authority_list.indexOf(5) == -1" @tap="navToInputPages" class="car-change-battery flex-row">
  23. <view class="car-change-btn"><image style="width: 80rpx;height: 80rpx;" src="https://qiniu.bms16.com/FgvnT-msLbL5RHjl6fvNlM0kab5N" mode=""></image></view>
  24. <view class="car-change-text">{{ $t('车辆换电') }}</view>
  25. </view>
  26. </view>
  27. <view v-if="popupControlShow" class="show-modal">
  28. <view class="modal-info">
  29. <view class="popup-title">{{($t(popText)==$t('开机'))?$t('开启车辆'):($t(popText)==$t('关机')?$t('关闭车辆'):$t(popText))}}</view>
  30. <view class="popup-content">{{$t("您确认")+(($t(popText)==$t('开机'))?$t('开启车辆'):($t(popText)==$t('关机')?$t('关闭车辆'):$t(popText)))+$t("吗")}}</view>
  31. <view class="flex-row modal-footer">
  32. <view class="show-btn cencel-btn-pop" @tap="closePopup">{{$t("取消")}}</view>
  33. <view class="show-btn ok-btn-pop" @tap="tapBlueToothCmd">{{$t("确定")}}</view>
  34. </view>
  35. </view>
  36. </view>
  37. <!-- <u-popup v-model="popupControlShow" mode="center" border-radius="30" height="30%" length="60%">
  38. <view class="popup-title">{{ $t('开启车辆') }}</view>
  39. <view class="popup-content">{{ $t('确定打开') }}</view>
  40. <view class="flex-row">
  41. <view class="sure-btn cencel-btn" @tap="closePopup">{{ $t('取消') }}</view>
  42. <view class="sure-btn ok-btn" >{{ $t('确定') }}</view>
  43. </view>
  44. </u-popup> -->
  45. <!-- <view v-if="isShowMore" class="show-more">
  46. <view class="more-info">
  47. <view class="flex-row flex-between model-title">
  48. <view>{{$t("{{ $t('更多功能') }}")}}</view>
  49. <view>
  50. <image style="width: 32rpx;height: 32rpx;" @tap="isShowMore = false"
  51. src="https://qiniu.bms16.com/FtoTEHOJiUf_gjPCJGGHMsAtHI5M" />
  52. </view>
  53. </view>
  54. <view style="height: 300rpx;">
  55. <view data-url="test" @tap="navUrl" class="more-item flex-row">
  56. <img class="more-img" src="https://qiniu.bms16.com/FgxiD-W96FGvgyLI_kXUfWVDYLQ9" alt="">
  57. <text>{{$t("{{ $t('胎压') }}")}}</text>
  58. </view>
  59. <view class="more-item flex-row">
  60. <img class="more-img" src="https://qiniu.bms16.com/FgxiD-W96FGvgyLI_kXUfWVDYLQ9" alt="">
  61. <text>{{$t("{{ $t('电池信息') }}")}}</text>
  62. </view>
  63. <view @tap="navCarLocation" class="more-item flex-row">
  64. <img class="more-img" src="https://qiniu.bms16.com/FgxiD-W96FGvgyLI_kXUfWVDYLQ9" alt="">
  65. <text>{{$t("{{ $t('导航') }}")}}</text>
  66. </view>
  67. </view>
  68. <view class="lift-btn-view">
  69. <view class="lift-btn">{{$t("{{ $t('解除绑定') }}")}}</view>
  70. </view>
  71. </view>
  72. </view>
  73. -->
  74. </view>
  75. </template>
  76. <script>
  77. var bluetooth = require('@/common/bluetooth.js');
  78. var config = require('@/common/config.js');
  79. var common = require('@/common/common.js');
  80. var http = require('@/common/http.js');
  81. import CustomSwitch from '@/component/customSwitch.vue'; // 引入组件
  82. import controlMixin from '@/mixin/index';
  83. import i18n from '@/locale/index.js'
  84. import {
  85. getFunctionTag,
  86. setFunctionTag
  87. } from '@/common/storage.js';
  88. export default {
  89. mixins: [controlMixin],
  90. components:{CustomSwitch},
  91. props:{
  92. contrilList: {
  93. type: Array,
  94. default: () => []
  95. },
  96. online: {
  97. type: Boolean,
  98. default: false
  99. },
  100. },
  101. data() {
  102. return {
  103. // popText:'',
  104. // popupControlShow:false,
  105. // controlType:null,//选择的车辆控制
  106. switchValue: {state:false,time:0},
  107. isShowMore:false,
  108. car_line:false,
  109. authority_list:[]
  110. // startX: 0, // 滑块开始滑动的初始位置
  111. // moveX: 0, // 滑块滑动的距离
  112. // unlocked: false, // 是否解锁成功的标志
  113. };
  114. },
  115. computed: {
  116. // 计算滑块的样式
  117. sliderStyle() {
  118. return {
  119. transform: `translateX(${this.moveX}px)`
  120. };
  121. },
  122. },
  123. mounted() {
  124. // this.contrilList = getFunctionTag().activeTag
  125. // setTimeout(()=>{
  126. this.authority_list=uni.getStorageSync('car_info').authority_list
  127. this.switchValue.state=uni.getStorageSync('car_info').acc_state==1
  128. // },50)
  129. // setTimeout(()=>{
  130. // console.log(this.switchValue)
  131. // },5000)
  132. },
  133. /**
  134. * 组件的方法列表
  135. */
  136. methods: {
  137. changEnd(e){
  138. this.switchValue = JSON.parse(e)
  139. if(this.switchValue.type==1){
  140. this.callApiThreeTimes()
  141. }
  142. console.log(this.switchValue)
  143. },
  144. callApiThreeTimes() {
  145. const apiCall = (attempt) => {
  146. const car_sn= uni.getStorageSync('car_info').car_sn
  147. this.$emit('loadCarDetail',car_sn)
  148. };
  149. apiCall(1);
  150. // setTimeout(() => apiCall(2), 200);
  151. // setTimeout(() => apiCall(3), 200);
  152. },
  153. tapOpen(e){
  154. const item = e.currentTarget.dataset.item;
  155. this.changClick(item)
  156. },
  157. toMoreFunctionSet() {
  158. uni.navigateTo({
  159. url: '/pages/carFunctionSet/more?online='+this.online
  160. })
  161. },
  162. trunOn(type){
  163. if (this.carOnline) {
  164. //开机1 关机0
  165. const car_sn= uni.getStorageSync('car_info').car_sn;
  166. const pData = {
  167. car_sn,
  168. switch: switchType
  169. }
  170. const me=this
  171. common.loading();
  172. http.postApi(config.API_FLK_CAR_SWITCH, pData, (resp) => {
  173. uni.hideLoading();
  174. if (resp.data.code === 200) {
  175. common.simpleToast(me.popText + this.$t('成功'));
  176. const activeTag = me.contrilList.map(item => {
  177. if('isLock' in item){
  178. item.isTurnOn = (item.isTurnOn == 1) ? 0 : 1
  179. item.name = i18n.t((item.isTurnOn == 1) ? this.$t('关机') : this.$t('开机'))
  180. }
  181. return item
  182. })
  183. const tag = getFunctionTag().tag
  184. setFunctionTag({
  185. activeTag,
  186. tag
  187. })
  188. me.$emit('loadCarDetail',pData,car_sn)
  189. } else {
  190. common.simpleToast(resp.data.msg);
  191. }
  192. });
  193. }else{
  194. //车辆离线
  195. const car_sn= uni.getStorageSync('car_info').car_sn;
  196. common.loading();
  197. if (type==1) {
  198. bluetooth.turnOnCar(car_sn, () => {
  199. uni.hideLoading();
  200. });
  201. }else{
  202. bluetooth.turnOffCar(car_sn, () => {
  203. uni.hideLoading();
  204. });
  205. }
  206. }
  207. },
  208. async navToInputPages() {
  209. const me = this
  210. const exchange_need_package=uni.getStorageSync('car_info').exchange_need_package;
  211. if(exchange_need_package==0){
  212. uni.scanCode({
  213. scanType:['qrCode'],
  214. success(res) {
  215. me.loadGeneralQRData(res.result)
  216. },
  217. fail() {
  218. me.$msg(this.$t('扫码失败,请重新扫码'))
  219. }
  220. })
  221. }else if(exchange_need_package==1){
  222. uni.showModal({
  223. title: this.$t('温馨提示'),
  224. content: this.$t('您还未购买换电套餐,是否前往购买换电套餐?'),
  225. showCancel: true,
  226. cancelText: this.$t('取消'),
  227. confirmText: this.$t('前往购买'),
  228. success: function(res) {
  229. if (res.confirm) {
  230. uni.navigateTo({
  231. url: `/pages/batteryPackage/batteryPackage`
  232. })
  233. }
  234. },
  235. fail: function(res) {},
  236. complete: function(res) {},
  237. })
  238. }else if(exchange_need_package==-1){
  239. this.$msg(this.$t('当前车辆暂未绑定电池'))
  240. }
  241. },
  242. loadGeneralQRData(options) {
  243. console.log(options)
  244. let objOpt = this.$paramsObj(options)
  245. if (objOpt.d) {
  246. uni.navigateTo({
  247. url: `/pages/cabinetDetail/cabinetDetail?dev_id=${objOpt.d}`,
  248. })
  249. return
  250. } else {
  251. this.$msg(this.$t('请扫描机柜二维码'))
  252. return
  253. }
  254. },
  255. async loadData(state) {
  256. // console.log(state,'state');
  257. return new Promise((resolve,reject) => {
  258. if (uni.getStorageSync('car_info').online==1) {
  259. //开机1 关机0
  260. const car_sn= uni.getStorageSync('car_info').car_sn;
  261. const switchType= state?0:1;
  262. const pData = {
  263. car_sn,
  264. switch: switchType
  265. }
  266. const me=this
  267. http.postApi(config.API_FLK_CAR_SWITCH, pData, (resp) => {
  268. if (resp.data.code === 200) {
  269. //const textStr = (this.switchValue==0)?this.$t('开机'):this.$t('关机')
  270. // const activeTag = me.contrilList.map(item => {
  271. // if('isLock' in item){
  272. // item.isTurnOn = (item.isTurnOn == 1) ? 0 : 1
  273. // item.name = i18n.t((item.isTurnOn == 1) ? this.$t('关机') : this.$t('开机'))
  274. // }
  275. // return item
  276. // })
  277. // const tag = getFunctionTag().tag
  278. // setFunctionTag({
  279. // activeTag,
  280. // tag
  281. // })
  282. setTimeout(() => {
  283. resolve(JSON.stringify({
  284. state:!state,
  285. type:1,
  286. time: Math.floor(Date.now() / 1000)
  287. }))
  288. console.log(132);
  289. // me.switchValue = JSON.stringify({
  290. // state:!state,
  291. // time: Math.floor(Date.now() / 1000)
  292. // })
  293. }, 1000)
  294. } else {
  295. setTimeout(() => {
  296. resolve(JSON.stringify({
  297. state:state,
  298. type:2,
  299. time:Math.floor(Date.now() / 1000)
  300. }))
  301. //this.switchValue=!this.switchValue
  302. // this.switchValue = JSON.stringify({
  303. // state:this.switchValue.state,
  304. // time:Math.floor(Date.now() / 1000)
  305. // })
  306. // common.simpleToast(resp.data.msg);
  307. }, 1000)
  308. //setTimeout(resolve, 1000);
  309. }
  310. });
  311. }else{
  312. //车辆离线
  313. const car_sn= uni.getStorageSync('car_info').car_sn;
  314. const switchType= state;
  315. common.loading();
  316. const app=getApp()
  317. //调用蓝牙连接
  318. // if()
  319. if (!switchType) {
  320. bluetooth.turnOnCar(car_sn, () => {
  321. uni.hideLoading();
  322. });
  323. }else{
  324. bluetooth.turnOffCar(car_sn, () => {
  325. uni.hideLoading();
  326. });
  327. }
  328. }
  329. // console.log(me.switchValue,'this.switchValue');
  330. // // this.trunOn()
  331. // setTimeout(resolve, 1000); // 模拟 5 秒请求时间
  332. });
  333. }
  334. // tapOpen(e){
  335. // this.carOnline=this.online
  336. // console.log( getFunctionTag().activeTag, getFunctionTag());
  337. // const {name,type} = e.currentTarget.dataset.item;
  338. // this.setData({
  339. // popText:name,
  340. // cmdType:type,
  341. // popupControlShow:true
  342. // })
  343. // },
  344. // tapBlueToothCmd(){
  345. // const car_info= uni.getStorageSync('car_info');
  346. // const me=this
  347. // // 判断车辆是否在线状态 true 在线调用接口 不在线提示连接蓝牙
  348. // if (this.online) {
  349. // if(this.cmdType=='batteryInfo'){
  350. // uni.navigateTo({
  351. // url:`/pages/batteryDetail/batteryDetail`
  352. // })
  353. // }else if(this.cmdType=='navigation'){
  354. // const {
  355. // address,
  356. // latitude,
  357. // longitude,
  358. // car_name
  359. // } =car_info
  360. // uni.openLocation({
  361. // latitude: latitude - 0,
  362. // longitude: longitude - 0,
  363. // scale: 15,
  364. // name: car_name,
  365. // address: address,
  366. // success: function (res) {},
  367. // })
  368. // }else if(this.cmdType=='turnOnOrOff'){
  369. // const switchType=this.contrilList.find(item => item.isTurnOn)
  370. // const pData={
  371. // car_sn:car_info.car_sn,
  372. // switch:switchType
  373. // }
  374. // const me=this
  375. // common.loading();
  376. // http.postApi(config.API_FLK_CAR_SWITCH, pData, (resp) => {
  377. // uni.hideLoading();
  378. // if (resp.data.code === 200) {
  379. // common.simpleToast(me.popText + this.$t('成功'));
  380. // const activeTag=me.contrilList.map(item=>{
  381. // item.isTurnOn=(item.isTurnOn==1)?0:1
  382. // item.name=i18n.t((item.isTurnOn==1)?this.$t('关机'):this.$t('开机'))
  383. // return item
  384. // })
  385. // const tag=getFunctionTag().tag
  386. // setFunctionTag({activeTag,tag})
  387. // } else {
  388. // common.simpleToast(resp.data.msg);
  389. // }
  390. // });
  391. // }else{
  392. // const testArr=[
  393. // {type:'findCar',opt_type:1},
  394. // {type:'openSeatBag',opt_type:0},
  395. // {type:'openTailBox',opt_type:2},
  396. // ]
  397. // const pData = testArr.find(i=>i.type===this.cmdType)
  398. // const me=this
  399. // common.loading();
  400. // http.postApi(config.API_FLK_CAR_REMOTE_CONTROL, pData, (resp) => {
  401. // uni.hideLoading();
  402. // if (resp.data.code === 200) {
  403. // common.simpleToast(me.popText + this.$t('成功'));
  404. // } else {
  405. // common.simpleToast(resp.data.msg);
  406. // }
  407. // });
  408. // }
  409. // } else {
  410. // //蓝牙是否已经连接 未连接提示去连接 已连接下发对应指令
  411. // const isBluetoothConnect = app.globalData.connectionStateChangeFunc[car_info.car_sn]
  412. // if(isBluetoothConnect){
  413. // const isTurnOn=this.contrilList.find(item => item.isTurnOn).isTurnOn==1
  414. // console.log(isTurnOn,this.cmdType,this.contrilList);
  415. // const bluetoothCommands = {
  416. // 'turnOnOrOff': isTurnOn?bluetooth.turnOnCar:bluetooth.turnOffCar,
  417. // 'findCar': bluetooth.findCarCmd,
  418. // 'openSeatBag': bluetooth.openCarSeat,
  419. // 'openTailBox': bluetooth.openCarTrunk,
  420. // 'tirePressure': bluetooth.getCarPressure
  421. // };
  422. // common.loading();
  423. // const command = bluetoothCommands[this.cmdType];
  424. // if (command) {
  425. // command('900000997', () => {
  426. // uni.hideLoading();
  427. // if(this.cmdType=='openSeatBag'||this.cmdType=='openTailBox'){
  428. // common.simpleToast(this.$t('操作成功'));
  429. // }
  430. // console.log(`发送${this.popText}指令结束`);
  431. // });
  432. // }
  433. // }else{
  434. // uni.showModal({
  435. // title: this.$t('提示'),
  436. // content: this.$t('当前车辆处于离线,是否前往开启蓝牙配对操作车辆?'),
  437. // showCancel: true,
  438. // cancelText: this.$t('取消'),
  439. // confirmText: this.$t('确定'),
  440. // success: function(res) {
  441. // if (res.confirm) {
  442. // me.$emit('toBluetooth')
  443. // }
  444. // },
  445. // fail: function(res) {},
  446. // complete: function(res) {},
  447. // })
  448. // }
  449. // }
  450. // this.popupControlShow=false
  451. // },
  452. // // closePopup(){
  453. // this.popupControlShow=false
  454. // },
  455. // tapOpenMore(){
  456. // // this.isShowMore=true
  457. // },
  458. // closeMore(){
  459. // this.isShowMore=false
  460. // },
  461. // navUrl(url){
  462. // // ifconsole.log(url,'sj');
  463. // },
  464. // navCarLocation(){
  465. // //前往配置更多功能
  466. // uni.navigateTo({
  467. // url:'/pages/carLocation/carLocation'
  468. // })
  469. // },
  470. }
  471. };
  472. </script>
  473. <style>
  474. @import './control.css';
  475. </style>