index.js 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  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(cmd,type){
  82. const car_info= uni.getStorageSync('car_info');
  83. const isCarLocation = cmd=='more'?true: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).isTurnOn == 1) ? 0 : 1
  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. if('isLock' in item){
  123. item.isTurnOn = (item.isTurnOn == 1) ? 0 : 1
  124. item.name = i18n.t((item.isTurnOn == 1) ? '关机' : '开机')
  125. }
  126. return item
  127. })
  128. const tag = getFunctionTag().tag
  129. setFunctionTag({
  130. activeTag,
  131. tag
  132. })
  133. me.$emit('loadCarDetail',pData,car_sn)
  134. } else {
  135. common.simpleToast(resp.data.msg);
  136. }
  137. });
  138. } else {
  139. const testArr = [{
  140. type: 'findCar',
  141. opt_type: 1
  142. },
  143. {
  144. type: 'openSeatBag',
  145. opt_type: 0
  146. },
  147. {
  148. type: 'openTailBox',
  149. opt_type: 2
  150. },
  151. ]
  152. const pData = testArr.find(i => i.type === this.cmdType)
  153. const me = this
  154. common.loading();
  155. http.postApi(config.API_FLK_CAR_REMOTE_CONTROL, pData, (resp) => {
  156. uni.hideLoading();
  157. if (resp.data.code === 200) {
  158. common.simpleToast(me.popText + '成功');
  159. } else {
  160. common.simpleToast(resp.data.msg);
  161. }
  162. });
  163. }
  164. } else {
  165. this.bluetoothCmd(isCarLocation)
  166. }
  167. }
  168. this.popupControlShow = false
  169. },
  170. bluetoothCmd(isCarLocation) {
  171. const me = this
  172. const car_info = uni.getStorageSync('car_info');
  173. const app = getApp();
  174. //蓝牙是否已经连接 未连接提示去连接 已连接下发对应指令
  175. const isBluetoothConnect = app.globalData.nearLockCheck
  176. if(isBluetoothConnect){
  177. const isTurnOn=this.contrilList.find(item => item.isTurnOn).isTurnOn==1
  178. console.log(isTurnOn,this.cmdType,this.contrilList);
  179. const bluetoothCommands = {
  180. 'turnOnOrOff': isTurnOn ? bluetooth.turnOnCar : bluetooth.turnOffCar,
  181. 'findCar': bluetooth.findCarCmd,
  182. 'openSeatBag': bluetooth.openCarSeat,
  183. 'openTailBox': bluetooth.openCarTrunk,
  184. 'tirePressure': bluetooth.getCarPressure
  185. };
  186. common.loading();
  187. const command = bluetoothCommands[this.cmdType];
  188. const car_sn = uni.getStorageSync('car_info').car_sn
  189. if (command) {
  190. command(car_sn, () => {
  191. uni.hideLoading();
  192. if (this.cmdType == 'openSeatBag' || this.cmdType == 'openTailBox') {
  193. common.simpleToast('操作成功');
  194. }
  195. console.log(`发送${this.popText}指令结束`);
  196. });
  197. }
  198. } else {
  199. uni.showModal({
  200. title: '提示',
  201. content: '当前车辆处于离线,是否前往开启蓝牙配对操作车辆?',
  202. showCancel: true,
  203. cancelText: '取消',
  204. confirmText: '确定',
  205. success: function(res) {
  206. if (res.confirm) {
  207. console.log(isCarLocation,'test111');
  208. if(isCarLocation){
  209. uni.switchTab({
  210. url: '/pages/index/index'
  211. })
  212. } else {
  213. me.$emit('toBluetooth')
  214. }
  215. }
  216. },
  217. fail: function(res) {},
  218. complete: function(res) {},
  219. })
  220. }
  221. }
  222. },
  223. beforeDestroy() {},
  224. };