control.vue 6.4 KB

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