bms.vue 35 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070
  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. {{$t('次')}}</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. const battery_sn = options.macid;
  517. const userInfo = storage.getUserInfo();
  518. uni.setNavigationBarTitle({
  519. title: this.$t('BMS信息')
  520. });
  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. uni.setNavigationBarTitle({
  578. title: this.$t('BMS信息')
  579. });
  580. },
  581. /**
  582. * 页面相关事件处理函数--监听用户下拉动作
  583. */
  584. onPullDownRefresh: function() {},
  585. /**
  586. * 页面上拉触底事件的处理函数
  587. */
  588. onReachBottom: function() {},
  589. methods: {
  590. bindSelectedTab: function(e) {
  591. const idx = e.currentTarget.dataset.idx;
  592. this.setData({
  593. selectedTabIndex: idx
  594. });
  595. },
  596. loadIsChild: function() {
  597. const pData = {
  598. pid: '27669'
  599. };
  600. const that = this;
  601. http.postApi(config.API_IS_CHILD, pData, function(resp) {
  602. uni.hideLoading();
  603. if (resp.data.code === 200) {
  604. that.setData({
  605. isShowGreen: resp.data.data.res
  606. });
  607. }
  608. });
  609. },
  610. refreshData: function() {
  611. const device = {
  612. bt_type: this.bt_type,
  613. mac_id: this.battery_sn,
  614. device_type: this.deviceType,
  615. btid: this.btid,
  616. btkey: this.btkey,
  617. bms: this.bms
  618. };
  619. console.log('1111');
  620. if (bluetooth.isUniversalBluetoothPlugin(device)) {
  621. console.log('2222');
  622. if (bluetooth.isConnected(this.battery_sn)) {
  623. bluetooth.onCharacteristicStateChange(this.battery_sn, 'home', (data) => {
  624. if (bluetooth.bluetoothDeviceConfig && data != null) {
  625. common.reportBms(device.mac_id, data, function(success) {});
  626. }
  627. });
  628. bluetooth.onConnectionStateChange(this.battery_sn, 'list', (res) => {});
  629. const me = this;
  630. bluetooth.stateUpdate(
  631. this.battery_sn,
  632. (res) => {
  633. me.loadBmsInfo();
  634. },
  635. (res) => {
  636. me.loadBmsInfo();
  637. }
  638. );
  639. } else {
  640. this.bluetoothConnect();
  641. }
  642. } else {
  643. this.loadBmsInfo();
  644. }
  645. },
  646. loadBmsInfo: function() {
  647. console.log('111');
  648. var endTime = new Date().getTime();
  649. if (endTime - this.curTime > 4000) {
  650. common.loading(this);
  651. const pData = {
  652. macid: this.battery_sn
  653. };
  654. const me = this;
  655. http.postApi(config.API_BMS_STATE, pData, function(resp) {
  656. uni.hideLoading();
  657. if (resp.data.code === 200) {
  658. const bmsInfo = resp.data.data;
  659. if (!bmsInfo) {
  660. common.simpleToast(me,me.$t('BMS数据暂无'));
  661. setTimeout(function() {
  662. uni.navigateBack({
  663. delta: 1
  664. });
  665. }, 1500);
  666. }
  667. me.setData({
  668. battery_sn: me.battery_sn,
  669. bmsInfo: resp.data.data
  670. });
  671. if (me.userInfo.type != 'group') {
  672. if (me.bmsInfo.display_bms - 0 === 0) {
  673. me.setData({
  674. display_bms: false
  675. });
  676. }
  677. }
  678. } else {
  679. setTimeout(function() {
  680. uni.navigateBack({
  681. delta: 1
  682. });
  683. }, 1500);
  684. }
  685. });
  686. }
  687. },
  688. bluetoothConnect() {
  689. const device = {
  690. bt_type: this.bt_type,
  691. mac_id: this.battery_sn,
  692. device_type: this.deviceType,
  693. btid: this.btid,
  694. btkey: this.btkey,
  695. bms: this.bms
  696. };
  697. const me = this;
  698. bluetooth.openBluetoothAdapter(
  699. (res) => {
  700. bluetooth.connectDevice(
  701. device,
  702. () => {
  703. bluetooth.onCharacteristicStateChange(device.mac_id, 'home', (data) => {
  704. if (bluetooth.bluetoothDeviceConfig && data != null) {
  705. common.reportBms(device.mac_id, data, function(success) {});
  706. }
  707. });
  708. bluetooth.onConnectionStateChange(device.mac_id, 'home', (res) => {});
  709. bluetooth.stateUpdate(
  710. me.battery_sn,
  711. (res) => {
  712. me.loadBmsInfo();
  713. },
  714. (res) => {
  715. me.loadBmsInfo();
  716. }
  717. );
  718. },
  719. (res) => {
  720. me.loadBmsInfo();
  721. if (me.isShowModal) {
  722. return;
  723. }
  724. me.setData({
  725. isShowModal: true
  726. });
  727. uni.showModal({
  728. content: me.$t('连接电池失败,请靠近电池重试'),
  729. confirmText: me.$t('重试'),
  730. success: (res) => {
  731. if (res.confirm) {
  732. console.log('点击链接1');
  733. me.setData({
  734. isShowModal: false
  735. });
  736. me.bluetoothConnect();
  737. } else {
  738. me.setData({
  739. isShowModal: false
  740. });
  741. }
  742. },
  743. fail: (res) => {}
  744. });
  745. }
  746. );
  747. },
  748. (res) => {
  749. me.loadBmsInfo();
  750. if (me.isShowModal) {
  751. return;
  752. }
  753. me.setData({
  754. isShowModal: true
  755. });
  756. uni.showModal({
  757. content: me.$t('需使用手机蓝牙功能,请打开蓝牙') + res.errCode,
  758. confirmText: me.$t('重试'),
  759. success: (res) => {
  760. // var me = this
  761. if (res.confirm) {
  762. console.log('点击链接2');
  763. me.bluetoothConnect();
  764. } else {
  765. me.setData({
  766. isShowModal: false
  767. });
  768. }
  769. },
  770. fail: (res) => {}
  771. });
  772. }
  773. );
  774. },
  775. bindPickerChange: function(e) {
  776. var bmsInfo = this.bmsInfo;
  777. bmsInfo.sets.forEach((item, index) => {
  778. item.vars.forEach((v, i) => {
  779. if (v.name == e.currentTarget.dataset.data.name) {
  780. bmsInfo.sets[index].vars[i].set = bmsInfo.sets[index].vars[i].option[
  781. parseInt(e.detail.value)].value;
  782. }
  783. });
  784. });
  785. this.setData({
  786. bmsInfo: bmsInfo
  787. });
  788. },
  789. bindInput: function(e) {
  790. var bmsInfo = this.bmsInfo;
  791. bmsInfo.sets.forEach((item, index) => {
  792. item.vars.forEach((v, i) => {
  793. if (v.name == e.currentTarget.dataset.data.name) {
  794. bmsInfo.sets[index].vars[i].set = e.detail.value;
  795. }
  796. });
  797. });
  798. this.setData({
  799. bmsInfo: bmsInfo
  800. });
  801. },
  802. bindSet: function(e) {
  803. var me = this
  804. var item = e.currentTarget.dataset.data;
  805. // var item = {
  806. // name:"0xAA",
  807. // set:"50"
  808. // }
  809. if (!item.set) {
  810. common.simpleToast(me,me.$t('请设置参数'));
  811. return;
  812. }
  813. const device = {
  814. bt_type: this.bt_type,
  815. mac_id: this.battery_sn,
  816. device_type: this.deviceType,
  817. btid: this.btid,
  818. btkey: this.btkey,
  819. bms: this.bms,
  820. name: item.name,
  821. value: item.set
  822. };
  823. console.log(device);
  824. if (bluetooth.isUniversalBluetoothPlugin(device) && bluetooth.bmsSet(device)) {
  825. this.bindBTSet(device);
  826. }
  827. common.loading(this);
  828. const pData = {
  829. macid: this.battery_sn,
  830. name: item.name,
  831. value: item.set
  832. };
  833. http.postApi(config.API_BMS_SET, pData, function(resp) {
  834. uni.hideLoading();
  835. if (resp.data.code === 200) {
  836. common.simpleToast(me,me.$t('设置成功'));
  837. } else {
  838. common.simpleToast(me,resp.data.msg);
  839. }
  840. });
  841. },
  842. bindBTSet(device) {
  843. bluetooth.bmsSet(
  844. device,
  845. (res) => {
  846. common.simpleToast(this,this.$t('发送成功'));
  847. },
  848. () => {
  849. common.simpleToast(this,this.$t('发送失败'));
  850. }
  851. );
  852. // ZXBTS.bmsSet(device)
  853. },
  854. bindChargingMos: function(e) {
  855. var me = this;
  856. var item = e.currentTarget.dataset.data;
  857. const pData = {
  858. macid: this.battery_sn,
  859. value: item
  860. };
  861. console.log(this.bmsInfo);
  862. const connection_state = bluetooth.getConnectionState(this.battery_sn);
  863. if (connection_state) {
  864. if (bluetooth.isConnected(this.battery_sn)) {
  865. // if(bluetooth.haveBMSForBT(connection_state.device)) {
  866. bluetooth.bmsChargingMOS(pData.macid, pData.value, () => {
  867. common.simpleToast(me,me.$t('设置成功'));
  868. setTimeout(function() {
  869. bluetooth.stateUpdate(
  870. me.battery_sn,
  871. (res) => {},
  872. (res) => {}
  873. );
  874. }, 2000);
  875. // bluetooth.stateUpdate(this.data.battery_sn)
  876. });
  877. return;
  878. } else {
  879. common.simpleToast(me,me.$t('蓝牙未连接'));
  880. }
  881. // }
  882. }
  883. common.loading(this);
  884. http.postApi(config.API_BMS_CHARGING_MOS, pData, function(resp) {
  885. uni.hideLoading();
  886. if (resp.data.code === 200) {
  887. common.simpleToast(me,me.$t('设置成功'));
  888. } else {
  889. common.simpleToast(me,resp.data.msg);
  890. }
  891. });
  892. },
  893. bindDischargeMos: function(e) {
  894. var me = this;
  895. var item = e.currentTarget.dataset.data;
  896. const pData = {
  897. macid: this.battery_sn,
  898. value: item
  899. };
  900. const connection_state = bluetooth.getConnectionState(this.battery_sn);
  901. if (connection_state) {
  902. if (bluetooth.isConnected(this.battery_sn)) {
  903. // if(bluetooth.haveBMSForBT(connection_state.device)) {
  904. bluetooth.bmsDischargeMOS(pData.macid, pData.value, () => {
  905. common.simpleToast(me,me.$t('设置成功'));
  906. //bluetooth.stateUpdate(this.data.battery_sn)
  907. setTimeout(function() {
  908. bluetooth.stateUpdate(
  909. me.battery_sn,
  910. (res) => {},
  911. (res) => {}
  912. );
  913. }, 2000);
  914. });
  915. return;
  916. // }
  917. } else {
  918. common.simpleToast(me,me.$t('蓝牙连接失败'));
  919. }
  920. }
  921. common.loading(this);
  922. http.postApi(config.API_BMS_DISCHARGARGE_MOS, pData, function(resp) {
  923. uni.hideLoading();
  924. if (resp.data.code === 200) {
  925. common.simpleToast(me,me.$t('设置成功'));
  926. } else {
  927. common.simpleToast(me,resp.data.msg);
  928. }
  929. });
  930. },
  931. bindRestart: function(e) {
  932. common.loading(this);
  933. const pData = {
  934. macid: this.battery_sn
  935. };
  936. const me = this
  937. http.postApi(config.API_BMS_RESTART, pData, function(resp) {
  938. uni.hideLoading();
  939. if (resp.data.code === 200) {
  940. common.simpleToast(me,me.$t('设置成功'));
  941. } else {
  942. common.simpleToast(me,resp.data.msg);
  943. }
  944. });
  945. },
  946. bindClose: function(e) {
  947. common.loading(this);
  948. const pData = {
  949. macid: this.battery_sn
  950. };
  951. const me = this
  952. http.postApi(config.API_BMS_CLOSE, pData, function(resp) {
  953. uni.hideLoading();
  954. if (resp.data.code === 200) {
  955. common.simpleToast(me,me.$t('设置成功'));
  956. } else {
  957. common.simpleToast(me,resp.data.msg);
  958. }
  959. });
  960. },
  961. bindCurrentZero: function(e) {
  962. common.loading(this);
  963. const pData = {
  964. macid: this.battery_sn
  965. };
  966. const me = this
  967. http.postApi(config.API_BMS_CURRENT_ZERO, pData, function(resp) {
  968. uni.hideLoading();
  969. if (resp.data.code === 200) {
  970. common.simpleToast(me,me.$t('设置成功'));
  971. } else {
  972. common.simpleToast(me,resp.data.msg);
  973. }
  974. });
  975. },
  976. bindAlarmDateChange(e) {
  977. this.setData({
  978. alarmDate: e.detail.value
  979. });
  980. this.loadAlarm();
  981. },
  982. loadAlarm() {
  983. const begin_time = parseInt(new Date(this.alarmDate).getTime() / 1000);
  984. const end_time = begin_time + 86400 - 1;
  985. common.loading(this);
  986. http.postApi(
  987. config.API_BMS_ALARM, {
  988. macid: this.battery_sn,
  989. begin_time: begin_time,
  990. end_time: end_time
  991. },
  992. (resp) => {
  993. uni.hideLoading();
  994. if (resp.data.code === 200) {
  995. this.setData({
  996. alarmList: resp.data.data.list
  997. });
  998. } else {
  999. //common.simpleToast(this,resp.data.msg)
  1000. }
  1001. }
  1002. );
  1003. },
  1004. bindBTPickerChange: function(e) {
  1005. var btBmsInfo = this.btBmsInfo;
  1006. btBmsInfo.btsets.forEach((item, index) => {
  1007. item.vars.forEach((v, i) => {
  1008. if (v.name == e.currentTarget.dataset.data.name) {
  1009. btBmsInfo.btsets[index].vars[i].set = e.detail.value;
  1010. }
  1011. });
  1012. });
  1013. this.setData({
  1014. btBmsInfo: btBmsInfo
  1015. });
  1016. },
  1017. bindBTInput: function(e) {
  1018. var btBmsInfo = this.btBmsInfo;
  1019. btBmsInfo.btsets.forEach((item, index) => {
  1020. item.vars.forEach((v, i) => {
  1021. if (v.name == e.currentTarget.dataset.data.name) {
  1022. btBmsInfo.btsets[index].vars[i].set = e.detail.value;
  1023. }
  1024. });
  1025. });
  1026. this.setData({
  1027. btBmsInfo: btBmsInfo
  1028. });
  1029. }
  1030. }
  1031. };
  1032. </script>
  1033. <style>
  1034. @import './bms.css';
  1035. </style>