index.js 6.3 KB

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