index.js 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. // mixins/countdownMixin.js
  2. var bluetooth = require('@/common/bluetooth.js');
  3. import {getFunctionTag,setFunctionTag,getUserCurrentLocation} from '@/common/storage.js';
  4. var config = require('@/common/config.js');
  5. var common = require('@/common/common.js');
  6. var http = require('@/common/http.js');
  7. import i18n from '@/locale/index.js'
  8. export default {
  9. data() {
  10. return {
  11. scrollTop: 0,
  12. carOnline: false,
  13. statusBarHeight:0,
  14. popText:'',
  15. cmdType:'',
  16. myLocation:{},
  17. popupControlShow:false
  18. };
  19. },
  20. onLoad(){
  21. this.myLocation = getUserCurrentLocation()
  22. },
  23. mounted(){
  24. this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight || 0
  25. },
  26. methods: {
  27. async locationMiXin(){
  28. this.myLocation = await this.$location()
  29. },
  30. tapOpenControl(e){
  31. console.log(111);
  32. const _carOnline=uni.getStorageSync('car_info').online!=0 //在线
  33. console.log(this.popupControlShow);
  34. const {name,type}=e
  35. this.setData({
  36. carOnline:_carOnline,
  37. popText:name,
  38. cmdType:type,
  39. popupControlShow:true
  40. })
  41. console.log(this.popupControlShow);
  42. },
  43. changClick(tab){
  44. const typeArr=['tirePressure','batteryInfo','navigation']
  45. const isOther=typeArr.findIndex(t => t === tab.type)!==-1
  46. console.log('isOther',isOther);
  47. if(isOther){
  48. const {name,type}=tab
  49. this.setData({
  50. popText:name,
  51. cmdType:type,
  52. })
  53. this.tapBlueToothCmd()
  54. }else{
  55. this.tapOpenControl(tab)
  56. }
  57. },
  58. closePopup(){
  59. this.popupControlShow=false
  60. },
  61. tapBlueToothCmd(cmd,type){
  62. const car_info= uni.getStorageSync('car_info');
  63. const isCarLocation = (cmd=='more')?true:type
  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).isTurnOn == 1) ? 0 : 1
  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. if('isLock' in item){
  103. item.isTurnOn = (item.isTurnOn == 1) ? 0 : 1
  104. item.name = i18n.t((item.isTurnOn == 1) ? '关机' : '开机')
  105. }
  106. return item
  107. })
  108. const tag = getFunctionTag().tag
  109. setFunctionTag({
  110. activeTag,
  111. tag
  112. })
  113. me.$emit('loadCarDetail',pData,car_sn)
  114. } else {
  115. common.simpleToast(resp.data.msg);
  116. }
  117. });
  118. }else{
  119. const testArr=[
  120. {type:'findCar',opt_type:1},
  121. {type:'openSeatBag',opt_type:0},
  122. {type:'openTailBox',opt_type:2},
  123. ]
  124. const pData = testArr.find(i=>i.type===this.cmdType)
  125. const me=this
  126. common.loading();
  127. http.postApi(config.API_FLK_CAR_REMOTE_CONTROL, pData, (resp) => {
  128. uni.hideLoading();
  129. if (resp.data.code === 200) {
  130. common.simpleToast(me.popText + '成功');
  131. } else {
  132. common.simpleToast(resp.data.msg);
  133. }
  134. });
  135. }
  136. } else {
  137. this.bluetoothCmd(isCarLocation)
  138. }
  139. }
  140. this.popupControlShow=false
  141. },
  142. bluetoothCmd(isCarLocation){
  143. const me=this
  144. const car_info= uni.getStorageSync('car_info');
  145. const app = getApp();
  146. //蓝牙是否已经连接 未连接提示去连接 已连接下发对应指令
  147. const isBluetoothConnect = app.globalData.nearLockCheck
  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. };