index.js 5.4 KB

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