index.js 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. // mixins/countdownMixin.js
  2. var bluetooth = require('@/common/bluetooth.js');
  3. import {getFunctionTag,setFunctionTag} from '@/common/storage.js';
  4. var app = getApp();
  5. var config = require('@/common/config.js');
  6. var common = require('@/common/common.js');
  7. var http = require('@/common/http.js');
  8. import i18n from '@/locale/index.js'
  9. export default {
  10. data() {
  11. return {
  12. carOnline: false,
  13. statusBarHeight:0,
  14. popText:'',
  15. cmdType:'',
  16. popupControlShow:false
  17. };
  18. },
  19. mounted(){
  20. this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight || 0
  21. },
  22. methods: {
  23. tapOpenControl(e){
  24. console.log(111);
  25. const _carOnline=uni.getStorageSync('car_info').online!=0 //在线
  26. console.log(this.popupControlShow);
  27. const {name,type}=e
  28. this.setData({
  29. carOnline:_carOnline,
  30. popText:name,
  31. cmdType:type,
  32. popupControlShow:true
  33. })
  34. console.log(this.popupControlShow);
  35. },
  36. changClick(tab){
  37. const typeArr=['tirePressure','batteryInfo','navigation']
  38. const isOther=typeArr.findIndex(t => t === tab.type)!==-1
  39. console.log('isOther',isOther);
  40. if(isOther){
  41. const {name,type}=tab
  42. this.setData({
  43. popText:name,
  44. cmdType:type,
  45. })
  46. this.tapBlueToothCmd()
  47. }else{
  48. this.tapOpenControl(tab)
  49. }
  50. },
  51. closePopup(){
  52. this.popupControlShow=false
  53. },
  54. tapBlueToothCmd(_,type){
  55. const car_info= uni.getStorageSync('car_info');
  56. const isCarLocation = type
  57. if(this.cmdType=='batteryInfo'){
  58. uni.navigateTo({
  59. url:`/pages/batteryDetail/batteryDetail`
  60. })
  61. }else if(this.cmdType=='navigation'){
  62. const {
  63. address,
  64. latitude,
  65. longitude,
  66. car_name
  67. } =car_info
  68. uni.openLocation({
  69. latitude: latitude - 0,
  70. longitude: longitude - 0,
  71. scale: 15,
  72. name: car_name,
  73. address: address,
  74. success: function (res) {},
  75. })
  76. //获取胎压
  77. }else if(this.cmdType=='tirePressure'){
  78. this.bluetoothCmd()
  79. }else{
  80. // 判断车辆是否在线状态 true 在线调用接口 不在线提示连接蓝牙
  81. if (this.carOnline) {
  82. if(this.cmdType=='turnOnOrOff'){
  83. const switchType=this.contrilList.find(item => item.isTurnOn)
  84. const pData={
  85. car_sn:car_info.car_sn,
  86. switch:switchType
  87. }
  88. const me=this
  89. common.loading();
  90. http.postApi(config.API_FLK_CAR_SWITCH, pData, (resp) => {
  91. uni.hideLoading();
  92. if (resp.data.code === 200) {
  93. common.simpleToast(me.popText + '成功');
  94. const activeTag=me.contrilList.map(item=>{
  95. item.isTurnOn=(item.isTurnOn==1)?0:1
  96. item.name=i18n.t((item.isTurnOn==1)?'关机':'开机')
  97. return item
  98. })
  99. const tag=getFunctionTag().tag
  100. setFunctionTag({activeTag,tag})
  101. } else {
  102. common.simpleToast(resp.data.msg);
  103. }
  104. });
  105. }else{
  106. const testArr=[
  107. {type:'findCar',opt_type:1},
  108. {type:'openSeatBag',opt_type:0},
  109. {type:'openTailBox',opt_type:2},
  110. ]
  111. const pData = testArr.find(i=>i.type===this.cmdType)
  112. const me=this
  113. common.loading();
  114. http.postApi(config.API_FLK_CAR_REMOTE_CONTROL, pData, (resp) => {
  115. uni.hideLoading();
  116. if (resp.data.code === 200) {
  117. common.simpleToast(me.popText + '成功');
  118. } else {
  119. common.simpleToast(resp.data.msg);
  120. }
  121. });
  122. }
  123. } else {
  124. this.bluetoothCmd(isCarLocation)
  125. }
  126. }
  127. this.popupControlShow=false
  128. },
  129. bluetoothCmd(isCarLocation){
  130. const me=this
  131. const car_info= uni.getStorageSync('car_info');
  132. //蓝牙是否已经连接 未连接提示去连接 已连接下发对应指令
  133. const isBluetoothConnect = app.globalData.nearLockCheck
  134. if(isBluetoothConnect){
  135. const isTurnOn=this.contrilList.find(item => item.isTurnOn).isTurnOn==1
  136. console.log(isTurnOn,this.cmdType,this.contrilList);
  137. const bluetoothCommands = {
  138. 'turnOnOrOff': isTurnOn?bluetooth.turnOnCar:bluetooth.turnOffCar,
  139. 'findCar': bluetooth.findCarCmd,
  140. 'openSeatBag': bluetooth.openCarSeat,
  141. 'openTailBox': bluetooth.openCarTrunk,
  142. 'tirePressure': bluetooth.getCarPressure
  143. };
  144. common.loading();
  145. const command = bluetoothCommands[this.cmdType];
  146. const car_sn = uni.getStorageSync('car_info').car_sn
  147. if (command) {
  148. command(car_sn, () => {
  149. uni.hideLoading();
  150. if(this.cmdType=='openSeatBag'||this.cmdType=='openTailBox'){
  151. common.simpleToast('操作成功');
  152. }
  153. console.log(`发送${this.popText}指令结束`);
  154. });
  155. }
  156. }else{
  157. uni.showModal({
  158. title: '提示',
  159. content: '当前车辆处于离线,是否前往开启蓝牙配对操作车辆?',
  160. showCancel: true,
  161. cancelText: '取消',
  162. confirmText: '确定',
  163. success: function(res) {
  164. if (res.confirm) {
  165. console.log(isCarLocation,'test111');
  166. if(isCarLocation){
  167. uni.switchTab({
  168. url:'/pages/index/index'
  169. })
  170. }else{
  171. me.$emit('toBluetooth')
  172. }
  173. }
  174. },
  175. fail: function(res) {},
  176. complete: function(res) {},
  177. })
  178. }
  179. }
  180. },
  181. beforeDestroy() {
  182. },
  183. };