bms.vue 34 KB

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