control.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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="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. var config = require('@/common/config.js');
  66. var common = require('@/common/common.js');
  67. var http = require('@/common/http.js');
  68. import i18n from '@/locale/index.js'
  69. import {
  70. getFunctionTag,
  71. setFunctionTag
  72. } from '@/common/storage.js';
  73. export default {
  74. props:{
  75. contrilList: {
  76. type: Array,
  77. default: () => []
  78. },
  79. },
  80. data() {
  81. return {
  82. popText:'',
  83. popupShow:false,
  84. controlType:null,//选择的车辆控制
  85. isShowMore:false,
  86. car_line:false
  87. };
  88. },
  89. mounted() {
  90. // this.contrilList = getFunctionTag().activeTag
  91. },
  92. /**
  93. * 组件的方法列表
  94. */
  95. methods: {
  96. tapOpen(e){
  97. console.log( getFunctionTag().activeTag, getFunctionTag());
  98. const {name,type} = e.currentTarget.dataset.item;
  99. this.setData({
  100. popText:name,
  101. cmdType:type,
  102. popupShow:true
  103. })
  104. },
  105. tapBlueToothCmd(){
  106. const car_info= uni.getStorageSync('car_info');
  107. // 判断车辆是否在线状态
  108. if (this.car_line) {
  109. if(this.cmdType=='batteryInfo'){
  110. uni.navigateTo({
  111. url:`/pages/batteryDetail/batteryDetail`
  112. })
  113. }else if(this.cmdType=='navigation'){
  114. const {
  115. address,
  116. latitude,
  117. longitude,
  118. car_name
  119. } =car_info
  120. uni.openLocation({
  121. latitude: latitude - 0,
  122. longitude: longitude - 0,
  123. scale: 15,
  124. name: car_name,
  125. address: address,
  126. success: function (res) {},
  127. })
  128. }else if(this.cmdType=='turnOnOrOff'){
  129. const switchType=this.contrilList.find(item => item.isTurnOn)
  130. const pData={
  131. car_sn:car_info.car_sn,
  132. switch:switchType
  133. }
  134. const me=this
  135. common.loading();
  136. http.postApi(config.API_FLK_CAR_SWITCH, pData, (resp) => {
  137. uni.hideLoading();
  138. if (resp.data.code === 200) {
  139. common.simpleToast(me.popText + '成功');
  140. const activeTag=me.contrilList.map(item=>{
  141. item.isTurnOn=(item.isTurnOn==1)?0:1
  142. item.name=i18n.t((item.isTurnOn==1)?'关机':'开机')
  143. return item
  144. })
  145. const tag=getFunctionTag().tag
  146. setFunctionTag({activeTag,tag})
  147. } else {
  148. common.simpleToast(resp.data.msg);
  149. }
  150. });
  151. }else{
  152. const testArr=[
  153. {type:'findCar',opt_type:1},
  154. {type:'openSeatBag',opt_type:0},
  155. {type:'openTailBox',opt_type:2},
  156. ]
  157. const pData = testArr.find(i=>i.type===this.cmdType)
  158. const me=this
  159. common.loading();
  160. http.postApi(config.API_FLK_CAR_REMOTE_CONTROL, pData, (resp) => {
  161. uni.hideLoading();
  162. if (resp.data.code === 200) {
  163. common.simpleToast(me.popText + '成功');
  164. } else {
  165. common.simpleToast(resp.data.msg);
  166. }
  167. });
  168. }
  169. } else {
  170. const isTurnOn=this.contrilList.find(item => item.isTurnOn).isTurnOn==1
  171. const bluetoothCommands = {
  172. 'turnOnOrOff': isTurnOn?bluetooth.turnOnCar:bluetooth.turnOffCar,
  173. 'findCar': bluetooth.findCarCmd,
  174. 'openSeatBag': bluetooth.openCarSeat,
  175. 'openTailBox': bluetooth.openCarTrunk,
  176. 'tirePressure': bluetooth.getCarPressure
  177. };
  178. const command = bluetoothCommands[this.cmdType];
  179. if (command) {
  180. command('900000997', () => {
  181. console.log(`发送${this.popText}指令结束`);
  182. });
  183. }
  184. }
  185. this.popupShow=false
  186. },
  187. closePopup(){
  188. this.popupShow=false
  189. },
  190. tapOpenMore(){
  191. // this.isShowMore=true
  192. },
  193. closeMore(){
  194. this.isShowMore=false
  195. },
  196. navUrl(url){
  197. // ifconsole.log(url,'sj');
  198. },
  199. navCarLocation(){
  200. //前往配置更多功能
  201. uni.navigateTo({
  202. url:'/pages/carLocation/carLocation'
  203. })
  204. },
  205. toMoreFunctionSet() {
  206. uni.navigateTo({
  207. url: '/pages/carFunctionSet/more'
  208. })
  209. }
  210. }
  211. };
  212. </script>
  213. <style>
  214. @import './control.css';
  215. </style>