bms - 副本.vue 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071
  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. <!-- <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>{{$t('刷新')}}</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. {{$t('电池数量') + ':'}}
  51. <text class="param-value">{{ btBmsInfo ? btBmsInfo.state.count : bmsInfo.state.count + $t('串')}}</text>
  52. </view>
  53. <view class="param">
  54. {{$t('剩余容量') + ':'}}
  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. {{$t('总电压') + ':'}}
  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. {{$t('电流数据') + ':'}}
  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. {{$t('最低电压') + ':'}}
  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. {{$t('最高电压') + ':'}}
  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. {{$t('相差电压') + ':'}}
  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. {{$t('平均电压') + ':'}}
  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. {{$t('温度数量') + ':'}}
  98. <text
  99. class="param-value">{{ btBmsInfo ? btBmsInfo.state.tempCount : bmsInfo.state.tempCount + $t('个') }}</text>
  100. </view>
  101. <view class="param">
  102. {{$t('标称容量') + ':'}}
  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. {{$t('温度') + ':'}}
  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. {{$t('功率') + ':'}}
  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. {{$t('充电') + $t('继电器') + '/MOS:'}}
  137. <text
  138. class="param-value">{{ (btBmsInfo ? btBmsInfo.state.chargingMOS : bmsInfo.state.chargingMOS) == 0 ? $t('关闭') : $t('开启') }}</text>
  139. </view>
  140. <view class="param">
  141. {{$t('放电') + $t('继电器') + '/MOS:'}}
  142. <text
  143. class="param-value">{{ (btBmsInfo ? btBmsInfo.state.dischargeMOS : bmsInfo.state.dischargeMOS) == 0 ? $t('关闭') : $t('开启') }}</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. {{$t('充电状态') + ':'}}
  149. <text class="param-value">
  150. {{
  151. (btBmsInfo ? btBmsInfo.state.chargeState : bmsInfo.state.chargeState) == 0
  152. ? $t('静止')
  153. : (btBmsInfo ? btBmsInfo.state.chargeState : bmsInfo.state.chargeState) == 1
  154. ? $t('充电')
  155. : $t('放电')
  156. }}
  157. </text>
  158. </view>
  159. <view v-if="bmsInfo.third_device_type == 'KYYWJT'" class="param">
  160. {{$t('充电状态') + ':'}}
  161. <text class="param-value">
  162. {{
  163. bmsInfo.state.KYChargeState == 0
  164. ? $t('未充电')
  165. : bmsInfo.state.KYChargeState == 1
  166. ? $t('充电中')
  167. : bmsInfo.state.KYChargeState == 2
  168. ? $t('充电完成')
  169. : $t('充电故障')
  170. }}
  171. </text>
  172. </view>
  173. <view class="param">
  174. {{$t('均衡开闭') + ':'}}
  175. <text
  176. class="param-value">{{ (btBmsInfo ? btBmsInfo.state.equilibrium : bmsInfo.state.equilibrium) == 0 ? $t('关闭') : $t('开启') }}</text>
  177. </view>
  178. </view>
  179. <view class="param-item flex-row flex-between">
  180. <view class="param">
  181. {{$t('循环次数') + ':'}}
  182. <text class="param-value">{{ btBmsInfo ? btBmsInfo.state.cycle : bmsInfo.state.cycle }}
  183. 次</text>
  184. </view>
  185. <view class="param">
  186. {{$t('固件版本') + ':'}}
  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. {{$t('连接状态') + ':'}}
  194. <text
  195. class="param-value">{{ (btBmsInfo ? btBmsInfo.state.connectState : bmsInfo.state.connectState) == 0 ? $t('未连接') : $t('已连接') }}</text>
  196. </view>
  197. <view v-if="bmsInfo.third_device_type == 'KYYWJT'" class="param">
  198. {{$t('电池状态') + ':'}}
  199. <text class="param-value">
  200. {{
  201. bmsInfo.state.chargeState == 0 ? $t('初始化') : bmsInfo.state.chargeState == 1 ? $t('高压断开') : bmsInfo.state.chargeState == 2 ? $t('预充电') : $t('高压连接')
  202. }}
  203. </text>
  204. </view>
  205. <view class="param">
  206. {{$t('设备编码') + ':'}}
  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">{{$t('故障报警')}}</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">{{$t('没有数据')}}
  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>{{$t('刷新')}}</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">{{$t('设置')}}</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>{{$t('更新时间') + ':'}}</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>{{$t('刷新')}}</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. {{$t('充电开关')+ ':'}}
  333. <text class="param-value">
  334. {{ btBmsInfo ? (btBmsInfo.state.chargingMOSOnOff == 0 ? $t('关闭') : $t('开启')) : bmsInfo.state.chargingMOSOnOff == 0 ? $t('关闭') : $t('开启') }}
  335. </text>
  336. </view>
  337. <view class="command-control">
  338. <text class="btn-def" @tap="bindChargingMos" data-data="1">{{$t('开启')}}</text>
  339. <text class="btn-def" @tap="bindChargingMos" data-data="0">{{$t('关闭')}}</text>
  340. </view>
  341. </view>
  342. <view class="param-item flex-row flex-between">
  343. <view class="param">
  344. {{$t('放电开关')+ ':'}}
  345. <text class="param-value">
  346. {{ btBmsInfo ? (btBmsInfo.state.dischargeMOSOnOff == 0 ? $t('关闭') : $t('开启')) : bmsInfo.state.dischargeMOSOnOff == 0 ? $t('关闭') : $t('开启') }}
  347. </text>
  348. </view>
  349. <view class="command-control">
  350. <text class="btn-def" @tap="bindDischargeMos" data-data="1">{{$t('开启')}}</text>
  351. <text class="btn-def" @tap="bindDischargeMos" data-data="0">{{$t('关闭')}}</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">{{$t('重启系统')}}</view>
  358. <view class="command-control">
  359. <text class="btn-def" @tap="bindRestart">{{$t('重启')}}</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">{{$t('关闭系统')}}</view>
  366. <view class="command-control">
  367. <text class="btn-def" @tap="bindClose">{{$t('关闭')}}</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">{{$t('电流归零')}}</view>
  374. <view class="command-control">
  375. <text class="btn-def" @tap="bindCurrentZero">{{$t('归零')}}</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">{{$t('实时状态')}}</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. {{$t('参数设置')}}
  413. </view>
  414. <view v-if="display_bms" :class="'tab-item ' + (selectedTabIndex == 3 ? 'tab-selected' : '')"
  415. @tap="bindSelectedTab" data-idx="3">{{$t('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(this);
  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(me,me.$t('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: me.$t('连接电池失败,请靠近电池重试'),
  730. confirmText: me.$t('重试'),
  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: me.$t('需使用手机蓝牙功能,请打开蓝牙') + res.errCode,
  759. confirmText: me.$t('重试'),
  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 me = this
  805. var item = e.currentTarget.dataset.data;
  806. // var item = {
  807. // name:"0xAA",
  808. // set:"50"
  809. // }
  810. if (!item.set) {
  811. common.simpleToast(me,me.$t('请设置参数'));
  812. return;
  813. }
  814. const device = {
  815. bt_type: this.bt_type,
  816. mac_id: this.battery_sn,
  817. device_type: this.deviceType,
  818. btid: this.btid,
  819. btkey: this.btkey,
  820. bms: this.bms,
  821. name: item.name,
  822. value: item.set
  823. };
  824. console.log(device);
  825. if (bluetooth.isUniversalBluetoothPlugin(device) && bluetooth.bmsSet(device)) {
  826. this.bindBTSet(device);
  827. }
  828. common.loading(this);
  829. const pData = {
  830. macid: this.battery_sn,
  831. name: item.name,
  832. value: item.set
  833. };
  834. http.postApi(config.API_BMS_SET, pData, function(resp) {
  835. uni.hideLoading();
  836. if (resp.data.code === 200) {
  837. common.simpleToast(me,me.$t('设置成功'));
  838. } else {
  839. common.simpleToast(me,resp.data.msg);
  840. }
  841. });
  842. },
  843. bindBTSet(device) {
  844. bluetooth.bmsSet(
  845. device,
  846. (res) => {
  847. common.simpleToast(this,this.$t('发送成功'));
  848. },
  849. () => {
  850. common.simpleToast(this,this.$t('发送失败'));
  851. }
  852. );
  853. // ZXBTS.bmsSet(device)
  854. },
  855. bindChargingMos: function(e) {
  856. var me = this;
  857. var item = e.currentTarget.dataset.data;
  858. const pData = {
  859. macid: this.battery_sn,
  860. value: item
  861. };
  862. console.log(this.bmsInfo);
  863. const connection_state = bluetooth.getConnectionState(this.battery_sn);
  864. if (connection_state) {
  865. if (bluetooth.isConnected(this.battery_sn)) {
  866. // if(bluetooth.haveBMSForBT(connection_state.device)) {
  867. bluetooth.bmsChargingMOS(pData.macid, pData.value, () => {
  868. common.simpleToast(me,me.$t('设置成功'));
  869. setTimeout(function() {
  870. bluetooth.stateUpdate(
  871. me.battery_sn,
  872. (res) => {},
  873. (res) => {}
  874. );
  875. }, 2000);
  876. // bluetooth.stateUpdate(this.data.battery_sn)
  877. });
  878. return;
  879. } else {
  880. common.simpleToast(me,me.$t('蓝牙未连接'));
  881. }
  882. // }
  883. }
  884. common.loading(this);
  885. http.postApi(config.API_BMS_CHARGING_MOS, pData, function(resp) {
  886. uni.hideLoading();
  887. if (resp.data.code === 200) {
  888. common.simpleToast(me,me.$t('设置成功'));
  889. } else {
  890. common.simpleToast(me,resp.data.msg);
  891. }
  892. });
  893. },
  894. bindDischargeMos: function(e) {
  895. var me = this;
  896. var item = e.currentTarget.dataset.data;
  897. const pData = {
  898. macid: this.battery_sn,
  899. value: item
  900. };
  901. const connection_state = bluetooth.getConnectionState(this.battery_sn);
  902. if (connection_state) {
  903. if (bluetooth.isConnected(this.battery_sn)) {
  904. // if(bluetooth.haveBMSForBT(connection_state.device)) {
  905. bluetooth.bmsDischargeMOS(pData.macid, pData.value, () => {
  906. common.simpleToast(me,me.$t('设置成功'));
  907. //bluetooth.stateUpdate(this.data.battery_sn)
  908. setTimeout(function() {
  909. bluetooth.stateUpdate(
  910. me.battery_sn,
  911. (res) => {},
  912. (res) => {}
  913. );
  914. }, 2000);
  915. });
  916. return;
  917. // }
  918. } else {
  919. common.simpleToast(me,me.$t('蓝牙连接失败'));
  920. }
  921. }
  922. common.loading(this);
  923. http.postApi(config.API_BMS_DISCHARGARGE_MOS, pData, function(resp) {
  924. uni.hideLoading();
  925. if (resp.data.code === 200) {
  926. common.simpleToast(me,me.$t('设置成功'));
  927. } else {
  928. common.simpleToast(me,resp.data.msg);
  929. }
  930. });
  931. },
  932. bindRestart: function(e) {
  933. common.loading(this);
  934. const pData = {
  935. macid: this.battery_sn
  936. };
  937. const me = this
  938. http.postApi(config.API_BMS_RESTART, pData, function(resp) {
  939. uni.hideLoading();
  940. if (resp.data.code === 200) {
  941. common.simpleToast(me,me.$t('设置成功'));
  942. } else {
  943. common.simpleToast(me,resp.data.msg);
  944. }
  945. });
  946. },
  947. bindClose: function(e) {
  948. common.loading(this);
  949. const pData = {
  950. macid: this.battery_sn
  951. };
  952. const me = this
  953. http.postApi(config.API_BMS_CLOSE, pData, function(resp) {
  954. uni.hideLoading();
  955. if (resp.data.code === 200) {
  956. common.simpleToast(me,me.$t('设置成功'));
  957. } else {
  958. common.simpleToast(me,resp.data.msg);
  959. }
  960. });
  961. },
  962. bindCurrentZero: function(e) {
  963. common.loading(this);
  964. const pData = {
  965. macid: this.battery_sn
  966. };
  967. const me = this
  968. http.postApi(config.API_BMS_CURRENT_ZERO, pData, function(resp) {
  969. uni.hideLoading();
  970. if (resp.data.code === 200) {
  971. common.simpleToast(me,me.$t('设置成功'));
  972. } else {
  973. common.simpleToast(me,resp.data.msg);
  974. }
  975. });
  976. },
  977. bindAlarmDateChange(e) {
  978. this.setData({
  979. alarmDate: e.detail.value
  980. });
  981. this.loadAlarm();
  982. },
  983. loadAlarm() {
  984. const begin_time = parseInt(new Date(this.alarmDate).getTime() / 1000);
  985. const end_time = begin_time + 86400 - 1;
  986. common.loading(this);
  987. http.postApi(
  988. config.API_BMS_ALARM, {
  989. macid: this.battery_sn,
  990. begin_time: begin_time,
  991. end_time: end_time
  992. },
  993. (resp) => {
  994. uni.hideLoading();
  995. if (resp.data.code === 200) {
  996. this.setData({
  997. alarmList: resp.data.data.list
  998. });
  999. } else {
  1000. //common.simpleToast(this,resp.data.msg)
  1001. }
  1002. }
  1003. );
  1004. },
  1005. bindBTPickerChange: function(e) {
  1006. var btBmsInfo = this.btBmsInfo;
  1007. btBmsInfo.btsets.forEach((item, index) => {
  1008. item.vars.forEach((v, i) => {
  1009. if (v.name == e.currentTarget.dataset.data.name) {
  1010. btBmsInfo.btsets[index].vars[i].set = e.detail.value;
  1011. }
  1012. });
  1013. });
  1014. this.setData({
  1015. btBmsInfo: btBmsInfo
  1016. });
  1017. },
  1018. bindBTInput: function(e) {
  1019. var btBmsInfo = this.btBmsInfo;
  1020. btBmsInfo.btsets.forEach((item, index) => {
  1021. item.vars.forEach((v, i) => {
  1022. if (v.name == e.currentTarget.dataset.data.name) {
  1023. btBmsInfo.btsets[index].vars[i].set = e.detail.value;
  1024. }
  1025. });
  1026. });
  1027. this.setData({
  1028. btBmsInfo: btBmsInfo
  1029. });
  1030. }
  1031. }
  1032. };
  1033. </script>
  1034. <style>
  1035. @import './bms.css';
  1036. </style>