index.js 5.9 KB

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