index.js 5.7 KB

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