index.js 5.7 KB

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