123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071 |
- <template>
- <view class="container">
- <view class="man-body">
- <view v-if="selectedTabIndex == 1" class="box-body">
- <view class="section-head">
- <view class="fresh-area flex-row flex-between">
- <view>
- <text>{{$t('更新时间') + ':'}}</text>
- <text
- class="fresh-time">{{ tools.formatTime(btBmsInfo ? btBmsInfo.time : bmsInfo.time) }}</text>
- </view>
- <view @tap="refreshData">
- <image class="fresh-icon" src="/static/resource/images/fr-icon.png"></image>
- <text>{{$t('刷新')}}</text>
- </view>
- </view>
- <view class="battery-model">
- <!-- <image class="battery-model-icon" src="/resource/images/b3.png"></image> -->
- <com-ele-quantity
- :quantity="tools.toFixed(btBmsInfo ? btBmsInfo.state.soc : bmsInfo.state.soc, 2)"></com-ele-quantity>
- <text></text>
- </view>
- </view>
- <view v-if="btBmsInfo ? btBmsInfo.state_v2 : bmsInfo.state_v2">
- <view class="section-body"
- v-for="(item, index) in btBmsInfo ? btBmsInfo.state_v2 : bmsInfo.state_v2" :key="index">
- <view v-if="item.class" class="param-item flex-row flex-between">
- <view class="param">{{ item.class }}</view>
- <view @tap="refreshData">
- <image class="fresh-icon" src="/static/resource/images/fr-icon.png"></image>
- <text>{{$t('刷新')}}</text>
- </view>
- </view>
- <view class="param-item flex-row flex-between" v-for="(varx,i) in (tools.filterHalf(item.vars))"
- :key="i">
- <view class="param">
- {{ item.vars[i * 2].label }}:
- <text class="param-value">{{ item.vars[i * 2].value }}</text>
- </view>
- <view v-if="item.vars.length > i * 2 + 1" class="param">
- {{ item.vars[i * 2 + 1].label }}:
- <text class="param-value">{{ item.vars[i * 2 + 1].value }}</text>
- </view>
- </view>
- </view>
- </view>
- <view v-else class="section-body">
- <view class="param-item flex-row flex-between">
- <view class="param">
- {{$t('电池数量') + ':'}}
- <text class="param-value">{{ btBmsInfo ? btBmsInfo.state.count : bmsInfo.state.count + $t('串')}}</text>
- </view>
- <view class="param">
- {{$t('剩余容量') + ':'}}
- <text
- class="param-value">{{ tools.toFixed(btBmsInfo ? btBmsInfo.state.socAH : bmsInfo.state.socAH, 2) }}AH</text>
- </view>
- </view>
- <view class="param-item flex-row flex-between">
- <view class="param">
- {{$t('总电压') + ':'}}
- <text
- class="param-value">{{ tools.toFixed(btBmsInfo ? btBmsInfo.state.voltageAll : bmsInfo.state.voltageAll, 3) }}V</text>
- </view>
- <view class="param">
- {{$t('电流数据') + ':'}}
- <text
- class="param-value">{{ tools.toFixed(btBmsInfo ? btBmsInfo.state.current : bmsInfo.state.current, 3) }}A</text>
- </view>
- </view>
- <view class="param-item flex-row flex-between">
- <view class="param">
- {{$t('最低电压') + ':'}}
- <text
- class="param-value">{{ tools.toFixed(btBmsInfo ? btBmsInfo.state.minVoltage : bmsInfo.state.minVoltage, 3) }}V</text>
- </view>
- <view class="param">
- {{$t('最高电压') + ':'}}
- <text
- class="param-value">{{ tools.toFixed(btBmsInfo ? btBmsInfo.state.maxVoltage : bmsInfo.state.maxVoltage, 3) }}V</text>
- </view>
- </view>
- <view class="param-item flex-row flex-between">
- <view class="param">
- {{$t('相差电压') + ':'}}
- <text
- class="param-value">{{ tools.toFixed(btBmsInfo ? btBmsInfo.state.voltagDifference : bmsInfo.state.voltagDifference, 3) }}V</text>
- </view>
- <view class="param">
- {{$t('平均电压') + ':'}}
- <text
- class="param-value">{{ tools.toFixed(btBmsInfo ? btBmsInfo.state.averageVoltage : bmsInfo.state.averageVoltage, 3) }}V</text>
- </view>
- </view>
- <view class="param-item flex-row flex-between">
- <view class="param">
- {{$t('温度数量') + ':'}}
- <text
- class="param-value">{{ btBmsInfo ? btBmsInfo.state.tempCount : bmsInfo.state.tempCount + $t('个') }}</text>
- </view>
- <view class="param">
- {{$t('标称容量') + ':'}}
- <text
- class="param-value">{{ tools.toFixed(btBmsInfo ? btBmsInfo.state.capacity : bmsInfo.state.capacity, 3) }}AH</text>
- </view>
- </view>
- <!-- <view class="param-item flex-row flex-between">
- <view class="param">温度:
- <text wx:for="{{btBmsInfo ? btBmsInfo.state.temp : bmsInfo.state.temp}}" wx:for-item="item" wx:for-index="index" wx:key="unique" class="param-value">[{{item}}°C]</text>
- </view>
- </view> -->
- <view class="param-item flex-row flex-between">
- <view class="param">
- {{$t('温度') + ':'}}
- <text class="param-value"
- v-for="(item, index) in btBmsInfo ? btBmsInfo.state.temp : bmsInfo.state.temp"
- :key="index">[{{ item }}°C]</text>
- </view>
- <view class="param">
- {{$t('功率') + ':'}}
- <text
- class="param-value">{{ tools.toFixed(btBmsInfo ? btBmsInfo.state.power : bmsInfo.state.power, 3) }}KW</text>
- </view>
- </view>
- <view v-if="(btBmsInfo ? btBmsInfo.state.temp_v2.length : bmsInfo.state.temp_v2.length) != 0"
- class="param-item flex-row flex-between">
- <view class="param"
- v-for="(item, index) in btBmsInfo ? btBmsInfo.state.temp_v2 : bmsInfo.state.temp_v2"
- :key="index">
- {{ item.label }}:
- <text class="param-value">[{{ item.value }}°C]</text>
- </view>
- </view>
- <view class="param-item flex-row flex-between">
- <view class="param">
- {{$t('充电') + $t('继电器') + '/MOS:'}}
- <text
- class="param-value">{{ (btBmsInfo ? btBmsInfo.state.chargingMOS : bmsInfo.state.chargingMOS) == 0 ? $t('关闭') : $t('开启') }}</text>
- </view>
- <view class="param">
- {{$t('放电') + $t('继电器') + '/MOS:'}}
- <text
- class="param-value">{{ (btBmsInfo ? btBmsInfo.state.dischargeMOS : bmsInfo.state.dischargeMOS) == 0 ? $t('关闭') : $t('开启') }}</text>
- </view>
- </view>
- <view class="param-item flex-row flex-between">
- <view v-if="bmsInfo.third_device_type != 'KYYWJT'" class="param">
- {{$t('充电状态') + ':'}}
- <text class="param-value">
- {{
- (btBmsInfo ? btBmsInfo.state.chargeState : bmsInfo.state.chargeState) == 0
- ? $t('静止')
- : (btBmsInfo ? btBmsInfo.state.chargeState : bmsInfo.state.chargeState) == 1
- ? $t('充电')
- : $t('放电')
- }}
- </text>
- </view>
- <view v-if="bmsInfo.third_device_type == 'KYYWJT'" class="param">
- {{$t('充电状态') + ':'}}
- <text class="param-value">
- {{
- bmsInfo.state.KYChargeState == 0
- ? $t('未充电')
- : bmsInfo.state.KYChargeState == 1
- ? $t('充电中')
- : bmsInfo.state.KYChargeState == 2
- ? $t('充电完成')
- : $t('充电故障')
- }}
- </text>
- </view>
- <view class="param">
- {{$t('均衡开闭') + ':'}}
- <text
- class="param-value">{{ (btBmsInfo ? btBmsInfo.state.equilibrium : bmsInfo.state.equilibrium) == 0 ? $t('关闭') : $t('开启') }}</text>
- </view>
- </view>
- <view class="param-item flex-row flex-between">
- <view class="param">
- {{$t('循环次数') + ':'}}
- <text class="param-value">{{ btBmsInfo ? btBmsInfo.state.cycle : bmsInfo.state.cycle }}
- 次</text>
- </view>
- <view class="param">
- {{$t('固件版本') + ':'}}
- <text
- class="param-value">{{ btBmsInfo ? btBmsInfo.state.firmware : bmsInfo.state.firmware }}</text>
- </view>
- </view>
- <view class="param-item flex-row flex-between">
- <view v-if="bmsInfo.third_device_type != 'KYYWJT'" class="param">
- {{$t('连接状态') + ':'}}
- <text
- class="param-value">{{ (btBmsInfo ? btBmsInfo.state.connectState : bmsInfo.state.connectState) == 0 ? $t('未连接') : $t('已连接') }}</text>
- </view>
- <view v-if="bmsInfo.third_device_type == 'KYYWJT'" class="param">
- {{$t('电池状态') + ':'}}
- <text class="param-value">
- {{
- bmsInfo.state.chargeState == 0 ? $t('初始化') : bmsInfo.state.chargeState == 1 ? $t('高压断开') : bmsInfo.state.chargeState == 2 ? $t('预充电') : $t('高压连接')
- }}
- </text>
- </view>
- <view class="param">
- {{$t('设备编码') + ':'}}
- <text class="param-value">{{ battery_sn }}</text>
- </view>
- </view>
- <view class="param-item batterys-show">
- <view class="battery-row">
- <!-- <view class="battery-block" wx:for="{{bmsInfo.State.betList}}" wx:key="unique"> -->
- <view class="battery-block"
- v-for="(item, index) in btBmsInfo ? btBmsInfo.state.voltage : bmsInfo.state.voltage"
- :key="index">
- <view class="battery-bat">
- <view class="i-bat">
- <image v-if="isShowGreen" class="i-bat-icon"
- src="/static/resource/images/diancimr.png"></image>
- <image v-else class="i-bat-icon" :src="
- '/static/resource/images/' +
- ((btBmsInfo ? btBmsInfo.state.voltage[index] : bmsInfo.state.voltage[index]) ==
- tools.max(btBmsInfo ? btBmsInfo.state.voltage : bmsInfo.state.voltage)
- ? 'diancihs.png'
- : (btBmsInfo ? btBmsInfo.state.voltage[index] : bmsInfo.state.voltage[index]) ==
- tools.min(btBmsInfo ? btBmsInfo.state.voltage : bmsInfo.state.voltage)
- ? 'diancils.png'
- : 'diancimr.png')
- "></image>
- <view class="i-bat-index">{{ index + 1 }}</view>
- </view>
- <view v-if="isShowGreen" class="i-vol" style="color: #303133">
- {{
- (btBmsInfo ? btBmsInfo.state.voltage[index] : bmsInfo.state.voltage[index])
- ? tools.toFixed(btBmsInfo ? btBmsInfo.state.voltage[index] : bmsInfo.state.voltage[index], 3)
- : 0
- }}
- </view>
- <view v-else class="i-vol" :style="
- 'color: ' +
- ((btBmsInfo ? btBmsInfo.state.voltage[index] : bmsInfo.state.voltage[index]) ==
- tools.max(btBmsInfo ? btBmsInfo.state.voltage : bmsInfo.state.voltage)
- ? '#ff3154'
- : (btBmsInfo ? btBmsInfo.state.voltage[index] : bmsInfo.state.voltage[index]) ==
- tools.min(btBmsInfo ? btBmsInfo.state.voltage : bmsInfo.state.voltage)
- ? '#1b88f6'
- : '#303133')
- ">
- {{
- (btBmsInfo ? btBmsInfo.state.voltage[index] : bmsInfo.state.voltage[index])
- ? tools.toFixed(btBmsInfo ? btBmsInfo.state.voltage[index] : bmsInfo.state.voltage[index], 3)
- : 0
- }}
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view v-if="!(bmsInfo.close_alarm_data_tab && bmsInfo.close_alarm_data_tab == 1)" class="section-body">
- <view class="param-item flex-row flex-between">
- <view class="param">{{$t('故障报警')}}</view>
- <picker mode="date" :value="alarmDate" @change="bindAlarmDateChange">
- <view class="flex-row">
- <image class="fresh-icon" style="margin-right: 14rpx"
- src="/static/resource/images/time.png"></image>
- <text style="margin-right: 20rpx">{{ alarmDate }}</text>
- <image class="fresh-icon" src="/static/resource/images/youjiantou.png"></image>
- </view>
- </picker>
- </view>
- <view v-if="alarmList.length == 0" class="param-item" style="color: #ccc; text-align: center">{{$t('没有数据')}}
- </view>
- <view v-else>
- <view class="alarm-item flex-row flex-between" v-for="(item, index) in alarmList" :key="index">
- <view class="alarm-time">{{ tools.formatTime(item.time) }}</view>
- <view class="alarm-text">
- <view class="alarm-desc">{{ item.alarm_desc }}</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view v-else-if="selectedTabIndex == 2" class="box-body">
- <view class="section-body" v-for="(item, index) in bmsInfo.sets" :key="index">
- <view class="param-item flex-row flex-between">
- <view class="param">{{ item.class }}</view>
- <view @tap="refreshData">
- <image class="fresh-icon" src="/static/resource/images/fr-icon.png"></image>
- <text>{{$t('刷新')}}</text>
- </view>
- </view>
- <view class="param-item flex-row flex-between" v-for="(varx,i) in (item.vars)" :key="i">
- <view class="param">
- {{ varx.label }}:
- <text class="param-value">
- {{varx.type=='radio'? (tools.getOption(varx.option, varx.value) ? tools.getOption(varx.option, varx.value).label : '') : varx.value}}
- </text>
- </view>
- <view v-if="varx.type!='readonly'" class="command-control">
- <picker v-if="varx.type=='radio'" @change="bindPickerChange" :data-data="varx"
- :value="tools.getOptionIndex(varx.option, varx.set ? varx.set : varx.value)"
- :range="varx.option" range-key="label">
- <view class="input-def">
- {{tools.getOption(varx.option, varx.set ? varx.set : varx.value) ? tools.getOption(varx.option, varx.set ? varx.set : varx.value).label : ''}}
- </view>
- </picker>
- <input v-else class="input-def" @input="bindInput" :data-data="varx"
- :value="varx.set ? varx.set : ''" />
- <text class="btn-def" @tap="bindSet" :data-data="varx">{{$t('设置')}}</text>
- </view>
- </view>
- </view>
- </view>
- <view v-else-if="selectedTabIndex == 3" class="box-body">
- <view class="section-head">
- <view class="fresh-area flex-row flex-between">
- <view>
- <text>{{$t('更新时间') + ':'}}</text>
- <text
- class="fresh-time">{{ tools.formatTime(btBmsInfo ? btBmsInfo.time : bmsInfo.time) }}</text>
- </view>
- <view @tap="refreshData">
- <image class="fresh-icon" src="/static/resource/images/fr-icon.png"></image>
- <text>{{$t('刷新')}}</text>
- </view>
- </view>
- </view>
- <view class="section-body">
- <view class="param-item flex-row flex-between">
- <view class="param">
- {{$t('充电开关')+ ':'}}
- <text class="param-value">
- {{ btBmsInfo ? (btBmsInfo.state.chargingMOSOnOff == 0 ? $t('关闭') : $t('开启')) : bmsInfo.state.chargingMOSOnOff == 0 ? $t('关闭') : $t('开启') }}
- </text>
- </view>
- <view class="command-control">
- <text class="btn-def" @tap="bindChargingMos" data-data="1">{{$t('开启')}}</text>
- <text class="btn-def" @tap="bindChargingMos" data-data="0">{{$t('关闭')}}</text>
- </view>
- </view>
- <view class="param-item flex-row flex-between">
- <view class="param">
- {{$t('放电开关')+ ':'}}
- <text class="param-value">
- {{ btBmsInfo ? (btBmsInfo.state.dischargeMOSOnOff == 0 ? $t('关闭') : $t('开启')) : bmsInfo.state.dischargeMOSOnOff == 0 ? $t('关闭') : $t('开启') }}
- </text>
- </view>
- <view class="command-control">
- <text class="btn-def" @tap="bindDischargeMos" data-data="1">{{$t('开启')}}</text>
- <text class="btn-def" @tap="bindDischargeMos" data-data="0">{{$t('关闭')}}</text>
- </view>
- </view>
- <view
- v-if="!is_single_bt && !(bmsInfo.bms_control_hide && bmsInfo.bms_control_hide.restart_sys && bmsInfo.bms_control_hide.restart_sys == 1)"
- class="param-item flex-row flex-between">
- <view class="param">{{$t('重启系统')}}</view>
- <view class="command-control">
- <text class="btn-def" @tap="bindRestart">{{$t('重启')}}</text>
- </view>
- </view>
- <view
- v-if="!is_single_bt && !(bmsInfo.bms_control_hide && bmsInfo.bms_control_hide.close_sys && bmsInfo.bms_control_hide.close_sys == 1)"
- class="param-item flex-row flex-between">
- <view class="param">{{$t('关闭系统')}}</view>
- <view class="command-control">
- <text class="btn-def" @tap="bindClose">{{$t('关闭')}}</text>
- </view>
- </view>
- <view
- v-if="!is_single_bt && !(bmsInfo.bms_control_hide && bmsInfo.bms_control_hide.current_reset && bmsInfo.bms_control_hide.current_reset == 1)"
- class="param-item flex-row flex-between no-border">
- <view class="param">{{$t('电流归零')}}</view>
- <view class="command-control">
- <text class="btn-def" @tap="bindCurrentZero">{{$t('归零')}}</text>
- </view>
- </view>
- </view>
- </view>
- <!--view wx:elif="{{selectedTabIndex==4}}" class="box-body">
- <view wx:for="{{btBmsInfo.btsets}}" wx:for-item="item" wx:for-index="index" wx:key="unique" class="section-body">
- <view class="param-item flex-row flex-between">
- <view class="param">{{ item.class }}</view>
- <view>
- <text class="btn-def" bindtap="bindBTSet" data-data="{{item}}">设置</text>
- </view>
- </view>
- <view wx:for="{{item.vars}}" wx:for-item="var" wx:for-index="i" wx:key="unique" class="param-item flex-row flex-between">
- <view class="param">{{ var.label }}: <text class="param-value">{{ var.type=='radio'? (var.option[var.value] ? var.option[var.value].label : '') : var.value}}</text></view>
- <view wx:if="{{var.type!='readonly'}}" class="command-control">
- <picker wx:if="{{var.type=='radio'}}" bindchange="bindBTPickerChange" data-data="{{var}}" value="{{var.set ? var.set : var.value}}" range="{{var.option}}" range-key="label">
- <view class="input-def">
- {{var.option[var.set ? var.set : var.value] ? var.option[var.set ? var.set : var.value].label : ''}}
- </view>
- </picker>
- <input wx:else class="input-def" bindinput="bindBTInput" data-data="{{var}}" value="{{ var.set ? var.set : '' }}"></input>
- </view>
- </view>
- </view>
- </view-->
- </view>
- <view class="tab-container">
- <view class="tab-row flex-row flex-around">
- <view :class="'tab-item ' + (selectedTabIndex == 1 ? 'tab-selected' : '')" @tap="bindSelectedTab"
- data-idx="1">{{$t('实时状态')}}</view>
- <!-- <view wx:if="{{ userInfo.type=='group' && bmsInfo.sets && bmsInfo.sets.length != 0 }}" class="tab-item {{selectedTabIndex==2?'tab-selected':''}}" bindtap="bindSelectedTab" data-idx="2">参数设置</view>
- <view wx:if="{{ userInfo.type=='group' }}" class="tab-item {{selectedTabIndex==3?'tab-selected':''}}" bindtap="bindSelectedTab" data-idx="3">BMS控制</view>
- -->
- <view v-if="display_bms && bmsInfo.sets && bmsInfo.sets.length != 0"
- :class="'tab-item ' + (selectedTabIndex == 2 ? 'tab-selected' : '')" @tap="bindSelectedTab"
- data-idx="2">
- {{$t('参数设置')}}
- </view>
- <view v-if="display_bms" :class="'tab-item ' + (selectedTabIndex == 3 ? 'tab-selected' : '')"
- @tap="bindSelectedTab" data-idx="3">{{$t('BMS控制')}}</view>
- </view>
- </view>
- </view>
- </template>
- <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
- <script>
- import comEleQuantity from '@/component/comEleQuantityHorizontal/comEleQuantityHorizontal';
- // pages/bms/bms.js
- var config = require('../../common/config.js');
- var http = require('../../common/http.js');
- var common = require('../../common/common.js');
- var storage = require('../../common/storage.js');
- var bluetooth = require('../../common/bluetooth.js');
- const ZXBTS = require('../../common/bluetooth/ZXBTS.js');
- const LSBTS = require('../../common/bluetooth/LSBTS.js');
- export default {
- components: {
- comEleQuantity
- },
- data() {
- return {
- curTime: 0,
- selectedTabIndex: 1,
- battery_sn: '',
- bmsInfo: {
- time: '',
- state: {
- soc: '',
- count: '',
- socAH: '',
- voltageAll: '',
- current: '',
- minVoltage: '',
- maxVoltage: '',
- voltagDifference: '',
- averageVoltage: '',
- tempCount: '',
- capacity: '',
- temp: '',
- power: '',
- temp_v2: [],
- chargingMOS: '',
- dischargeMOS: '',
- chargeState: '',
- KYChargeState: 0,
- equilibrium: '',
- cycle: '',
- firmware: '',
- connectState: '',
- voltage: '',
- chargingMOSOnOff: 0,
- dischargeMOSOnOff: 0
- },
- state_v2: '',
- third_device_type: '',
- close_alarm_data_tab: '',
- sets: [],
- bms_control_hide: {
- restart_sys: '',
- close_sys: '',
- current_reset: ''
- }
- },
- userInfo: {},
- // 后续用到
- bt_type: '',
- isShowModal: false,
- btid: '',
- btkey: '',
- bms: '',
- deviceType: '',
- alarmDate: common.DateFormat(new Date(), 'yyyy-MM-dd'),
- alarmList: [],
- btBmsInfo: false,
- is_single_bt: false,
- isShowGreen: false,
- display_bms: true,
- soc: '',
- i: '',
- count: '',
- socAH: '',
- voltageAll: '',
- current: '',
- minVoltage: '',
- maxVoltage: '',
- voltagDifference: '',
- averageVoltage: '',
- tempCount: '',
- capacity: '',
- temp: '',
- power: '',
- temp_v2: [],
- chargingMOS: '',
- dischargeMOS: '',
- chargeState: '',
- equilibrium: '',
- cycle: '',
- firmware: '',
- connectState: '',
- voltage: '',
- chargingMOSOnOff: 0,
- dischargeMOSOnOff: 0
- };
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function(options) {
- const battery_sn = options.macid;
- const userInfo = storage.getUserInfo();
- if (!battery_sn) {
- uni.navigateBack({
- delta: 1
- });
- }
- if (bluetooth.isConnected(battery_sn)) {
- bluetooth.onCharacteristicStateChange(battery_sn, 'bms', (data) => {
- if (bluetooth.bluetoothDeviceConfig && data != null) {
- const me = this;
- common.reportBms(battery_sn, data, function(success) {
- me.loadBmsInfo();
- });
- }
- var btBmsInfo = bluetooth.bmsInfo(battery_sn);
- if (btBmsInfo) {
- btBmsInfo.time = parseInt(new Date().getTime() / 1000);
- }
- if (btBmsInfo.btsets && this.btBmsInfo && this.btBmsInfo.btsets) {
- console.log(btBmsInfo)
- btBmsInfo.btsets.forEach((item, index) => {
- console.log(index)
- item.vars.forEach((v, i) => {
- this.btBmsInfo.btsets.forEach((p) => {
- var n = p.vars.find((u) => u.name == v.name && u
- .set);
- if (n != undefined) {
- btBmsInfo.btsets[index].vars[i].set = n.set;
- }
- });
- });
- });
- }
- console.log(btBmsInfo);
- this.setData({
- btBmsInfo: btBmsInfo
- });
- });
- bluetooth.stateUpdate(battery_sn);
- }
- this.setData({
- userInfo: userInfo,
- battery_sn: battery_sn,
- deviceType: options.deviceType,
- bt_type: options.bt_type,
- btid: options.btid,
- btkey: options.btkey,
- bms: options.bms
- });
- this.loadBmsInfo();
- this.loadAlarm();
- this.loadIsChild();
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function() {},
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function() {},
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function() {},
- methods: {
- bindSelectedTab: function(e) {
- const idx = e.currentTarget.dataset.idx;
- this.setData({
- selectedTabIndex: idx
- });
- },
- loadIsChild: function() {
- const pData = {
- pid: '27669'
- };
- const that = this;
- http.postApi(config.API_IS_CHILD, pData, function(resp) {
- uni.hideLoading();
- if (resp.data.code === 200) {
- that.setData({
- isShowGreen: resp.data.data.res
- });
- }
- });
- },
- refreshData: function() {
- const device = {
- bt_type: this.bt_type,
- mac_id: this.battery_sn,
- device_type: this.deviceType,
- btid: this.btid,
- btkey: this.btkey,
- bms: this.bms
- };
- console.log('1111');
- if (bluetooth.isUniversalBluetoothPlugin(device)) {
- console.log('2222');
- if (bluetooth.isConnected(this.battery_sn)) {
- bluetooth.onCharacteristicStateChange(this.battery_sn, 'home', (data) => {
- if (bluetooth.bluetoothDeviceConfig && data != null) {
- common.reportBms(device.mac_id, data, function(success) {});
- }
- });
- bluetooth.onConnectionStateChange(this.battery_sn, 'list', (res) => {});
- const me = this;
- bluetooth.stateUpdate(
- this.battery_sn,
- (res) => {
- me.loadBmsInfo();
- },
- (res) => {
- me.loadBmsInfo();
- }
- );
- } else {
- this.bluetoothConnect();
- }
- } else {
- this.loadBmsInfo();
- }
- },
- loadBmsInfo: function() {
- console.log('111');
- var endTime = new Date().getTime();
- if (endTime - this.curTime > 4000) {
- common.loading(this);
- const pData = {
- macid: this.battery_sn
- };
- const me = this;
- http.postApi(config.API_BMS_STATE, pData, function(resp) {
- uni.hideLoading();
- if (resp.data.code === 200) {
- const bmsInfo = resp.data.data;
- if (!bmsInfo) {
- common.simpleToast(me,me.$t('BMS数据暂无'));
- setTimeout(function() {
- uni.navigateBack({
- delta: 1
- });
- }, 1500);
- }
- me.setData({
- battery_sn: me.battery_sn,
- bmsInfo: resp.data.data
- });
- if (me.userInfo.type != 'group') {
- if (me.bmsInfo.display_bms - 0 === 0) {
- me.setData({
- display_bms: false
- });
- }
- }
- } else {
- setTimeout(function() {
- uni.navigateBack({
- delta: 1
- });
- }, 1500);
- }
- });
- }
- },
- bluetoothConnect() {
- const device = {
- bt_type: this.bt_type,
- mac_id: this.battery_sn,
- device_type: this.deviceType,
- btid: this.btid,
- btkey: this.btkey,
- bms: this.bms
- };
- const me = this;
- bluetooth.openBluetoothAdapter(
- (res) => {
- bluetooth.connectDevice(
- device,
- () => {
- bluetooth.onCharacteristicStateChange(device.mac_id, 'home', (data) => {
- if (bluetooth.bluetoothDeviceConfig && data != null) {
- common.reportBms(device.mac_id, data, function(success) {});
- }
- });
- bluetooth.onConnectionStateChange(device.mac_id, 'home', (res) => {});
- bluetooth.stateUpdate(
- me.battery_sn,
- (res) => {
- me.loadBmsInfo();
- },
- (res) => {
- me.loadBmsInfo();
- }
- );
- },
- (res) => {
- me.loadBmsInfo();
- if (me.isShowModal) {
- return;
- }
- me.setData({
- isShowModal: true
- });
- uni.showModal({
- content: me.$t('连接电池失败,请靠近电池重试'),
- confirmText: me.$t('重试'),
- success: (res) => {
- if (res.confirm) {
- console.log('点击链接1');
- me.setData({
- isShowModal: false
- });
- me.bluetoothConnect();
- } else {
- me.setData({
- isShowModal: false
- });
- }
- },
- fail: (res) => {}
- });
- }
- );
- },
- (res) => {
- me.loadBmsInfo();
- if (me.isShowModal) {
- return;
- }
- me.setData({
- isShowModal: true
- });
- uni.showModal({
- content: me.$t('需使用手机蓝牙功能,请打开蓝牙') + res.errCode,
- confirmText: me.$t('重试'),
- success: (res) => {
- // var me = this
- if (res.confirm) {
- console.log('点击链接2');
- me.bluetoothConnect();
- } else {
- me.setData({
- isShowModal: false
- });
- }
- },
- fail: (res) => {}
- });
- }
- );
- },
- bindPickerChange: function(e) {
- var bmsInfo = this.bmsInfo;
- bmsInfo.sets.forEach((item, index) => {
- item.vars.forEach((v, i) => {
- if (v.name == e.currentTarget.dataset.data.name) {
- bmsInfo.sets[index].vars[i].set = bmsInfo.sets[index].vars[i].option[
- parseInt(e.detail.value)].value;
- }
- });
- });
- this.setData({
- bmsInfo: bmsInfo
- });
- },
- bindInput: function(e) {
- var bmsInfo = this.bmsInfo;
- bmsInfo.sets.forEach((item, index) => {
- item.vars.forEach((v, i) => {
- if (v.name == e.currentTarget.dataset.data.name) {
- bmsInfo.sets[index].vars[i].set = e.detail.value;
- }
- });
- });
- this.setData({
- bmsInfo: bmsInfo
- });
- },
- bindSet: function(e) {
- var me = this
- var item = e.currentTarget.dataset.data;
- // var item = {
- // name:"0xAA",
- // set:"50"
- // }
- if (!item.set) {
- common.simpleToast(me,me.$t('请设置参数'));
- return;
- }
- const device = {
- bt_type: this.bt_type,
- mac_id: this.battery_sn,
- device_type: this.deviceType,
- btid: this.btid,
- btkey: this.btkey,
- bms: this.bms,
- name: item.name,
- value: item.set
- };
- console.log(device);
- if (bluetooth.isUniversalBluetoothPlugin(device) && bluetooth.bmsSet(device)) {
- this.bindBTSet(device);
- }
- common.loading(this);
- const pData = {
- macid: this.battery_sn,
- name: item.name,
- value: item.set
- };
- http.postApi(config.API_BMS_SET, pData, function(resp) {
- uni.hideLoading();
- if (resp.data.code === 200) {
- common.simpleToast(me,me.$t('设置成功'));
- } else {
- common.simpleToast(me,resp.data.msg);
- }
- });
- },
- bindBTSet(device) {
- bluetooth.bmsSet(
- device,
- (res) => {
- common.simpleToast(this,this.$t('发送成功'));
- },
- () => {
- common.simpleToast(this,this.$t('发送失败'));
- }
- );
- // ZXBTS.bmsSet(device)
- },
- bindChargingMos: function(e) {
- var me = this;
- var item = e.currentTarget.dataset.data;
- const pData = {
- macid: this.battery_sn,
- value: item
- };
- console.log(this.bmsInfo);
- const connection_state = bluetooth.getConnectionState(this.battery_sn);
- if (connection_state) {
- if (bluetooth.isConnected(this.battery_sn)) {
- // if(bluetooth.haveBMSForBT(connection_state.device)) {
- bluetooth.bmsChargingMOS(pData.macid, pData.value, () => {
- common.simpleToast(me,me.$t('设置成功'));
- setTimeout(function() {
- bluetooth.stateUpdate(
- me.battery_sn,
- (res) => {},
- (res) => {}
- );
- }, 2000);
- // bluetooth.stateUpdate(this.data.battery_sn)
- });
- return;
- } else {
- common.simpleToast(me,me.$t('蓝牙未连接'));
- }
- // }
- }
- common.loading(this);
- http.postApi(config.API_BMS_CHARGING_MOS, pData, function(resp) {
- uni.hideLoading();
- if (resp.data.code === 200) {
- common.simpleToast(me,me.$t('设置成功'));
- } else {
- common.simpleToast(me,resp.data.msg);
- }
- });
- },
- bindDischargeMos: function(e) {
- var me = this;
- var item = e.currentTarget.dataset.data;
- const pData = {
- macid: this.battery_sn,
- value: item
- };
- const connection_state = bluetooth.getConnectionState(this.battery_sn);
- if (connection_state) {
- if (bluetooth.isConnected(this.battery_sn)) {
- // if(bluetooth.haveBMSForBT(connection_state.device)) {
- bluetooth.bmsDischargeMOS(pData.macid, pData.value, () => {
- common.simpleToast(me,me.$t('设置成功'));
- //bluetooth.stateUpdate(this.data.battery_sn)
- setTimeout(function() {
- bluetooth.stateUpdate(
- me.battery_sn,
- (res) => {},
- (res) => {}
- );
- }, 2000);
- });
- return;
- // }
- } else {
- common.simpleToast(me,me.$t('蓝牙连接失败'));
- }
- }
- common.loading(this);
- http.postApi(config.API_BMS_DISCHARGARGE_MOS, pData, function(resp) {
- uni.hideLoading();
- if (resp.data.code === 200) {
- common.simpleToast(me,me.$t('设置成功'));
- } else {
- common.simpleToast(me,resp.data.msg);
- }
- });
- },
- bindRestart: function(e) {
- common.loading(this);
- const pData = {
- macid: this.battery_sn
- };
- const me = this
- http.postApi(config.API_BMS_RESTART, pData, function(resp) {
- uni.hideLoading();
- if (resp.data.code === 200) {
- common.simpleToast(me,me.$t('设置成功'));
- } else {
- common.simpleToast(me,resp.data.msg);
- }
- });
- },
- bindClose: function(e) {
- common.loading(this);
- const pData = {
- macid: this.battery_sn
- };
- const me = this
- http.postApi(config.API_BMS_CLOSE, pData, function(resp) {
- uni.hideLoading();
- if (resp.data.code === 200) {
- common.simpleToast(me,me.$t('设置成功'));
- } else {
- common.simpleToast(me,resp.data.msg);
- }
- });
- },
- bindCurrentZero: function(e) {
- common.loading(this);
- const pData = {
- macid: this.battery_sn
- };
- const me = this
- http.postApi(config.API_BMS_CURRENT_ZERO, pData, function(resp) {
- uni.hideLoading();
- if (resp.data.code === 200) {
- common.simpleToast(me,me.$t('设置成功'));
- } else {
- common.simpleToast(me,resp.data.msg);
- }
- });
- },
- bindAlarmDateChange(e) {
- this.setData({
- alarmDate: e.detail.value
- });
- this.loadAlarm();
- },
- loadAlarm() {
- const begin_time = parseInt(new Date(this.alarmDate).getTime() / 1000);
- const end_time = begin_time + 86400 - 1;
- common.loading(this);
- http.postApi(
- config.API_BMS_ALARM, {
- macid: this.battery_sn,
- begin_time: begin_time,
- end_time: end_time
- },
- (resp) => {
- uni.hideLoading();
- if (resp.data.code === 200) {
- this.setData({
- alarmList: resp.data.data.list
- });
- } else {
- //common.simpleToast(this,resp.data.msg)
- }
- }
- );
- },
- bindBTPickerChange: function(e) {
- var btBmsInfo = this.btBmsInfo;
- btBmsInfo.btsets.forEach((item, index) => {
- item.vars.forEach((v, i) => {
- if (v.name == e.currentTarget.dataset.data.name) {
- btBmsInfo.btsets[index].vars[i].set = e.detail.value;
- }
- });
- });
- this.setData({
- btBmsInfo: btBmsInfo
- });
- },
- bindBTInput: function(e) {
- var btBmsInfo = this.btBmsInfo;
- btBmsInfo.btsets.forEach((item, index) => {
- item.vars.forEach((v, i) => {
- if (v.name == e.currentTarget.dataset.data.name) {
- btBmsInfo.btsets[index].vars[i].set = e.detail.value;
- }
- });
- });
- this.setData({
- btBmsInfo: btBmsInfo
- });
- }
- }
- };
- </script>
- <style>
- @import './bms.css';
- </style>
|