bms.vue 35 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066
  1. <template>
  2. <view class="container">
  3. <view class="man-body">
  4. <view v-if="selectedTabIndex == 1" class="box-body">
  5. <view class="section-head">
  6. <view class="fresh-area flex-row flex-between">
  7. <view>
  8. <text>{{$t('更新时间') + ':'}}</text>
  9. <text
  10. class="fresh-time">{{ tools.formatTime(btBmsInfo ? btBmsInfo.time : bmsInfo.time) }}</text>
  11. </view>
  12. <view @tap="refreshData">
  13. <image class="fresh-icon" src="/static/resource/images/fr-icon.png"></image>
  14. <text>{{$t('刷新')}}</text>
  15. </view>
  16. </view>
  17. <view class="battery-model">
  18. <com-ele-quantity
  19. :quantity="tools.toFixed(btBmsInfo ? btBmsInfo.state.soc : bmsInfo.state.soc, 2)"></com-ele-quantity>
  20. <text></text>
  21. </view>
  22. </view>
  23. <view v-if="btBmsInfo ? btBmsInfo.state_v2 : bmsInfo.state_v2">
  24. <view class="section-body"
  25. v-for="(item, index) in btBmsInfo ? btBmsInfo.state_v2 : bmsInfo.state_v2" :key="index">
  26. <view v-if="item.class" class="param-item flex-row flex-between">
  27. <view class="param">{{ item.class }}</view>
  28. <view @tap="refreshData">
  29. <image class="fresh-icon" src="/static/resource/images/fr-icon.png"></image>
  30. <text>{{$t('刷新')}}</text>
  31. </view>
  32. </view>
  33. <view class="param-item flex-row flex-between" v-for="(varx,i) in (tools.filterHalf(item.vars))"
  34. :key="i">
  35. <view class="param">
  36. {{ item.vars[i * 2].label }}:
  37. <text class="param-value">{{ item.vars[i * 2].value }}</text>
  38. </view>
  39. <view v-if="item.vars.length > i * 2 + 1" class="param">
  40. {{ item.vars[i * 2 + 1].label }}:
  41. <text class="param-value">{{ item.vars[i * 2 + 1].value }}</text>
  42. </view>
  43. </view>
  44. </view>
  45. </view>
  46. <view v-else class="section-body">
  47. <view class="param-item flex-row flex-between">
  48. <view class="param">
  49. {{$t('电池数量') + ':'}}
  50. <text class="param-value">{{ btBmsInfo ? btBmsInfo.state.count : bmsInfo.state.count + $t('串')}}</text>
  51. </view>
  52. <view class="param">
  53. {{$t('剩余容量') + ':'}}
  54. <text
  55. class="param-value">{{ tools.toFixed(btBmsInfo ? btBmsInfo.state.socAH : bmsInfo.state.socAH, 2) }}AH</text>
  56. </view>
  57. </view>
  58. <view class="param-item flex-row flex-between">
  59. <view class="param">
  60. {{$t('总电压') + ':'}}
  61. <text
  62. class="param-value">{{ tools.toFixed(btBmsInfo ? btBmsInfo.state.voltageAll : bmsInfo.state.voltageAll, 3) }}V</text>
  63. </view>
  64. <view class="param">
  65. {{$t('电流数据') + ':'}}
  66. <text
  67. class="param-value">{{ tools.toFixed(btBmsInfo ? btBmsInfo.state.current : bmsInfo.state.current, 3) }}A</text>
  68. </view>
  69. </view>
  70. <view class="param-item flex-row flex-between">
  71. <view class="param">
  72. {{$t('最低电压') + ':'}}
  73. <text
  74. class="param-value">{{ tools.toFixed(btBmsInfo ? btBmsInfo.state.minVoltage : bmsInfo.state.minVoltage, 3) }}V</text>
  75. </view>
  76. <view class="param">
  77. {{$t('最高电压') + ':'}}
  78. <text
  79. class="param-value">{{ tools.toFixed(btBmsInfo ? btBmsInfo.state.maxVoltage : bmsInfo.state.maxVoltage, 3) }}V</text>
  80. </view>
  81. </view>
  82. <view class="param-item flex-row flex-between">
  83. <view class="param">
  84. {{$t('相差电压') + ':'}}
  85. <text
  86. class="param-value">{{ tools.toFixed(btBmsInfo ? btBmsInfo.state.voltagDifference : bmsInfo.state.voltagDifference, 3) }}V</text>
  87. </view>
  88. <view class="param">
  89. {{$t('平均电压') + ':'}}
  90. <text
  91. class="param-value">{{ tools.toFixed(btBmsInfo ? btBmsInfo.state.averageVoltage : bmsInfo.state.averageVoltage, 3) }}V</text>
  92. </view>
  93. </view>
  94. <view class="param-item flex-row flex-between">
  95. <view class="param">
  96. {{$t('温度数量') + ':'}}
  97. <text
  98. class="param-value">{{ btBmsInfo ? btBmsInfo.state.tempCount : bmsInfo.state.tempCount + $t('个') }}</text>
  99. </view>
  100. <view class="param">
  101. {{$t('标称容量') + ':'}}
  102. <text
  103. class="param-value">{{ tools.toFixed(btBmsInfo ? btBmsInfo.state.capacity : bmsInfo.state.capacity, 3) }}AH</text>
  104. </view>
  105. </view>
  106. <view class="param-item flex-row flex-between">
  107. <view class="param">
  108. {{$t('温度') + ':'}}
  109. <text class="param-value"
  110. v-for="(item, index) in btBmsInfo ? btBmsInfo.state.temp : bmsInfo.state.temp"
  111. :key="index">[{{ item }}°C]</text>
  112. </view>
  113. <view class="param">
  114. {{$t('功率') + ':'}}
  115. <text
  116. class="param-value">{{ tools.toFixed(btBmsInfo ? btBmsInfo.state.power : bmsInfo.state.power, 3) }}KW</text>
  117. </view>
  118. </view>
  119. <view v-if="(btBmsInfo ? btBmsInfo.state.temp_v2.length : bmsInfo.state.temp_v2.length) != 0"
  120. class="param-item flex-row flex-between">
  121. <view class="param"
  122. v-for="(item, index) in btBmsInfo ? btBmsInfo.state.temp_v2 : bmsInfo.state.temp_v2"
  123. :key="index">
  124. {{ item.label }}:
  125. <text class="param-value">[{{ item.value }}°C]</text>
  126. </view>
  127. </view>
  128. <view class="param-item flex-row flex-between">
  129. <view class="param">
  130. {{$t('充电') + $t('继电器') + '/MOS:'}}
  131. <text
  132. class="param-value">{{ (btBmsInfo ? btBmsInfo.state.chargingMOS : bmsInfo.state.chargingMOS) == 0 ? $t('关闭') : $t('开启') }}</text>
  133. </view>
  134. <view class="param">
  135. {{$t('放电') + $t('继电器') + '/MOS:'}}
  136. <text
  137. class="param-value">{{ (btBmsInfo ? btBmsInfo.state.dischargeMOS : bmsInfo.state.dischargeMOS) == 0 ? $t('关闭') : $t('开启') }}</text>
  138. </view>
  139. </view>
  140. <view class="param-item flex-row flex-between">
  141. <view v-if="bmsInfo.third_device_type != 'KYYWJT'" class="param">
  142. {{$t('充电状态') + ':'}}
  143. <text class="param-value">
  144. {{
  145. (btBmsInfo ? btBmsInfo.state.chargeState : bmsInfo.state.chargeState) == 0
  146. ? $t('静止')
  147. : (btBmsInfo ? btBmsInfo.state.chargeState : bmsInfo.state.chargeState) == 1
  148. ? $t('充电')
  149. : $t('放电')
  150. }}
  151. </text>
  152. </view>
  153. <view v-if="bmsInfo.third_device_type == 'KYYWJT'" class="param">
  154. {{$t('充电状态') + ':'}}
  155. <text class="param-value">
  156. {{
  157. bmsInfo.state.KYChargeState == 0
  158. ? $t('未充电')
  159. : bmsInfo.state.KYChargeState == 1
  160. ? $t('充电中')
  161. : bmsInfo.state.KYChargeState == 2
  162. ? $t('充电完成')
  163. : $t('充电故障')
  164. }}
  165. </text>
  166. </view>
  167. <view class="param">
  168. {{$t('均衡开闭') + ':'}}
  169. <text
  170. class="param-value">{{ (btBmsInfo ? btBmsInfo.state.equilibrium : bmsInfo.state.equilibrium) == 0 ? $t('关闭') : $t('开启') }}</text>
  171. </view>
  172. </view>
  173. <view class="param-item flex-row flex-between">
  174. <view class="param">
  175. {{$t('循环次数') + ':'}}
  176. <text class="param-value">{{ btBmsInfo ? btBmsInfo.state.cycle : bmsInfo.state.cycle }}
  177. 次</text>
  178. </view>
  179. <view class="param">
  180. {{$t('固件版本') + ':'}}
  181. <text
  182. class="param-value">{{ btBmsInfo ? btBmsInfo.state.firmware : bmsInfo.state.firmware }}</text>
  183. </view>
  184. </view>
  185. <view class="param-item flex-row flex-between">
  186. <view v-if="bmsInfo.third_device_type != 'KYYWJT'" class="param">
  187. {{$t('连接状态') + ':'}}
  188. <text
  189. class="param-value">{{ (btBmsInfo ? btBmsInfo.state.connectState : bmsInfo.state.connectState) == 0 ? $t('未连接') : $t('已连接') }}</text>
  190. </view>
  191. <view v-if="bmsInfo.third_device_type == 'KYYWJT'" class="param">
  192. {{$t('电池状态') + ':'}}
  193. <text class="param-value">
  194. {{
  195. bmsInfo.state.chargeState == 0 ? $t('初始化') : bmsInfo.state.chargeState == 1 ? $t('高压断开') : bmsInfo.state.chargeState == 2 ? $t('预充电') : $t('高压连接')
  196. }}
  197. </text>
  198. </view>
  199. <view class="param">
  200. {{$t('设备编码') + ':'}}
  201. <text class="param-value">{{ battery_sn }}</text>
  202. </view>
  203. </view>
  204. <view class="param-item batterys-show">
  205. <view class="battery-row">
  206. <view class="battery-block"
  207. v-for="(item, index) in btBmsInfo ? btBmsInfo.state.voltage : bmsInfo.state.voltage"
  208. :key="index">
  209. <view class="battery-bat">
  210. <view class="i-bat">
  211. <image v-if="isShowGreen" class="i-bat-icon" src="/static/resource/images/diancimr.png"></image>
  212. <image v-else class="i-bat-icon" :src="
  213. '/static/resource/images/' +
  214. ((btBmsInfo ? btBmsInfo.state.voltage[index] : bmsInfo.state.voltage[index]) ==
  215. tools.max(btBmsInfo ? btBmsInfo.state.voltage : bmsInfo.state.voltage)
  216. ? 'diancihs.png'
  217. : (btBmsInfo ? btBmsInfo.state.voltage[index] : bmsInfo.state.voltage[index]) ==
  218. tools.min(btBmsInfo ? btBmsInfo.state.voltage : bmsInfo.state.voltage)
  219. ? 'diancils.png'
  220. : 'diancimr.png')
  221. "></image>
  222. <view class="i-bat-index">{{ index + 1 }}</view>
  223. </view>
  224. <view v-if="isShowGreen" class="i-vol" style="color: #303133">
  225. {{
  226. (btBmsInfo ? btBmsInfo.state.voltage[index] : bmsInfo.state.voltage[index])
  227. ? tools.toFixed(btBmsInfo ? btBmsInfo.state.voltage[index] : bmsInfo.state.voltage[index], 3)
  228. : 0
  229. }}
  230. </view>
  231. <view v-else class="i-vol" :style="
  232. 'color: ' +
  233. ((btBmsInfo ? btBmsInfo.state.voltage[index] : bmsInfo.state.voltage[index]) ==
  234. tools.max(btBmsInfo ? btBmsInfo.state.voltage : bmsInfo.state.voltage)
  235. ? '#ff3154'
  236. : (btBmsInfo ? btBmsInfo.state.voltage[index] : bmsInfo.state.voltage[index]) ==
  237. tools.min(btBmsInfo ? btBmsInfo.state.voltage : bmsInfo.state.voltage)
  238. ? '#1b88f6'
  239. : '#303133')
  240. ">
  241. {{
  242. (btBmsInfo ? btBmsInfo.state.voltage[index] : bmsInfo.state.voltage[index])
  243. ? tools.toFixed(btBmsInfo ? btBmsInfo.state.voltage[index] : bmsInfo.state.voltage[index], 3)
  244. : 0
  245. }}
  246. </view>
  247. </view>
  248. </view>
  249. </view>
  250. </view>
  251. </view>
  252. <view v-if="!(bmsInfo.close_alarm_data_tab && bmsInfo.close_alarm_data_tab == 1)" class="section-body">
  253. <view class="param-item flex-row flex-between">
  254. <view class="param">{{$t('故障报警')}}</view>
  255. <picker mode="date" :value="alarmDate" @change="bindAlarmDateChange">
  256. <view class="flex-row">
  257. <image class="fresh-icon" style="margin-right: 14rpx"
  258. src="/static/resource/images/time.png"></image>
  259. <text style="margin-right: 20rpx">{{ alarmDate }}</text>
  260. <image class="fresh-icon" src="/static/resource/images/youjiantou.png"></image>
  261. </view>
  262. </picker>
  263. </view>
  264. <view v-if="alarmList.length == 0" class="param-item" style="color: #ccc; text-align: center">{{$t('没有数据')}}
  265. </view>
  266. <view v-else>
  267. <view class="alarm-item flex-row flex-between" v-for="(item, index) in alarmList" :key="index">
  268. <view class="alarm-time">{{ tools.formatTime(item.time) }}</view>
  269. <view class="alarm-text">
  270. <view class="alarm-desc">{{ item.alarm_desc }}</view>
  271. </view>
  272. </view>
  273. </view>
  274. </view>
  275. </view>
  276. <view v-else-if="selectedTabIndex == 2" class="box-body">
  277. <view class="section-body" v-for="(item, index) in bmsInfo.sets" :key="index">
  278. <view class="param-item flex-row flex-between">
  279. <view class="param">{{ item.class }}</view>
  280. <view @tap="refreshData">
  281. <image class="fresh-icon" src="/static/resource/images/fr-icon.png"></image>
  282. <text>{{$t('刷新')}}</text>
  283. </view>
  284. </view>
  285. <view class="param-item flex-row flex-between" v-for="(varx,i) in (item.vars)" :key="i">
  286. <view class="param">
  287. {{ varx.label }}:
  288. <text class="param-value">
  289. {{varx.type=='radio'? (tools.getOption(varx.option, varx.value) ? tools.getOption(varx.option, varx.value).label : '') : varx.value}}
  290. </text>
  291. </view>
  292. <view v-if="varx.type!='readonly'&&varx.label!='电池实际容量'" class="command-control">
  293. <picker v-if="varx.type=='radio'" @change="bindPickerChange" :data-data="varx"
  294. :value="tools.getOptionIndex(varx.option, varx.set ? varx.set : varx.value)"
  295. :range="varx.option" range-key="label">
  296. <view class="input-def">
  297. {{tools.getOption(varx.option, varx.set ? varx.set : varx.value) ? tools.getOption(varx.option, varx.set ? varx.set : varx.value).label : ''}}
  298. </view>
  299. </picker>
  300. <input v-else class="input-def" @input="bindInput" :data-data="varx"
  301. :value="varx.set ? varx.set : ''" />
  302. <text class="btn-def" @tap="bindSet" :data-data="varx">{{$t('设置')}}</text>
  303. </view>
  304. </view>
  305. </view>
  306. </view>
  307. <view v-else-if="selectedTabIndex == 3" class="box-body">
  308. <view class="section-head">
  309. <view class="fresh-area flex-row flex-between">
  310. <view>
  311. <text>{{$t('更新时间') + ':'}}</text>
  312. <text
  313. class="fresh-time">{{ tools.formatTime(btBmsInfo ? btBmsInfo.time : bmsInfo.time) }}</text>
  314. </view>
  315. <view @tap="refreshData">
  316. <image class="fresh-icon" src="/static/resource/images/fr-icon.png"></image>
  317. <text>{{$t('刷新')}}</text>
  318. </view>
  319. </view>
  320. </view>
  321. <view class="section-body">
  322. <view class="param-item flex-row flex-between">
  323. <view class="param">
  324. {{$t('充电开关')+ ':'}}
  325. <text class="param-value">
  326. {{ btBmsInfo ? (btBmsInfo.state.chargingMOSOnOff == 0 ? $t('关闭') : $t('开启')) : bmsInfo.state.chargingMOSOnOff == 0 ? $t('关闭') : $t('开启') }}
  327. </text>
  328. </view>
  329. <view class="command-control">
  330. <text class="btn-def" @tap="bindChargingMos" data-data="1">{{$t('开启')}}</text>
  331. <text class="btn-def" @tap="bindChargingMos" data-data="0">{{$t('关闭')}}</text>
  332. </view>
  333. </view>
  334. <view class="param-item flex-row flex-between">
  335. <view class="param">
  336. {{$t('放电开关')+ ':'}}
  337. <text class="param-value">
  338. {{ btBmsInfo ? (btBmsInfo.state.dischargeMOSOnOff == 0 ? $t('关闭') : $t('开启')) : bmsInfo.state.dischargeMOSOnOff == 0 ? $t('关闭') : $t('开启') }}
  339. </text>
  340. </view>
  341. <view class="command-control">
  342. <text class="btn-def" @tap="bindDischargeMos" data-data="1">{{$t('开启')}}</text>
  343. <text class="btn-def" @tap="bindDischargeMos" data-data="0">{{$t('关闭')}}</text>
  344. </view>
  345. </view>
  346. <view
  347. v-if="!is_single_bt && !(bmsInfo.bms_control_hide && bmsInfo.bms_control_hide.restart_sys && bmsInfo.bms_control_hide.restart_sys == 1)"
  348. class="param-item flex-row flex-between">
  349. <view class="param">{{$t('重启系统')}}</view>
  350. <view class="command-control">
  351. <text class="btn-def" @tap="bindRestart">{{$t('重启')}}</text>
  352. </view>
  353. </view>
  354. <view
  355. v-if="!is_single_bt && !(bmsInfo.bms_control_hide && bmsInfo.bms_control_hide.close_sys && bmsInfo.bms_control_hide.close_sys == 1)"
  356. class="param-item flex-row flex-between">
  357. <view class="param">{{$t('关闭系统')}}</view>
  358. <view class="command-control">
  359. <text class="btn-def" @tap="bindClose">{{$t('关闭')}}</text>
  360. </view>
  361. </view>
  362. <view
  363. v-if="!is_single_bt && !(bmsInfo.bms_control_hide && bmsInfo.bms_control_hide.current_reset && bmsInfo.bms_control_hide.current_reset == 1)"
  364. class="param-item flex-row flex-between no-border">
  365. <view class="param">{{$t('电流归零')}}</view>
  366. <view class="command-control">
  367. <text class="btn-def" @tap="bindCurrentZero">{{$t('归零')}}</text>
  368. </view>
  369. </view>
  370. </view>
  371. </view>
  372. <!--view wx:elif="{{selectedTabIndex==4}}" class="box-body">
  373. <view wx:for="{{btBmsInfo.btsets}}" wx:for-item="item" wx:for-index="index" wx:key="unique" class="section-body">
  374. <view class="param-item flex-row flex-between">
  375. <view class="param">{{ item.class }}</view>
  376. <view>
  377. <text class="btn-def" bindtap="bindBTSet" data-data="{{item}}">设置</text>
  378. </view>
  379. </view>
  380. <view wx:for="{{item.vars}}" wx:for-item="var" wx:for-index="i" wx:key="unique" class="param-item flex-row flex-between">
  381. <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>
  382. <view wx:if="{{var.type!='readonly'}}" class="command-control">
  383. <picker wx:if="{{var.type=='radio'}}" bindchange="bindBTPickerChange" data-data="{{var}}" value="{{var.set ? var.set : var.value}}" range="{{var.option}}" range-key="label">
  384. <view class="input-def">
  385. {{var.option[var.set ? var.set : var.value] ? var.option[var.set ? var.set : var.value].label : ''}}
  386. </view>
  387. </picker>
  388. <input wx:else class="input-def" bindinput="bindBTInput" data-data="{{var}}" value="{{ var.set ? var.set : '' }}"></input>
  389. </view>
  390. </view>
  391. </view>
  392. </view-->
  393. </view>
  394. <view class="tab-container">
  395. <view class="tab-row flex-row flex-around">
  396. <view :class="'tab-item ' + (selectedTabIndex == 1 ? 'tab-selected' : '')" @tap="bindSelectedTab"
  397. data-idx="1">{{$t('实时状态')}}</view>
  398. <!-- <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>
  399. <view wx:if="{{ userInfo.type=='group' }}" class="tab-item {{selectedTabIndex==3?'tab-selected':''}}" bindtap="bindSelectedTab" data-idx="3">BMS控制</view>
  400. -->
  401. <view v-if="display_bms && bmsInfo.sets && bmsInfo.sets.length != 0"
  402. :class="'tab-item ' + (selectedTabIndex == 2 ? 'tab-selected' : '')" @tap="bindSelectedTab"
  403. data-idx="2">
  404. {{$t('参数设置')}}
  405. </view>
  406. <view v-if="display_bms" :class="'tab-item ' + (selectedTabIndex == 3 ? 'tab-selected' : '')"
  407. @tap="bindSelectedTab" data-idx="3">{{$t('BMS控制')}}</view>
  408. </view>
  409. </view>
  410. </view>
  411. </template>
  412. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  413. <script>
  414. import comEleQuantity from '@/component/comEleQuantityHorizontal/comEleQuantityHorizontal';
  415. // pages/bms/bms.js
  416. var config = require('../../common/config.js');
  417. var http = require('../../common/http.js');
  418. var common = require('../../common/common.js');
  419. var storage = require('../../common/storage.js');
  420. var bluetooth = require('../../common/bluetooth.js');
  421. const ZXBTS = require('../../common/bluetooth/ZXBTS.js');
  422. const LSBTS = require('../../common/bluetooth/LSBTS.js');
  423. export default {
  424. components: {
  425. comEleQuantity
  426. },
  427. data() {
  428. return {
  429. curTime: 0,
  430. selectedTabIndex: 1,
  431. battery_sn: '',
  432. bmsInfo: {
  433. time: '',
  434. state: {
  435. soc: '',
  436. count: '',
  437. socAH: '',
  438. voltageAll: '',
  439. current: '',
  440. minVoltage: '',
  441. maxVoltage: '',
  442. voltagDifference: '',
  443. averageVoltage: '',
  444. tempCount: '',
  445. capacity: '',
  446. temp: '',
  447. power: '',
  448. temp_v2: [],
  449. chargingMOS: '',
  450. dischargeMOS: '',
  451. chargeState: '',
  452. KYChargeState: 0,
  453. equilibrium: '',
  454. cycle: '',
  455. firmware: '',
  456. connectState: '',
  457. voltage: '',
  458. chargingMOSOnOff: 0,
  459. dischargeMOSOnOff: 0
  460. },
  461. state_v2: '',
  462. third_device_type: '',
  463. close_alarm_data_tab: '',
  464. sets: [],
  465. bms_control_hide: {
  466. restart_sys: '',
  467. close_sys: '',
  468. current_reset: ''
  469. }
  470. },
  471. userInfo: {},
  472. // 后续用到
  473. bt_type: '',
  474. isShowModal: false,
  475. btid: '',
  476. btkey: '',
  477. bms: '',
  478. deviceType: '',
  479. alarmDate: common.DateFormat(new Date(), 'yyyy-MM-dd'),
  480. alarmList: [],
  481. btBmsInfo: false,
  482. is_single_bt: false,
  483. isShowGreen: false,
  484. display_bms: true,
  485. soc: '',
  486. i: '',
  487. count: '',
  488. socAH: '',
  489. voltageAll: '',
  490. current: '',
  491. minVoltage: '',
  492. maxVoltage: '',
  493. voltagDifference: '',
  494. averageVoltage: '',
  495. tempCount: '',
  496. capacity: '',
  497. temp: '',
  498. power: '',
  499. temp_v2: [],
  500. chargingMOS: '',
  501. dischargeMOS: '',
  502. chargeState: '',
  503. equilibrium: '',
  504. cycle: '',
  505. firmware: '',
  506. connectState: '',
  507. voltage: '',
  508. chargingMOSOnOff: 0,
  509. dischargeMOSOnOff: 0
  510. };
  511. },
  512. /**
  513. * 生命周期函数--监听页面加载
  514. */
  515. onLoad: function(options) {
  516. uni.setNavigationBarTitle({
  517. title: this.$t('BMS信息')
  518. });
  519. const battery_sn = options.macid;
  520. const userInfo = storage.getUserInfo();
  521. if (!battery_sn) {
  522. uni.navigateBack({
  523. delta: 1
  524. });
  525. }
  526. if (bluetooth.isConnected(battery_sn)) {
  527. bluetooth.onCharacteristicStateChange(battery_sn, 'bms', (data) => {
  528. if (bluetooth.bluetoothDeviceConfig && data != null) {
  529. const me = this;
  530. common.reportBms(battery_sn, data, function(success) {
  531. me.loadBmsInfo();
  532. });
  533. }
  534. var btBmsInfo = bluetooth.bmsInfo(battery_sn);
  535. if (btBmsInfo) {
  536. btBmsInfo.time = parseInt(new Date().getTime() / 1000);
  537. }
  538. if (btBmsInfo.btsets && this.btBmsInfo && this.btBmsInfo.btsets) {
  539. console.log(btBmsInfo)
  540. btBmsInfo.btsets.forEach((item, index) => {
  541. console.log(index)
  542. item.vars.forEach((v, i) => {
  543. this.btBmsInfo.btsets.forEach((p) => {
  544. var n = p.vars.find((u) => u.name == v.name && u
  545. .set);
  546. if (n != undefined) {
  547. btBmsInfo.btsets[index].vars[i].set = n.set;
  548. }
  549. });
  550. });
  551. });
  552. }
  553. console.log(btBmsInfo);
  554. this.setData({
  555. btBmsInfo: btBmsInfo
  556. });
  557. });
  558. bluetooth.stateUpdate(battery_sn);
  559. }
  560. this.setData({
  561. userInfo: userInfo,
  562. battery_sn: battery_sn,
  563. deviceType: options.deviceType,
  564. bt_type: options.bt_type,
  565. btid: options.btid,
  566. btkey: options.btkey,
  567. bms: options.bms
  568. });
  569. this.loadBmsInfo();
  570. this.loadAlarm();
  571. // this.loadIsChild();
  572. },
  573. /**
  574. * 生命周期函数--监听页面显示
  575. */
  576. onShow: function() {},
  577. /**
  578. * 页面相关事件处理函数--监听用户下拉动作
  579. */
  580. onPullDownRefresh: function() {},
  581. /**
  582. * 页面上拉触底事件的处理函数
  583. */
  584. onReachBottom: function() {},
  585. methods: {
  586. bindSelectedTab: function(e) {
  587. const idx = e.currentTarget.dataset.idx;
  588. this.setData({
  589. selectedTabIndex: idx
  590. });
  591. },
  592. loadIsChild: function() {
  593. const pData = {
  594. pid: '27669'
  595. };
  596. const that = this;
  597. http.postApi(config.API_IS_CHILD, pData, function(resp) {
  598. uni.hideLoading();
  599. if (resp.data.code === 200) {
  600. that.setData({
  601. isShowGreen: resp.data.data.res
  602. });
  603. }
  604. });
  605. },
  606. refreshData: function() {
  607. const device = {
  608. bt_type: this.bt_type,
  609. mac_id: this.battery_sn,
  610. device_type: this.deviceType,
  611. btid: this.btid,
  612. btkey: this.btkey,
  613. bms: this.bms
  614. };
  615. console.log('1111');
  616. if (bluetooth.isUniversalBluetoothPlugin(device)) {
  617. console.log('2222');
  618. if (bluetooth.isConnected(this.battery_sn)) {
  619. bluetooth.onCharacteristicStateChange(this.battery_sn, 'home', (data) => {
  620. if (bluetooth.bluetoothDeviceConfig && data != null) {
  621. common.reportBms(device.mac_id, data, function(success) {});
  622. }
  623. });
  624. bluetooth.onConnectionStateChange(this.battery_sn, 'list', (res) => {});
  625. const me = this;
  626. bluetooth.stateUpdate(
  627. this.battery_sn,
  628. (res) => {
  629. me.loadBmsInfo();
  630. },
  631. (res) => {
  632. me.loadBmsInfo();
  633. }
  634. );
  635. } else {
  636. this.bluetoothConnect();
  637. }
  638. } else {
  639. this.loadBmsInfo();
  640. }
  641. },
  642. loadBmsInfo: function() {
  643. console.log('111');
  644. var endTime = new Date().getTime();
  645. if (endTime - this.curTime > 4000) {
  646. common.loading(this);
  647. const pData = {
  648. macid: this.battery_sn
  649. };
  650. const me = this;
  651. http.postApi(config.API_BMS_STATE, pData, function(resp) {
  652. uni.hideLoading();
  653. if (resp.data.code === 200) {
  654. const bmsInfo = resp.data.data;
  655. if (!bmsInfo) {
  656. common.simpleToast(me,me.$t('BMS数据暂无'));
  657. setTimeout(function() {
  658. uni.navigateBack({
  659. delta: 1
  660. });
  661. }, 1500);
  662. }
  663. me.setData({
  664. battery_sn: me.battery_sn,
  665. bmsInfo: resp.data.data
  666. });
  667. if (me.userInfo.type != 'group') {
  668. if (me.bmsInfo.display_bms - 0 === 0) {
  669. me.setData({
  670. display_bms: false
  671. });
  672. }
  673. }
  674. } else {
  675. setTimeout(function() {
  676. uni.navigateBack({
  677. delta: 1
  678. });
  679. }, 1500);
  680. }
  681. });
  682. }
  683. },
  684. bluetoothConnect() {
  685. const device = {
  686. bt_type: this.bt_type,
  687. mac_id: this.battery_sn,
  688. device_type: this.deviceType,
  689. btid: this.btid,
  690. btkey: this.btkey,
  691. bms: this.bms
  692. };
  693. const me = this;
  694. bluetooth.openBluetoothAdapter(
  695. (res) => {
  696. bluetooth.connectDevice(
  697. device,
  698. () => {
  699. bluetooth.onCharacteristicStateChange(device.mac_id, 'home', (data) => {
  700. if (bluetooth.bluetoothDeviceConfig && data != null) {
  701. common.reportBms(device.mac_id, data, function(success) {});
  702. }
  703. });
  704. bluetooth.onConnectionStateChange(device.mac_id, 'home', (res) => {});
  705. bluetooth.stateUpdate(
  706. me.battery_sn,
  707. (res) => {
  708. me.loadBmsInfo();
  709. },
  710. (res) => {
  711. me.loadBmsInfo();
  712. }
  713. );
  714. },
  715. (res) => {
  716. me.loadBmsInfo();
  717. if (me.isShowModal) {
  718. return;
  719. }
  720. me.setData({
  721. isShowModal: true
  722. });
  723. uni.showModal({
  724. content: me.$t('连接电池失败,请靠近电池重试'),
  725. confirmText: me.$t('重试'),
  726. success: (res) => {
  727. if (res.confirm) {
  728. console.log('点击链接1');
  729. me.setData({
  730. isShowModal: false
  731. });
  732. me.bluetoothConnect();
  733. } else {
  734. me.setData({
  735. isShowModal: false
  736. });
  737. }
  738. },
  739. fail: (res) => {}
  740. });
  741. }
  742. );
  743. },
  744. (res) => {
  745. me.loadBmsInfo();
  746. if (me.isShowModal) {
  747. return;
  748. }
  749. me.setData({
  750. isShowModal: true
  751. });
  752. uni.showModal({
  753. content: me.$t('需使用手机蓝牙功能,请打开蓝牙') + res.errCode,
  754. confirmText: me.$t('重试'),
  755. success: (res) => {
  756. // var me = this
  757. if (res.confirm) {
  758. console.log('点击链接2');
  759. me.bluetoothConnect();
  760. } else {
  761. me.setData({
  762. isShowModal: false
  763. });
  764. }
  765. },
  766. fail: (res) => {}
  767. });
  768. }
  769. );
  770. },
  771. bindPickerChange: function(e) {
  772. var bmsInfo = this.bmsInfo;
  773. bmsInfo.sets.forEach((item, index) => {
  774. item.vars.forEach((v, i) => {
  775. if (v.name == e.currentTarget.dataset.data.name) {
  776. bmsInfo.sets[index].vars[i].set = bmsInfo.sets[index].vars[i].option[
  777. parseInt(e.detail.value)].value;
  778. }
  779. });
  780. });
  781. this.setData({
  782. bmsInfo: bmsInfo
  783. });
  784. },
  785. bindInput: function(e) {
  786. var bmsInfo = this.bmsInfo;
  787. bmsInfo.sets.forEach((item, index) => {
  788. item.vars.forEach((v, i) => {
  789. if (v.name == e.currentTarget.dataset.data.name) {
  790. bmsInfo.sets[index].vars[i].set = e.detail.value;
  791. }
  792. });
  793. });
  794. this.setData({
  795. bmsInfo: bmsInfo
  796. });
  797. },
  798. bindSet: function(e) {
  799. var me = this
  800. var item = e.currentTarget.dataset.data;
  801. // var item = {
  802. // name:"0xAA",
  803. // set:"50"
  804. // }
  805. if (!item.set) {
  806. common.simpleToast(me,me.$t('请设置参数'));
  807. return;
  808. }
  809. const device = {
  810. bt_type: this.bt_type,
  811. mac_id: this.battery_sn,
  812. device_type: this.deviceType,
  813. btid: this.btid,
  814. btkey: this.btkey,
  815. bms: this.bms,
  816. name: item.name,
  817. value: item.set
  818. };
  819. console.log(device);
  820. if (bluetooth.isUniversalBluetoothPlugin(device) && bluetooth.bmsSet(device)) {
  821. this.bindBTSet(device);
  822. }
  823. common.loading(this);
  824. const pData = {
  825. macid: this.battery_sn,
  826. name: item.name,
  827. value: item.set
  828. };
  829. http.postApi(config.API_BMS_SET, pData, function(resp) {
  830. uni.hideLoading();
  831. if (resp.data.code === 200) {
  832. common.simpleToast(me,me.$t('设置成功'));
  833. } else {
  834. common.simpleToast(me,resp.data.msg);
  835. }
  836. });
  837. },
  838. bindBTSet(device) {
  839. bluetooth.bmsSet(
  840. device,
  841. (res) => {
  842. common.simpleToast(this,this.$t('发送成功'));
  843. },
  844. () => {
  845. common.simpleToast(this,this.$t('发送失败'));
  846. }
  847. );
  848. // ZXBTS.bmsSet(device)
  849. },
  850. bindChargingMos: function(e) {
  851. var me = this;
  852. var item = e.currentTarget.dataset.data;
  853. const pData = {
  854. macid: this.battery_sn,
  855. value: item
  856. };
  857. console.log(this.bmsInfo);
  858. const connection_state = bluetooth.getConnectionState(this.battery_sn);
  859. if (connection_state) {
  860. if (bluetooth.isConnected(this.battery_sn)) {
  861. // if(bluetooth.haveBMSForBT(connection_state.device)) {
  862. bluetooth.bmsChargingMOS(pData.macid, pData.value, () => {
  863. common.simpleToast(me,me.$t('设置成功'));
  864. setTimeout(function() {
  865. bluetooth.stateUpdate(
  866. me.battery_sn,
  867. (res) => {},
  868. (res) => {}
  869. );
  870. }, 2000);
  871. // bluetooth.stateUpdate(this.data.battery_sn)
  872. });
  873. return;
  874. } else {
  875. common.simpleToast(me,me.$t('蓝牙未连接'));
  876. }
  877. // }
  878. }
  879. common.loading(this);
  880. http.postApi(config.API_BMS_CHARGING_MOS, pData, function(resp) {
  881. uni.hideLoading();
  882. if (resp.data.code === 200) {
  883. common.simpleToast(me,me.$t('设置成功'));
  884. } else {
  885. common.simpleToast(me,resp.data.msg);
  886. }
  887. });
  888. },
  889. bindDischargeMos: function(e) {
  890. var me = this;
  891. var item = e.currentTarget.dataset.data;
  892. const pData = {
  893. macid: this.battery_sn,
  894. value: item
  895. };
  896. const connection_state = bluetooth.getConnectionState(this.battery_sn);
  897. if (connection_state) {
  898. if (bluetooth.isConnected(this.battery_sn)) {
  899. // if(bluetooth.haveBMSForBT(connection_state.device)) {
  900. bluetooth.bmsDischargeMOS(pData.macid, pData.value, () => {
  901. common.simpleToast(me,me.$t('设置成功'));
  902. //bluetooth.stateUpdate(this.data.battery_sn)
  903. setTimeout(function() {
  904. bluetooth.stateUpdate(
  905. me.battery_sn,
  906. (res) => {},
  907. (res) => {}
  908. );
  909. }, 2000);
  910. });
  911. return;
  912. // }
  913. } else {
  914. common.simpleToast(me,me.$t('蓝牙连接失败'));
  915. }
  916. }
  917. common.loading(this);
  918. http.postApi(config.API_BMS_DISCHARGARGE_MOS, pData, function(resp) {
  919. uni.hideLoading();
  920. if (resp.data.code === 200) {
  921. common.simpleToast(me,me.$t('设置成功'));
  922. } else {
  923. common.simpleToast(me,resp.data.msg);
  924. }
  925. });
  926. },
  927. bindRestart: function(e) {
  928. common.loading(this);
  929. const pData = {
  930. macid: this.battery_sn
  931. };
  932. const me = this
  933. http.postApi(config.API_BMS_RESTART, pData, function(resp) {
  934. uni.hideLoading();
  935. if (resp.data.code === 200) {
  936. common.simpleToast(me,me.$t('设置成功'));
  937. } else {
  938. common.simpleToast(me,resp.data.msg);
  939. }
  940. });
  941. },
  942. bindClose: function(e) {
  943. common.loading(this);
  944. const pData = {
  945. macid: this.battery_sn
  946. };
  947. const me = this
  948. http.postApi(config.API_BMS_CLOSE, pData, function(resp) {
  949. uni.hideLoading();
  950. if (resp.data.code === 200) {
  951. common.simpleToast(me,me.$t('设置成功'));
  952. } else {
  953. common.simpleToast(me,resp.data.msg);
  954. }
  955. });
  956. },
  957. bindCurrentZero: function(e) {
  958. common.loading(this);
  959. const pData = {
  960. macid: this.battery_sn
  961. };
  962. const me = this
  963. http.postApi(config.API_BMS_CURRENT_ZERO, pData, function(resp) {
  964. uni.hideLoading();
  965. if (resp.data.code === 200) {
  966. common.simpleToast(me,me.$t('设置成功'));
  967. } else {
  968. common.simpleToast(me,resp.data.msg);
  969. }
  970. });
  971. },
  972. bindAlarmDateChange(e) {
  973. this.setData({
  974. alarmDate: e.detail.value
  975. });
  976. this.loadAlarm();
  977. },
  978. loadAlarm() {
  979. const begin_time = parseInt(new Date(this.alarmDate).getTime() / 1000);
  980. const end_time = begin_time + 86400 - 1;
  981. common.loading(this);
  982. http.postApi(
  983. config.API_BMS_ALARM, {
  984. macid: this.battery_sn,
  985. begin_time: begin_time,
  986. end_time: end_time
  987. },
  988. (resp) => {
  989. uni.hideLoading();
  990. if (resp.data.code === 200) {
  991. this.setData({
  992. alarmList: resp.data.data.list
  993. });
  994. } else {
  995. //common.simpleToast(this,resp.data.msg)
  996. }
  997. }
  998. );
  999. },
  1000. bindBTPickerChange: function(e) {
  1001. var btBmsInfo = this.btBmsInfo;
  1002. btBmsInfo.btsets.forEach((item, index) => {
  1003. item.vars.forEach((v, i) => {
  1004. if (v.name == e.currentTarget.dataset.data.name) {
  1005. btBmsInfo.btsets[index].vars[i].set = e.detail.value;
  1006. }
  1007. });
  1008. });
  1009. this.setData({
  1010. btBmsInfo: btBmsInfo
  1011. });
  1012. },
  1013. bindBTInput: function(e) {
  1014. var btBmsInfo = this.btBmsInfo;
  1015. btBmsInfo.btsets.forEach((item, index) => {
  1016. item.vars.forEach((v, i) => {
  1017. if (v.name == e.currentTarget.dataset.data.name) {
  1018. btBmsInfo.btsets[index].vars[i].set = e.detail.value;
  1019. }
  1020. });
  1021. });
  1022. this.setData({
  1023. btBmsInfo: btBmsInfo
  1024. });
  1025. }
  1026. }
  1027. };
  1028. </script>
  1029. <style>
  1030. @import './bms.css';
  1031. </style>