bmsbd02.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. <template>
  2. <view class="container">
  3. <view class="tab-container">
  4. <view class="tab-row flex-row flex-around">
  5. <view :class="'tab-item ' + (selectedTabIndex == 1 ? 'tab-selected' : '')" @tap="bindSelectedTab" data-idx="1">实时状态</view>
  6. <view :class="'tab-item ' + (selectedTabIndex == 2 ? 'tab-selected' : '')" @tap="bindSelectedTab" data-idx="2">保护统计</view>
  7. <view :class="'tab-item ' + (selectedTabIndex == 3 ? 'tab-selected' : '')" @tap="bindSelectedTab" data-idx="3">BMS控制</view>
  8. </view>
  9. </view>
  10. <view class="man-body">
  11. <view v-if="selectedTabIndex == 1" class="box-body">
  12. <view class="section-head">
  13. <view class="fresh-area flex-row flex-between">
  14. <view>
  15. <text>更新时间:</text>
  16. <text class="fresh-time">{{ tools.formatTime(bmsInfo.State.BMS_DateTime / 1000) }}</text>
  17. </view>
  18. <view @tap="loadBmsInfo">
  19. <image class="fresh-icon" src="/static/resource/images/fr-icon.png"></image>
  20. <text>刷新</text>
  21. </view>
  22. </view>
  23. <view class="battery-model">
  24. <!-- <image class="battery-model-icon" src="/resource/images/b3.png"></image> -->
  25. <com-ele-quantity :quantity="bmsInfo.State.RC"></com-ele-quantity>
  26. <text></text>
  27. </view>
  28. </view>
  29. <view class="section-body">
  30. <view class="param-item flex-row flex-between">
  31. <view class="param">
  32. 总电压:
  33. <text class="param-value">{{ bmsInfo.State.BetteryV_All }}</text>
  34. V
  35. </view>
  36. <view class="param">
  37. 温控数:
  38. <text class="param-value">{{ bmsInfo.State.TemperatureCount }}</text>
  39. </view>
  40. </view>
  41. <view class="param-item flex-row flex-between">
  42. <view class="param">
  43. 温控明细:
  44. <text class="param-value">
  45. [{{ bmsInfo.State.TC_B_1 }}°C][{{ bmsInfo.State.TC_B_2 }}°C][{{ bmsInfo.State.TC_B_3 }}°C][{{ bmsInfo.State.TC_B_4 }}°C]
  46. </text>
  47. </view>
  48. </view>
  49. <view class="param-item flex-row flex-between">
  50. <view class="param">
  51. 过压保护:
  52. <text class="param-value"></text>
  53. </view>
  54. <view class="param">
  55. 欠压保护:
  56. <text class="param-value"></text>
  57. </view>
  58. </view>
  59. <view class="param-item flex-row flex-between">
  60. <view class="param">
  61. 电流数据:
  62. <text class="param-value">{{ bmsInfo.State.BetteryA }}</text>
  63. A
  64. </view>
  65. <view class="param">
  66. 循环次数:
  67. <text class="param-value">{{ bmsInfo.State.BXHC }}</text>
  68. </view>
  69. </view>
  70. <view class="param-item flex-row flex-between">
  71. <view class="param">
  72. 剩余容量:
  73. <text class="param-value">{{ bmsInfo.State.RC }}%</text>
  74. </view>
  75. <view class="param">
  76. 剩余容量:
  77. <text class="param-value"></text>
  78. </view>
  79. </view>
  80. <view class="param-item flex-row flex-between">
  81. <view class="param">
  82. 均衡开闭:
  83. <text class="param-value">{{ bmsInfo.State.EM == 'Open' ? '开启' : '关闭' }}</text>
  84. </view>
  85. <view class="param">
  86. 标称容量:
  87. <text class="param-value">{{ bmsInfo.State.JZRL }}</text>
  88. AH
  89. </view>
  90. </view>
  91. <view class="param-item flex-row flex-between">
  92. <view class="param">
  93. 设备编码:
  94. <text class="param-value">{{ bmsInfo.State.SBBM }}</text>
  95. </view>
  96. <view class="param">
  97. 出厂日期:
  98. <text class="param-value">{{ bmsInfo.State.CCXX }}</text>
  99. </view>
  100. </view>
  101. </view>
  102. <view class="section-body">
  103. <view class="param-item flex-row flex-between">
  104. <view class="param">
  105. 电池数量:
  106. <text class="param-value">{{ bmsInfo.State.BetteryC }}</text>
  107. </view>
  108. </view>
  109. <view class="param-item flex-row flex-between">
  110. <view class="param">
  111. 最低电压:
  112. <text class="param-value">{{ bmsInfo.State.min_v }}</text>
  113. V
  114. </view>
  115. <view class="param">
  116. 最高电压:
  117. <text class="param-value">{{ bmsInfo.State.max_v }}</text>
  118. V
  119. </view>
  120. </view>
  121. <view class="param-item flex-row flex-between">
  122. <view class="param">
  123. 相差电压:
  124. <text class="param-value">{{ bmsInfo.State.span_min_max }}</text>
  125. V
  126. </view>
  127. </view>
  128. <view class="param-item batterys-show">
  129. <view class="battery-row">
  130. <!-- <view class="battery-block" wx:for="{{bmsInfo.State.betList}}" wx:key="unique"> -->
  131. <view class="battery-block" v-for="(item, index) in batteryNumArr" :key="index">
  132. <view class="battery-bat">
  133. <view class="i-bat">
  134. <image class="i-bat-icon" src="/static/resource/images/b0.png"></image>
  135. <view class="i-bat-index">{{ index + 1 }}</view>
  136. </view>
  137. <view class="i-vol">{{ bmsInfo.State.betList[index] ? bmsInfo.State.betList[index] : 0 }}</view>
  138. </view>
  139. </view>
  140. </view>
  141. </view>
  142. </view>
  143. </view>
  144. <view v-else-if="selectedTabIndex == 2" class="box-body">
  145. <view class="section-head"></view>
  146. <view class="section-body">
  147. <view class="param-item flex-row flex-between">
  148. <view class="param">
  149. 刷新时间:
  150. <text class="fresh-time">{{ tools.formatTime(bmsInfo.State.BMS_DateTime / 1000) }}</text>
  151. </view>
  152. </view>
  153. <view class="param-item flex-row flex-between">
  154. <view class="param">
  155. 1.短路保护次数:
  156. <text class="param-value">0</text>
  157. </view>
  158. </view>
  159. <view class="param-item flex-row flex-between">
  160. <view class="param">
  161. 2.充电过流次数:
  162. <text class="param-value">0</text>
  163. </view>
  164. </view>
  165. <view class="param-item flex-row flex-between">
  166. <view class="param">
  167. 3.放电过流次数:
  168. <text class="param-value">0</text>
  169. </view>
  170. </view>
  171. <view class="param-item flex-row flex-between">
  172. <view class="param">
  173. 4.单体过压次数:
  174. <text class="param-value">0</text>
  175. </view>
  176. </view>
  177. <view class="param-item flex-row flex-between">
  178. <view class="param">
  179. 5.单体欠压次数:
  180. <text class="param-value">0</text>
  181. </view>
  182. </view>
  183. <view class="param-item flex-row flex-between">
  184. <view class="param">
  185. 6.充电高温次数:
  186. <text class="param-value">0</text>
  187. </view>
  188. </view>
  189. <view class="param-item flex-row flex-between">
  190. <view class="param">
  191. 7.充电低温次数:
  192. <text class="param-value">0</text>
  193. </view>
  194. </view>
  195. <view class="param-item flex-row flex-between">
  196. <view class="param">
  197. 8.放电高温次数:
  198. <text class="param-value">0</text>
  199. </view>
  200. </view>
  201. <view class="param-item flex-row flex-between">
  202. <view class="param">
  203. 9.放电低温次数:
  204. <text class="param-value">0</text>
  205. </view>
  206. </view>
  207. <view class="param-item flex-row flex-between">
  208. <view class="param">
  209. 10.整体过压次数:
  210. <text class="param-value">0</text>
  211. </view>
  212. </view>
  213. <view class="param-item flex-row flex-between">
  214. <view class="param">
  215. 11.整体欠压次数:
  216. <text class="param-value">0</text>
  217. </view>
  218. </view>
  219. </view>
  220. </view>
  221. <view v-else-if="selectedTabIndex == 3" class="box-body">
  222. <view class="section-head">
  223. <view class="fresh-area flex-row flex-between">
  224. <view>
  225. <text>更新时间:</text>
  226. <text class="fresh-time">{{ tools.formatTime(bmsInfo.State.BMS_DateTime / 1000) }}</text>
  227. </view>
  228. <view @tap="loadBmsInfo">
  229. <image class="fresh-icon" src="/static/resource/images/fr-icon.png"></image>
  230. <text>刷新</text>
  231. </view>
  232. </view>
  233. </view>
  234. <view class="section-body">
  235. <view class="param-item flex-row flex-between">
  236. <view class="param">
  237. MOS充电开关:
  238. <text class="param-value">{{ bmsInfo.Seting.EMST == 'Close' ? '关闭' : '开启' }}</text>
  239. </view>
  240. <view class="command-control">
  241. <text class="btn-def">开启</text>
  242. <text class="btn-def">关闭</text>
  243. </view>
  244. </view>
  245. <view class="param-item flex-row flex-between">
  246. <view class="param">
  247. MOS放电开关:
  248. <text class="param-value">{{ bmsInfo.Seting.CHON == 'Close' ? '关闭' : '开启' }}</text>
  249. </view>
  250. <view class="command-control">
  251. <text class="btn-def">开启</text>
  252. <text class="btn-def">关闭</text>
  253. </view>
  254. </view>
  255. </view>
  256. </view>
  257. </view>
  258. </view>
  259. </template>
  260. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  261. <script>
  262. import comEleQuantity from '@/component/comEleQuantity/comEleQuantity';
  263. // pages/bms/bms.js
  264. var config = require('../../common/config.js');
  265. var http = require('../../common/http.js');
  266. var common = require('../../common/common.js');
  267. var storage = require('../../common/storage.js');
  268. export default {
  269. components: {
  270. comEleQuantity
  271. },
  272. data() {
  273. return {
  274. selectedTabIndex: 1,
  275. battery_sn: '',
  276. bmsInfo: {
  277. State: {
  278. BMS_DateTime: 0,
  279. RC: '',
  280. BetteryV_All: '',
  281. TemperatureCount: '',
  282. TC_B_1: '',
  283. TC_B_2: '',
  284. TC_B_3: '',
  285. TC_B_4: '',
  286. BetteryA: '',
  287. BXHC: '',
  288. EM: '',
  289. JZRL: '',
  290. SBBM: '',
  291. CCXX: '',
  292. BetteryC: '',
  293. min_v: '',
  294. max_v: '',
  295. span_min_max: ''
  296. },
  297. Seting: {
  298. EMST: '',
  299. CHON: ''
  300. }
  301. },
  302. batteryNumArr: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31]
  303. };
  304. },
  305. /**
  306. * 生命周期函数--监听页面加载
  307. */
  308. onLoad: function (options) {
  309. const battery_sn = options.battery_sn || '015356934636';
  310. if (!battery_sn) {
  311. uni.navigateBack({
  312. delta: 1
  313. });
  314. }
  315. this.battery_sn = battery_sn;
  316. console.log(battery_sn);
  317. this.loadBmsInfo();
  318. },
  319. /**
  320. * 生命周期函数--监听页面显示
  321. */
  322. onShow: function () {},
  323. /**
  324. * 页面相关事件处理函数--监听用户下拉动作
  325. */
  326. onPullDownRefresh: function () {},
  327. /**
  328. * 页面上拉触底事件的处理函数
  329. */
  330. onReachBottom: function () {},
  331. methods: {
  332. bindSelectedTab: function (e) {
  333. const idx = e.currentTarget.dataset.idx;
  334. this.setData({
  335. selectedTabIndex: idx
  336. });
  337. },
  338. loadBmsInfo: function () {
  339. common.loading();
  340. const pData = {
  341. battery_sn: this.battery_sn
  342. };
  343. const that = this;
  344. http.postApi(config.API_BATTERY_BMS_INFO, pData, function (resp) {
  345. uni.hideLoading();
  346. if (resp.data.code === 200) {
  347. const bmsInfo = resp.data.data.bmsInfo;
  348. if (!bmsInfo) {
  349. common.simpleToast('BMS数据暂无');
  350. setTimeout(function () {
  351. uni.navigateBack({
  352. delta: 1
  353. });
  354. }, 1500);
  355. }
  356. that.setData({
  357. bmsInfo: resp.data.data.bmsInfo
  358. });
  359. } else {
  360. common.simpleToast(resp.data.msg);
  361. }
  362. });
  363. }
  364. }
  365. };
  366. </script>
  367. <style>
  368. @import './bmsbd02.css';
  369. </style>