index.js 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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(isCarLocation=false){
  55. const car_info= uni.getStorageSync('car_info');
  56. if(this.cmdType=='batteryInfo'){
  57. uni.navigateTo({
  58. url:`/pages/batteryDetail/batteryDetail`
  59. })
  60. }else if(this.cmdType=='navigation'){
  61. const {
  62. address,
  63. latitude,
  64. longitude,
  65. car_name
  66. } =car_info
  67. uni.openLocation({
  68. latitude: latitude - 0,
  69. longitude: longitude - 0,
  70. scale: 15,
  71. name: car_name,
  72. address: address,
  73. success: function (res) {},
  74. })
  75. //获取胎压
  76. }else if(this.cmdType=='tirePressure'){
  77. this.bluetoothCmd()
  78. }else{
  79. // 判断车辆是否在线状态 true 在线调用接口 不在线提示连接蓝牙
  80. if (this.carOnline) {
  81. if(this.cmdType=='turnOnOrOff'){
  82. const switchType=this.contrilList.find(item => item.isTurnOn)
  83. const pData={
  84. car_sn:car_info.car_sn,
  85. switch:switchType
  86. }
  87. const me=this
  88. common.loading();
  89. http.postApi(config.API_FLK_CAR_SWITCH, pData, (resp) => {
  90. uni.hideLoading();
  91. if (resp.data.code === 200) {
  92. common.simpleToast(me.popText + '成功');
  93. const activeTag=me.contrilList.map(item=>{
  94. item.isTurnOn=(item.isTurnOn==1)?0:1
  95. item.name=i18n.t((item.isTurnOn==1)?'关机':'开机')
  96. return item
  97. })
  98. const tag=getFunctionTag().tag
  99. setFunctionTag({activeTag,tag})
  100. } else {
  101. common.simpleToast(resp.data.msg);
  102. }
  103. });
  104. }else{
  105. const testArr=[
  106. {type:'findCar',opt_type:1},
  107. {type:'openSeatBag',opt_type:0},
  108. {type:'openTailBox',opt_type:2},
  109. ]
  110. const pData = testArr.find(i=>i.type===this.cmdType)
  111. const me=this
  112. common.loading();
  113. http.postApi(config.API_FLK_CAR_REMOTE_CONTROL, pData, (resp) => {
  114. uni.hideLoading();
  115. if (resp.data.code === 200) {
  116. common.simpleToast(me.popText + '成功');
  117. } else {
  118. common.simpleToast(resp.data.msg);
  119. }
  120. });
  121. }
  122. } else {
  123. this.bluetoothCmd(isCarLocation)
  124. }
  125. }
  126. this.popupControlShow=false
  127. },
  128. bluetoothCmd(isCarLocation){
  129. const me=this
  130. const car_info= uni.getStorageSync('car_info');
  131. //蓝牙是否已经连接 未连接提示去连接 已连接下发对应指令
  132. const isBluetoothConnect = app.globalData.connectionStateChangeFunc[car_info.car_sn]
  133. if(isBluetoothConnect){
  134. const isTurnOn=this.contrilList.find(item => item.isTurnOn).isTurnOn==1
  135. console.log(isTurnOn,this.cmdType,this.contrilList);
  136. const bluetoothCommands = {
  137. 'turnOnOrOff': isTurnOn?bluetooth.turnOnCar:bluetooth.turnOffCar,
  138. 'findCar': bluetooth.findCarCmd,
  139. 'openSeatBag': bluetooth.openCarSeat,
  140. 'openTailBox': bluetooth.openCarTrunk,
  141. 'tirePressure': bluetooth.getCarPressure
  142. };
  143. common.loading();
  144. const command = bluetoothCommands[this.cmdType];
  145. const car_sn = uni.getStorageSync('car_info').car_sn
  146. if (command) {
  147. command(car_sn, () => {
  148. uni.hideLoading();
  149. if(this.cmdType=='openSeatBag'||this.cmdType=='openTailBox'){
  150. common.simpleToast('操作成功');
  151. }
  152. console.log(`发送${this.popText}指令结束`);
  153. });
  154. }
  155. }else{
  156. uni.showModal({
  157. title: '提示',
  158. content: '当前车辆处于离线,是否前往开启蓝牙配对操作车辆?',
  159. showCancel: true,
  160. cancelText: '取消',
  161. confirmText: '确定',
  162. success: function(res) {
  163. if (res.confirm) {
  164. if(isCarLocation){
  165. uni.switchTab({
  166. url:'/pages/index/index'
  167. })
  168. }else{
  169. me.$emit('toBluetooth')
  170. }
  171. }
  172. },
  173. fail: function(res) {},
  174. complete: function(res) {},
  175. })
  176. }
  177. }
  178. },
  179. beforeDestroy() {
  180. },
  181. };