index.js 4.9 KB

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