|
@@ -129,7 +129,7 @@
|
|
|
//#endif
|
|
|
bluetooth.initBluetooth()
|
|
|
this.bluetoothClose()
|
|
|
- this.loadBatteryInfo()
|
|
|
+ // this.loadBatteryInfo()
|
|
|
//this.loadExchangeInfo()
|
|
|
},
|
|
|
/**
|
|
@@ -205,8 +205,6 @@
|
|
|
let item = this.listData.boxList[index];
|
|
|
if(item.tag_info) boxBattery.push(item.tag_info)
|
|
|
}
|
|
|
- console.log(userBattery)
|
|
|
- console.log(boxBattery)
|
|
|
for (let index = 0; index < userBattery.length; index++) {
|
|
|
let item = userBattery[index];
|
|
|
for (var i = 0; i < boxBattery.length; i++) {
|
|
@@ -218,10 +216,21 @@
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- console.log(tagCode)
|
|
|
return tagCode
|
|
|
},
|
|
|
+ loadIsLogin() {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages/loginRegister/login',
|
|
|
+ })
|
|
|
+ },
|
|
|
async sacnBtn() {
|
|
|
+ const user_token = storage.getUserToken()
|
|
|
+ if (!user_token) {
|
|
|
+ this.loadIsLogin()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ await this.loadBatteryInfo()
|
|
|
+
|
|
|
if(this.listData.can_exchange_num == 0){
|
|
|
this.isModelCenter = true
|
|
|
this.packType = 2
|
|
@@ -579,9 +588,7 @@
|
|
|
},
|
|
|
|
|
|
async loadBatteryInfo() {
|
|
|
- console.log("加载电池信息")
|
|
|
const me = this
|
|
|
- console.log(2222);
|
|
|
|
|
|
let resp = await http.postApi(config.API_CAR_DEVICE_LIST, {})
|
|
|
if (resp.data.code === 200) {
|