index.js 5.2 KB

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