index.js 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  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(_,type){
  82. const car_info= uni.getStorageSync('car_info');
  83. const isCarLocation = type
  84. if(this.cmdType=='batteryInfo'){
  85. uni.navigateTo({
  86. url: `/pages/batteryDetail/batteryDetail`
  87. })
  88. } else if (this.cmdType == 'navigation') {
  89. const {
  90. address,
  91. latitude,
  92. longitude,
  93. car_name
  94. } = car_info
  95. uni.openLocation({
  96. latitude: latitude - 0,
  97. longitude: longitude - 0,
  98. scale: 15,
  99. name: car_name,
  100. address: address,
  101. success: function(res) {},
  102. })
  103. //获取胎压
  104. } else if (this.cmdType == 'tirePressure') {
  105. this.bluetoothCmd()
  106. } else {
  107. // 判断车辆是否在线状态 true 在线调用接口 不在线提示连接蓝牙
  108. if (this.carOnline) {
  109. if (this.cmdType == 'turnOnOrOff') {
  110. const switchType = this.contrilList.find(item => item.isTurnOn)
  111. const pData = {
  112. car_sn: car_info.car_sn,
  113. switch: switchType
  114. }
  115. const me = this
  116. common.loading();
  117. http.postApi(config.API_FLK_CAR_SWITCH, pData, (resp) => {
  118. uni.hideLoading();
  119. if (resp.data.code === 200) {
  120. common.simpleToast(me.popText + '成功');
  121. const activeTag = me.contrilList.map(item => {
  122. item.isTurnOn = (item.isTurnOn == 1) ? 0 : 1
  123. item.name = i18n.t((item.isTurnOn == 1) ? '关机' : '开机')
  124. return item
  125. })
  126. const tag = getFunctionTag().tag
  127. setFunctionTag({
  128. activeTag,
  129. tag
  130. })
  131. } else {
  132. common.simpleToast(resp.data.msg);
  133. }
  134. });
  135. } else {
  136. const testArr = [{
  137. type: 'findCar',
  138. opt_type: 1
  139. },
  140. {
  141. type: 'openSeatBag',
  142. opt_type: 0
  143. },
  144. {
  145. type: 'openTailBox',
  146. opt_type: 2
  147. },
  148. ]
  149. const pData = testArr.find(i => i.type === this.cmdType)
  150. const me = this
  151. common.loading();
  152. http.postApi(config.API_FLK_CAR_REMOTE_CONTROL, pData, (resp) => {
  153. uni.hideLoading();
  154. if (resp.data.code === 200) {
  155. common.simpleToast(me.popText + '成功');
  156. } else {
  157. common.simpleToast(resp.data.msg);
  158. }
  159. });
  160. }
  161. } else {
  162. this.bluetoothCmd(isCarLocation)
  163. }
  164. }
  165. this.popupControlShow = false
  166. },
  167. bluetoothCmd(isCarLocation) {
  168. const me = this
  169. const car_info = uni.getStorageSync('car_info');
  170. //蓝牙是否已经连接 未连接提示去连接 已连接下发对应指令
  171. const isBluetoothConnect = app.globalData.nearLockCheck
  172. if(isBluetoothConnect){
  173. const isTurnOn=this.contrilList.find(item => item.isTurnOn).isTurnOn==1
  174. console.log(isTurnOn,this.cmdType,this.contrilList);
  175. const bluetoothCommands = {
  176. 'turnOnOrOff': isTurnOn ? bluetooth.turnOnCar : bluetooth.turnOffCar,
  177. 'findCar': bluetooth.findCarCmd,
  178. 'openSeatBag': bluetooth.openCarSeat,
  179. 'openTailBox': bluetooth.openCarTrunk,
  180. 'tirePressure': bluetooth.getCarPressure
  181. };
  182. common.loading();
  183. const command = bluetoothCommands[this.cmdType];
  184. const car_sn = uni.getStorageSync('car_info').car_sn
  185. if (command) {
  186. command(car_sn, () => {
  187. uni.hideLoading();
  188. if (this.cmdType == 'openSeatBag' || this.cmdType == 'openTailBox') {
  189. common.simpleToast('操作成功');
  190. }
  191. console.log(`发送${this.popText}指令结束`);
  192. });
  193. }
  194. } else {
  195. uni.showModal({
  196. title: '提示',
  197. content: '当前车辆处于离线,是否前往开启蓝牙配对操作车辆?',
  198. showCancel: true,
  199. cancelText: '取消',
  200. confirmText: '确定',
  201. success: function(res) {
  202. if (res.confirm) {
  203. console.log(isCarLocation,'test111');
  204. if(isCarLocation){
  205. uni.switchTab({
  206. url: '/pages/index/index'
  207. })
  208. } else {
  209. me.$emit('toBluetooth')
  210. }
  211. }
  212. },
  213. fail: function(res) {},
  214. complete: function(res) {},
  215. })
  216. }
  217. }
  218. },
  219. beforeDestroy() {},
  220. };