device.vue 43 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061
  1. <template>
  2. <view class="container">
  3. <view :class="'space-height ' + (showSelectBtn ? 'add-height' : '')"></view>
  4. <van-popup :show="isShowShopContainer" position="left" @close="handleCloseShopContainer">
  5. <view class="shop-container">
  6. <view style="background: #f8f8f8">
  7. <view class="shop-info-container">
  8. <view>
  9. <image class="shop-head-icon" :src="userInfo.info.headimg ? userInfo.info.headimg : '/static/resource/images/logo.png'"></image>
  10. </view>
  11. <view class="shop-head-name">{{ userInfo.info.name }}</view>
  12. </view>
  13. <view class="group-item flex-row" v-for="(item, index) in groupTreeList" :key="index">
  14. <view class="flex-row">
  15. <view :style="'width: ' + item.Level * 44 + 'rpx;'"></view>
  16. <view v-if="item.leaf" style="width: 44rpx"></view>
  17. <image
  18. v-else
  19. class="group-leaf-icon"
  20. src="/static/resource/images/shouqi.png"
  21. :style="item.Leaf ? 'transform: rotate(90deg);' : ''"
  22. :data-index="index"
  23. @tap="groupTreeLeaf"
  24. ></image>
  25. <image
  26. class="group-select-icon"
  27. :src="
  28. selectedShopInfo.id == item.id || (!selectedShopInfo.id && item.id == userInfo.info.id)
  29. ? '/static/resource/images/xuanzhong.png'
  30. : '/static/resource/images/weixuanzhong.png'
  31. "
  32. @tap="loadChildrenDevice"
  33. :data-data="item"
  34. ></image>
  35. </view>
  36. <button
  37. :data-index="index"
  38. @tap="loadChildrenDevice"
  39. @longpress="groupTreeLeaf"
  40. :data-data="item"
  41. class="group-text"
  42. :style="'width: calc(100% - ' + ((item.Level + 1) * 44 + 50) + 'rpx);'"
  43. >
  44. {{ item.name + '[' + item.own_device_cnt + '/' + item.all_device_cnt + ']' }}
  45. </button>
  46. </view>
  47. </view>
  48. </view>
  49. </van-popup>
  50. <view class="batterylist-container">
  51. <!-- <view wx:for="{{deviceList}}" wx:key="unique" class="battery-item {{(item.deviceHighlight && item.deviceHighlight==1) || (item.mac_id == macid)?'battery-highlight-item':''}}"> -->
  52. <view :class="'battery-item ' + (item.isSelect == 1 ? 'battery-highlight-item' : '')" v-for="(item, index) in deviceList" :key="index">
  53. <view class="batter-info-group flex-row" @tap="bindSelect" :data-index="index">
  54. <view class="battery-icon">
  55. <image class="battery-icon-img" :src="iconList[item.icon].normal"></image>
  56. </view>
  57. <view style="width: calc(100% - 145rpx); padding-left: 23rpx">
  58. <view class="battery-text flex-row flex-between">
  59. <view>名称:{{ item.name }}</view>
  60. </view>
  61. <view class="battery-text">编号:{{ item.mac_id }}</view>
  62. <view class="battery-text">状态:{{ item.expire == 1 ? '到期' : item.online == 1 ? '在线' : '离线' }}</view>
  63. <view class="battery-text">时间:{{ tools.formatTime(item.gps_time) }}</view>
  64. </view>
  65. </view>
  66. <image
  67. v-if="item.btid != ''"
  68. class="bt-icon ble-info"
  69. :src="bt_loading ? '/static/resource/images/lanyad.gif' : item.isConnect ? '/static/resource/images/lanya.png' : '/static/resource/images/lanyad.png'"
  70. @tap.stop.prevent="bindBTState"
  71. :data-id="index"
  72. ></image>
  73. <view class="battery-text battery-info" style="color: #0ec193" @tap.stop.prevent="bindToInfo" :data-index="index">
  74. 详情
  75. <image class="battery-info-img" src="/static/resource/images/fanhui.png"></image>
  76. </view>
  77. <view class="battery-text battery-credit flex-row" @tap.stop.prevent="bindCredit" :data-index="index">续费</view>
  78. <view class="op-group flex-row flex-around">
  79. <view v-if="item.bms == 1" class="op-item" @tap.stop.prevent="bindToBMS" :data-index="index">
  80. <image class="op-icon" src="/static/resource/images/BMS.png"></image>
  81. <view class="op-des">BMS</view>
  82. </view>
  83. <view class="op-item" @tap.stop.prevent="bindLocal" :data-index="index">
  84. <image class="op-icon" src="/static/resource/images/dingwei2.png"></image>
  85. <view class="op-des">定位</view>
  86. </view>
  87. <view class="op-item" @tap.stop.prevent="bindAlarm" :data-index="index">
  88. <image class="op-icon" src="/static/resource/images/baojing.png"></image>
  89. <view class="op-des">报警</view>
  90. </view>
  91. <view class="op-item" @tap.stop.prevent="bindToSet" :data-index="index">
  92. <image class="op-icon" src="/static/resource/images/set.png"></image>
  93. <view class="op-des">设置</view>
  94. </view>
  95. </view>
  96. </view>
  97. </view>
  98. <i-load-more :tip="isLoading ? '正在加载 ...' : '没有更多信息啦'" :loading="isLoading" />
  99. <view class="top-bar-container">
  100. <view class="system-stauts-bar"></view>
  101. <view class="system-navigator">
  102. <image @tap="handleReturn" class="return-icon" src="/static/resource/images/fanhui2.png"></image>
  103. <image v-if="userInfo.type == 'group'" @tap="handleShowShopContainer" class="bar-shop-icon" src="/static/resource/images/liebiao.png"></image>
  104. <image v-if="userInfo.type == 'user'" @tap="handleAddDevice" class="bar-shop-icon" src="/static/resource/images/jia.png"></image>
  105. <view v-if="userInfo.type == 'group'" class="top-title">
  106. {{ selectedShopInfo ? selectedShopInfo.name : userInfo.info.name }}
  107. </view>
  108. </view>
  109. <view class="search-container flex-row flex-between">
  110. <view class="search-btn flex-row" style="margin-right: 20rpx" @tap="scanCode">
  111. <image style="width: 40rpx; height: 40rpx" src="/static/resource/images/scan-i.png"></image>
  112. </view>
  113. <view class="search-control flex-row flex-between">
  114. <input
  115. type="text"
  116. class="input-search"
  117. :value="seach_value"
  118. confirm-type="搜索"
  119. placeholder="请输入"
  120. placeholder-style="font-size: 12px;"
  121. @input="bindInputSearch"
  122. />
  123. </view>
  124. <view class="search-btn flex-row">
  125. <view class="btn-search" @tap="bindHandleSearch">搜索</view>
  126. <image v-if="userInfo.type == 'group'" @tap="bindGroupSearch" style="width: 40rpx; height: 40rpx" src="/static/resource/images/youjiantou.png"></image>
  127. </view>
  128. </view>
  129. <view class="def-nav-container">
  130. <view class="order-type-container flex-row flex-around">
  131. <view :class="'order-type-item ' + (search_type == 0 ? 'order-type-selected' : '')" data-searchtype="0" @tap="bindSearchType">
  132. 全部
  133. <text class="l-tmp">({{ all_count }})</text>
  134. </view>
  135. <view :class="'order-type-item ' + (search_type == 1 ? 'order-type-selected' : '')" data-searchtype="1" @tap="bindSearchType">
  136. 在线
  137. <text class="l-tmp">({{ online_count }})</text>
  138. </view>
  139. <view :class="'order-type-item ' + (search_type == 2 ? 'order-type-selected' : '')" data-searchtype="2" @tap="bindSearchType">
  140. 离线
  141. <text class="l-tmp">({{ offline_count }})</text>
  142. </view>
  143. <view :class="'order-type-item ' + (search_type == 3 ? 'order-type-selected' : '')" data-searchtype="3" @tap="bindSearchType">
  144. 到期
  145. <text class="l-tmp">({{ expire_count }})</text>
  146. </view>
  147. </view>
  148. <!--view wx:if="{{showSelectBtn}}" class="bath-op flex-row flex-end">
  149. <view class="batch-transfer-btn" type="primary" size="mini" bindtap="bindBatchTransfer">批量转移</view>
  150. <view class="batch-alter-btn" type="warn" size="mini" bindtap="bindBatchAlter">批量修改</view>
  151. <view class="batch-cancel-btn" type="warn" size="mini" bindtap="bindCancelSelectAllBattery">取消</view>
  152. </view-->
  153. </view>
  154. </view>
  155. </view>
  156. </template>
  157. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  158. <script>
  159. import noMore from '@/component/nomore/nomore';
  160. import iDrawer from '@/component/iview/drawer/index';
  161. import iCollapse from '@/component/iview/collapse/index';
  162. import iCollapseItem from '@/component/iview/collapse-item/index';
  163. import iLoadMore from '@/component/iview/load-more/index';
  164. import comEleQuantity from '@/component/comEleQuantity/comEleQuantity';
  165. // pages/device/device.js
  166. var config = require('../../common/config.js');
  167. var http = require('../../common/http.js');
  168. var common = require('../../common/common.js');
  169. var storage = require('../../common/storage.js');
  170. var bluetooth = require('../../common/bluetooth.js');
  171. const LIMT_PAGE = 5;
  172. export default {
  173. components: {
  174. noMore,
  175. iDrawer,
  176. iCollapse,
  177. iCollapseItem,
  178. iLoadMore,
  179. comEleQuantity
  180. },
  181. data() {
  182. return {
  183. isLoading: false,
  184. isShowShopContainer: false,
  185. iconList: [],
  186. userInfo: {
  187. info: {
  188. headimg: false,
  189. name: '',
  190. id: ''
  191. },
  192. type: ''
  193. },
  194. selectedShopInfo: {
  195. id: '',
  196. name: ''
  197. },
  198. deviceList: [],
  199. start_page: 1,
  200. limit_page: LIMT_PAGE,
  201. search_type: 0,
  202. showSelectBtn: false,
  203. selectedAll: false,
  204. selectedNum: 0,
  205. all_count: 0,
  206. online_count: 0,
  207. offline_count: 0,
  208. expire_count: 0,
  209. groupTreeList: [],
  210. groupList: [],
  211. seach_value: '',
  212. search: '',
  213. macid: '',
  214. deviceSearchList: [],
  215. btmacid: '',
  216. btInfo: {},
  217. baud: '',
  218. bt_loading: false,
  219. normal: ''
  220. };
  221. },
  222. /**
  223. * 生命周期函数--监听页面加载
  224. */
  225. onLoad: function (options) {
  226. const selectedShopInfo = storage.getSelectedShopInfo();
  227. const macid = options.macid;
  228. if (selectedShopInfo) {
  229. this.setData({
  230. selectedShopInfo: selectedShopInfo
  231. });
  232. }
  233. if (macid) {
  234. this.setData({
  235. macid: macid
  236. });
  237. }
  238. this.loadIconList();
  239. this.loadUserInfo();
  240. },
  241. /**
  242. * 生命周期函数--监听页面显示
  243. */
  244. onShow: function () {
  245. const is_fresh = storage.getRefreshDeviceoPage();
  246. if (is_fresh) {
  247. this.loadUserInfo();
  248. storage.setRefreshDeviceoPage(false);
  249. }
  250. },
  251. /**
  252. * 用户点击右上角分享
  253. */
  254. onShareAppMessage: function () {},
  255. /**
  256. * 页面相关事件处理函数--监听用户下拉动作
  257. */
  258. onPullDownRefresh: function () {
  259. console.log('dd');
  260. this.refreshLoadDeviceList();
  261. },
  262. /**
  263. * 页面上拉触底事件的处理函数
  264. */
  265. onReachBottom: function () {
  266. if (this.isLoading) {
  267. return;
  268. }
  269. this.setData({
  270. isLoading: true
  271. });
  272. this.start_page++;
  273. this.loadDeviceList();
  274. },
  275. methods: {
  276. /**
  277. * 获取首页带设备号数据
  278. */
  279. loadDeviceSearchList: function () {
  280. const macid = this.macid;
  281. const start_page = this.start_page;
  282. this.setData({
  283. deviceSearchList: []
  284. });
  285. console.log(macid);
  286. console.log(start_page);
  287. //console.log(macid+'==='+start_page)
  288. if (!macid || start_page != 1) {
  289. return false;
  290. }
  291. const that = this;
  292. const pData = {
  293. size: that.limit_page,
  294. page: 1,
  295. type: that.search_type == 1 ? 'ONLINE' : that.search_type == 2 ? 'OFFLINE' : that.search_type == 3 ? 'EXPIRE' : 'ALL',
  296. id: that.selectedShopInfo.id,
  297. search: that.macid
  298. };
  299. http.postApi(config.API_BATTERY_LIST, pData, (resp) => {
  300. if (resp.data.code === 200) {
  301. var reponseList = resp.data.data.list;
  302. for (var i = 0; reponseList.length > i; i++) {
  303. reponseList[i].display_bms = reponseList[i].display_bms - 0;
  304. if (that.userInfo.type != 'group') {
  305. if (reponseList[i].display_bms - 0 === 0) {
  306. reponseList[i].isBms = 0;
  307. } else {
  308. reponseList[i].isBms = 1;
  309. }
  310. } else {
  311. reponseList[i].isBms = 1;
  312. }
  313. }
  314. that.setData({
  315. deviceSearchList: reponseList
  316. });
  317. console.log('zzzxxx');
  318. that.handleMergeData(that.deviceSearchList, 2);
  319. } else {
  320. common.simpleToast(resp.data.msg);
  321. }
  322. });
  323. },
  324. handleCloseShopContainer: function () {
  325. this.setData({
  326. isShowShopContainer: false
  327. });
  328. },
  329. handleShowShopContainer: function () {
  330. this.setData({
  331. isShowShopContainer: true
  332. });
  333. },
  334. bindClickMainShop: function () {
  335. if (this.selectedShopInfo == {}) {
  336. return;
  337. }
  338. this.setData({
  339. search: '',
  340. seach_value: '',
  341. selectedShopInfo: {}
  342. });
  343. this.refreshLoadDeviceList();
  344. },
  345. loadIconList: function () {
  346. this.iconList = storage.getIconList();
  347. if (!this.iconList) {
  348. http.postApi(config.API_BATTERY_ICON_LIST, {}, (resp) => {
  349. if (resp.data.code === 200) {
  350. storage.setIconList(resp.data.data.list);
  351. this.setData({
  352. iconList: resp.data.data.list
  353. });
  354. } else {
  355. common.simpleToast(resp.data.msg);
  356. }
  357. });
  358. } else {
  359. this.setData({
  360. iconList: this.iconList
  361. });
  362. }
  363. },
  364. loadUserInfo: function () {
  365. const userInfo = storage.getUserInfo();
  366. if (!userInfo) {
  367. http.postApi(config.API_USER_INFO, {}, (resp) => {
  368. if (resp.data.code === 200) {
  369. storage.setUserInfo(resp.data.data);
  370. this.setData({
  371. userInfo: resp.data.data
  372. });
  373. this.refreshLoadDeviceList();
  374. this.loadGroupTree();
  375. /*this.setData({
  376. shopList: common.shopListToTree(storage.getTotalStatisList(), me.data.userInfo.shop_id)
  377. })*/
  378. } else {
  379. common.simpleToast(resp.data.msg);
  380. }
  381. });
  382. } else {
  383. this.setData({
  384. userInfo: userInfo
  385. });
  386. this.refreshLoadDeviceList();
  387. this.loadGroupTree();
  388. }
  389. },
  390. loadChildrenDevice: function (e) {
  391. this.setData({
  392. search: '',
  393. seach_value: '',
  394. selectedShopInfo: e.currentTarget.dataset.data
  395. });
  396. storage.setSelectedShopInfo(e.currentTarget.dataset.data);
  397. this.refreshLoadDeviceList();
  398. },
  399. refreshLoadDeviceList: function () {
  400. if (this.isLoading) {
  401. return;
  402. }
  403. this.setData({
  404. deviceList: [],
  405. isLoading: true
  406. });
  407. common.loading();
  408. this.limit_page = LIMT_PAGE;
  409. this.start_page = 1;
  410. this.loadDeviceList();
  411. console.log('this.data.seach_value', this.seach_value);
  412. if (this.seach_value.length !== 0) {
  413. this.loadDeviceSearchList();
  414. }
  415. },
  416. loadDeviceList: function () {
  417. const that = this;
  418. const pData = {
  419. size: that.limit_page,
  420. page: that.start_page,
  421. type: that.search_type == 1 ? 'ONLINE' : that.search_type == 2 ? 'OFFLINE' : that.search_type == 3 ? 'EXPIRE' : 'ALL',
  422. id: that.selectedShopInfo.id,
  423. search: that.search
  424. };
  425. http.postApi(config.API_BATTERY_LIST, pData, (resp) => {
  426. uni.hideLoading();
  427. uni.stopPullDownRefresh();
  428. if (resp.data.code === 200) {
  429. let deviceList = that.deviceList;
  430. var reponseList = resp.data.data.list;
  431. var s_index = -1;
  432. const _deviceInfo = storage.getSelectedDeviceInfo();
  433. //修改接口异步为同步
  434. if (_deviceInfo && that.userInfo.type == 'group') {
  435. that.asyncRefhDeviceInfo(_deviceInfo).then((test) => {
  436. const deviceInfo = storage.getSelectedDeviceInfo();
  437. for (var i = 0; reponseList.length > i; i++) {
  438. if (deviceInfo && deviceInfo.mac_id === reponseList[i].mac_id) {
  439. s_index = i;
  440. }
  441. reponseList[i].isSelect = 0;
  442. reponseList[i].display_bms = reponseList[i].display_bms - 0;
  443. if (that.userInfo.type != 'group') {
  444. if (reponseList[i].display_bms - 0 === 0) {
  445. reponseList[i].isBms = 0;
  446. } else {
  447. reponseList[i].isBms = 1;
  448. }
  449. } else {
  450. reponseList[i].isBms = 1;
  451. }
  452. }
  453. if (s_index !== -1 && this.search_type == 0) {
  454. reponseList.splice(s_index, 1);
  455. }
  456. if (deviceInfo && that.start_page == 1 && this.search_type == 0) {
  457. deviceInfo.isSelect = 1;
  458. reponseList.unshift(deviceInfo);
  459. }
  460. deviceList.push.apply(deviceList, reponseList);
  461. that.setData({
  462. deviceList: deviceList,
  463. isLoading: false,
  464. all_count: resp.data.data.all_count,
  465. online_count: resp.data.data.online_count,
  466. offline_count: resp.data.data.offline_count,
  467. expire_count: resp.data.data.expire_count
  468. });
  469. });
  470. } else {
  471. const deviceInfo = storage.getSelectedDeviceInfo();
  472. for (var i = 0; reponseList.length > i; i++) {
  473. if (deviceInfo && deviceInfo.mac_id === reponseList[i].mac_id) {
  474. s_index = i;
  475. }
  476. reponseList[i].isSelect = 0;
  477. reponseList[i].display_bms = reponseList[i].display_bms - 0;
  478. if (that.userInfo.type != 'group') {
  479. if (reponseList[i].display_bms - 0 === 0) {
  480. reponseList[i].isBms = 0;
  481. } else {
  482. reponseList[i].isBms = 1;
  483. }
  484. } else {
  485. reponseList[i].isBms = 1;
  486. }
  487. }
  488. if (s_index !== -1 && this.search_type == 0) {
  489. reponseList.splice(s_index, 1);
  490. }
  491. if (deviceInfo && that.start_page == 1 && this.search_type == 0) {
  492. deviceInfo.isSelect = 1;
  493. reponseList.unshift(deviceInfo);
  494. }
  495. deviceList.push.apply(deviceList, reponseList);
  496. that.setData({
  497. deviceList: deviceList,
  498. isLoading: false,
  499. all_count: resp.data.data.all_count,
  500. online_count: resp.data.data.online_count,
  501. offline_count: resp.data.data.offline_count,
  502. expire_count: resp.data.data.expire_count
  503. });
  504. }
  505. // me.handleMergeData(me.data.deviceList, 1)
  506. // if (me.data.start_page ==1 && deviceInfo != null) {
  507. // deviceInfo.isSelect = 1
  508. // me.setData({
  509. // deviceList: me.data.deviceList.unshift(deviceInfo)
  510. // })
  511. // }
  512. // console.log("deviceList",me.data.deviceList)
  513. } else {
  514. common.simpleToast(resp.data.msg);
  515. }
  516. });
  517. },
  518. asyncRefhDeviceInfo(_deviceInfo) {
  519. return new Promise((reslove) => {
  520. const searchData = {
  521. search: _deviceInfo.mac_id,
  522. page: 1,
  523. size: 5
  524. };
  525. http.postApi(config.API_BATTERY_SEARCH, searchData, function (resp) {
  526. if (resp.data.code === 200) {
  527. const deviceInfo = resp.data.data.list[0];
  528. console.log(deviceInfo, 'deviceInfo2222');
  529. storage.setSelectedDeviceInfo(deviceInfo);
  530. reslove(deviceInfo);
  531. } else {
  532. common.simpleToast(resp.data.msg);
  533. }
  534. });
  535. });
  536. },
  537. bindSearchType: function (e) {
  538. const search_type = e.currentTarget.dataset.searchtype;
  539. this.setData({
  540. search_type: search_type
  541. });
  542. common.loading();
  543. this.refreshLoadDeviceList();
  544. },
  545. navigatorToPage: function (e) {
  546. const page = e.currentTarget.dataset.page;
  547. if (!page) {
  548. return;
  549. }
  550. uni.navigateTo({
  551. url: page
  552. });
  553. },
  554. bindLocal: function (e) {
  555. const index = e.currentTarget.dataset.index;
  556. const deviceInfo = this.deviceList[index];
  557. if (deviceInfo.expire == 1) {
  558. common.simpleToast('设备到期');
  559. return;
  560. }
  561. if (
  562. common.isEmpty(deviceInfo.longitude + '') ||
  563. deviceInfo.longitude == '-' ||
  564. common.isEmpty(deviceInfo.latitude + '') ||
  565. deviceInfo.latitude == '-' ||
  566. deviceInfo.longitude == 0 ||
  567. deviceInfo.latitude == 0
  568. ) {
  569. common.simpleToast('该设备暂无位置信息');
  570. return;
  571. }
  572. storage.setSelectedDeviceInfo(deviceInfo);
  573. uni.navigateTo({
  574. url: '/pages/deviceLocal/deviceLocal'
  575. });
  576. },
  577. bindToBMS: function (e) {
  578. const index = e.currentTarget.dataset.index;
  579. const deviceInfo = this.deviceList[index];
  580. if (deviceInfo.expire == 1) {
  581. common.simpleToast('设备到期');
  582. return;
  583. }
  584. if (deviceInfo.bms == 1) {
  585. uni.navigateTo({
  586. url:
  587. '/pages/bms/bms?macid=' +
  588. deviceInfo.mac_id +
  589. '&deviceType=' +
  590. deviceInfo.device_type +
  591. '&bt_type=' +
  592. deviceInfo.bt_type +
  593. '&bms=' +
  594. deviceInfo.bms +
  595. '&btid=' +
  596. deviceInfo.btid +
  597. '&btkey=' +
  598. deviceInfo.btkey,
  599. success: function (res) {},
  600. fail: function (res) {},
  601. complete: function (res) {}
  602. });
  603. } else {
  604. common.alert('该设备暂未配置BMS数据');
  605. return;
  606. }
  607. },
  608. bindToInfo: function (e) {
  609. const index = e.currentTarget.dataset.index;
  610. const deviceInfo = this.deviceList[index];
  611. if (deviceInfo.expire == 1) {
  612. common.simpleToast('设备到期');
  613. return;
  614. }
  615. // storage.setSelectedDeviceInfo(deviceInfo)
  616. const _deviceInfo = encodeURIComponent(JSON.stringify(deviceInfo));
  617. uni.navigateTo({
  618. url: '/pages/deviceInfo/deviceInfo?deviceInfo=' + _deviceInfo
  619. });
  620. },
  621. loadGroupTree: function () {
  622. if (this.userInfo.type != 'group') {
  623. return;
  624. }
  625. const groupTreeList = storage.getGroupTreeList();
  626. const groupList = storage.getGroupList();
  627. if (!groupTreeList || !groupList || groupTreeList.constructor != Array) {
  628. const me = this;
  629. http.postApi(config.API_USER_GROUP_LIST, {}, function (resp) {
  630. if (resp.data.code === 200) {
  631. var groupList = common.groupTreeLeaf(common.groupListToTree(resp.data.data.list, me.userInfo.info.id));
  632. var groupTreeList = [
  633. groupList.find((x) => {
  634. return parseInt(x.id) === parseInt(me.userInfo.info.id);
  635. })
  636. ];
  637. groupTreeList[0].Level = 0;
  638. groupTreeList[0].Leaf = false;
  639. me.setData({
  640. groupTreeList: groupTreeList,
  641. groupList: groupList
  642. });
  643. storage.setGroupTreeList(groupTreeList);
  644. storage.setGroupList(groupList);
  645. } else {
  646. common.simpleToast(resp.data.msg);
  647. }
  648. });
  649. } else {
  650. this.setData({
  651. groupTreeList: groupTreeList,
  652. groupList: groupList
  653. });
  654. }
  655. },
  656. bindInputSearch: function (e) {
  657. this.seach_value = e.detail.value;
  658. },
  659. bindHandleSearch: function () {
  660. this.search = this.seach_value;
  661. this.macid = '';
  662. this.refreshLoadDeviceList();
  663. },
  664. scanCode: function (e) {
  665. uni.scanCode({
  666. onlyFromCamera: true,
  667. scanType: [],
  668. success: (res) => {
  669. //console.log(res)
  670. if (res.result) {
  671. this.setData({
  672. search: res.result,
  673. seach_value: res.result
  674. });
  675. this.refreshLoadDeviceList();
  676. }
  677. },
  678. fail: function (res) {},
  679. complete: function (res) {}
  680. });
  681. },
  682. bindSelect: function (e) {
  683. const index = e.currentTarget.dataset.index;
  684. const deviceInfo = this.deviceList[index];
  685. if (deviceInfo.expire == 1) {
  686. common.simpleToast('设备到期');
  687. return;
  688. }
  689. storage.setSelectedDeviceInfo(deviceInfo);
  690. uni.reLaunch({
  691. url: '/pages/home/home'
  692. });
  693. },
  694. bindAlarm: function (e) {
  695. const index = e.currentTarget.dataset.index;
  696. const deviceInfo = this.deviceList[index];
  697. if (deviceInfo.expire == 1) {
  698. common.simpleToast('设备到期');
  699. return;
  700. }
  701. uni.navigateTo({
  702. url: '/pages/warnList/warnList?macid=' + deviceInfo.mac_id
  703. });
  704. },
  705. bindToSet: function (e) {
  706. const index = e.currentTarget.dataset.index;
  707. const deviceInfo = this.deviceList[index];
  708. if (deviceInfo.expire == 1) {
  709. common.simpleToast('设备到期');
  710. return;
  711. }
  712. uni.navigateTo({
  713. url: '/pages/deviceCommand/deviceCommand?macid=' + deviceInfo.mac_id + '&type=' + deviceInfo.device_type + '&bt_type=' + deviceInfo.bt_type
  714. });
  715. },
  716. handleReturn: function () {
  717. uni.navigateBack({
  718. delta: 1
  719. });
  720. },
  721. bindCredit: function (e) {
  722. const index = e.currentTarget.dataset.index;
  723. const deviceInfo = this.deviceList[index];
  724. uni.navigateTo({
  725. url: '/pages/credit/credit?macid=' + deviceInfo.mac_id,
  726. success: function (res) {},
  727. fail: function (res) {},
  728. complete: function (res) {}
  729. });
  730. },
  731. handleAddDevice() {
  732. uni.navigateTo({
  733. url: '/pages/addDevice/addDevice'
  734. });
  735. },
  736. groupTreeLeaf(e) {
  737. const index = e.currentTarget.dataset.index;
  738. var groupTreeList = this.groupTreeList;
  739. if (groupTreeList[index].Leaf) {
  740. var i = 0;
  741. for (; index + i + 1 < groupTreeList.length; i++) {
  742. if (groupTreeList[index + i + 1].Level <= groupTreeList[index].Level) {
  743. break;
  744. }
  745. }
  746. groupTreeList.splice(index + 1, i);
  747. groupTreeList[index].Leaf = false;
  748. } else if (groupTreeList[index].children_cnt != 0) {
  749. var i = 0;
  750. this.groupList.forEach((p) => {
  751. if (parseInt(p.parent_id) === parseInt(groupTreeList[index].id)) {
  752. groupTreeList.splice(index + i + 1, 0, p);
  753. groupTreeList[index + i + 1].Level = groupTreeList[index].Level + 1;
  754. groupTreeList[index + i + 1].Leaf = false;
  755. i++;
  756. }
  757. });
  758. groupTreeList[index].Leaf = true;
  759. }
  760. this.setData({
  761. groupTreeList: groupTreeList
  762. });
  763. storage.setGroupTreeList(groupTreeList);
  764. },
  765. bindGroupSearch(e) {
  766. uni.navigateTo({
  767. url: '/pages/searchDevice/searchDevice?search=' + this.seach_value
  768. });
  769. },
  770. handleMergeData: function (e, type) {
  771. //数据比对去重操作
  772. const that = this;
  773. if (type == 1) {
  774. that.deviceList = e;
  775. }
  776. if (type == 2) {
  777. that.deviceSearchList = e;
  778. }
  779. let deviceList = that.deviceList;
  780. let deviceSearchList = that.deviceSearchList;
  781. // console.log(deviceList)
  782. // console.log(deviceSearchList)
  783. let list = [];
  784. let againDeviceList = [];
  785. if (deviceList.length >= 1 && deviceSearchList.length >= 1) {
  786. for (let i = 0, len = deviceSearchList.length; i < len; i++) {
  787. deviceSearchList[i].deviceHighlight = 1;
  788. list.push(deviceSearchList[i]);
  789. for (let j = 0; j < deviceList.length; j++) {
  790. if (deviceSearchList[i].mac_id != deviceList[j].mac_id) {
  791. deviceList[j].deviceHighlight = 2;
  792. againDeviceList.push(deviceList[j]);
  793. }
  794. }
  795. break;
  796. }
  797. this.setData({
  798. deviceList: list.concat(againDeviceList)
  799. });
  800. this.loadReponseDealData(this.deviceList);
  801. } else {
  802. if (deviceList.length >= 1) {
  803. for (let j = 0; j < deviceList.length; j++) {
  804. deviceList[j].deviceHighlight = 2;
  805. againDeviceList.push(deviceList[j]);
  806. }
  807. this.setData({
  808. deviceList: againDeviceList
  809. });
  810. this.loadReponseDealData(this.deviceList);
  811. }
  812. }
  813. },
  814. loadReponseDealData(dev_list) {
  815. dev_list.forEach((p, i) => {
  816. var device = p;
  817. dev_list[i].btaccept = bluetooth.acceptDevice(device);
  818. dev_list[i].isConnect = false;
  819. const deviceInfo = storage.getSelectedDeviceInfo();
  820. if (deviceInfo != null && deviceInfo.mac_id === device.mac_id) {
  821. dev_list[i].isConnect = bluetooth.isConnected(device.mac_id);
  822. if (bluetooth.isConnected(device.mac_id)) {
  823. this.setData({
  824. btmacid: device.mac_id,
  825. btInfo: {}
  826. });
  827. bluetooth.onCharacteristicStateChange(device.mac_id, 'home', (data) => {
  828. this.processBluetoothReceiveData(device, dev_list, data, i);
  829. });
  830. bluetooth.onConnectionStateChange(device.mac_id, 'list', (res) => {
  831. if (this.btmacid == device.mac_id && !res.connected) {
  832. this.setData({
  833. btmacid: ''
  834. });
  835. }
  836. });
  837. bluetooth.stateUpdate(device.mac_id);
  838. }
  839. }
  840. });
  841. dev_list.map((item, index) => {
  842. if (dev_list[index].isConnect === true) {
  843. dev_list.unshift(dev_list.splice(index, 1)[0]);
  844. }
  845. });
  846. this.setData({
  847. deviceList: dev_list
  848. });
  849. // var dataList = this.data.list
  850. // for (var i = 0; dataList.length > i; i++) {
  851. // dataList[i].isConnect = false
  852. // }
  853. },
  854. bindBTState(e) {
  855. let id = e.currentTarget.dataset.id;
  856. var batteryList = this.deviceList;
  857. if (batteryList[id].isConnect) {
  858. bluetooth.closeDevice(
  859. batteryList[id].mac_id,
  860. () => {
  861. batteryList[id].isConnect = false;
  862. this.setData({
  863. deviceList: batteryList
  864. });
  865. },
  866. () => {}
  867. );
  868. } else {
  869. if (!this.bt_loading) {
  870. this.setData({
  871. bt_loading: true
  872. });
  873. this.btConnect(id);
  874. }
  875. }
  876. },
  877. processBluetoothReceiveData(device, dev_list, data, i) {
  878. if ('baud' in data) {
  879. common.bluetoothSetBaud(device, data.baud, this.baud, bluetooth);
  880. return;
  881. }
  882. this.setData({
  883. bt_loading: false
  884. });
  885. if (this.btmacid == device.mac_id) {
  886. this.setData({
  887. btInfo: data
  888. });
  889. var dataList = dev_list;
  890. for (var j = 0; dataList.length > j; j++) {
  891. if (dataList[j].mac_id === this.btmacid) {
  892. dataList[j].isConnect = true;
  893. dataList[j].voltage = data.voltage;
  894. }
  895. }
  896. if (dataList[i].bms === 0) {
  897. this.loadQuantityReponse(device.mac_id, data.voltage, i);
  898. } else {
  899. dataList[i].electric_quantity = data.quantity.toFixed(2);
  900. this.setData({
  901. deviceList: dataList
  902. });
  903. }
  904. this.setData({
  905. deviceList: dataList
  906. });
  907. }
  908. // this.setData({
  909. // bt_loading: false
  910. // })
  911. // batteryList[id].isConnect = true
  912. // if (batteryList[id].btInfo) {
  913. // batteryList[id].btInfo = Object.assign(batteryList[id].btInfo, data)
  914. // } else {
  915. // batteryList[id].btInfo = data
  916. // }
  917. // this.setData({
  918. // batteryList: batteryList
  919. // })
  920. },
  921. btConnect(id) {
  922. var batteryList = this.deviceList;
  923. var device = batteryList[id];
  924. bluetooth.openBluetoothAdapter(
  925. (res) => {
  926. console.log(res);
  927. bluetooth.connectDevice(
  928. device,
  929. () => {
  930. batteryList[id].isConnect = true;
  931. bluetooth.onCharacteristicStateChange(device.mac_id, 'list', (data) => {
  932. this.processBluetoothReceiveData(device, batteryList, data, id);
  933. });
  934. bluetooth.onConnectionStateChange(device.mac_id, 'list', (res) => {
  935. batteryList[id].isConnect = res.connected;
  936. this.setData({
  937. deviceList: batteryList
  938. });
  939. });
  940. common.bluetoothBaud(device, bluetooth, (res) => {
  941. this.setData({
  942. baud: res
  943. });
  944. });
  945. bluetooth.stateUpdate(
  946. device.mac_id,
  947. (res) => {
  948. this.setData({
  949. bt_loading: false
  950. });
  951. },
  952. (res) => {
  953. this.setData({
  954. bt_loading: false
  955. });
  956. }
  957. );
  958. this.setData({
  959. deviceList: batteryList
  960. });
  961. },
  962. (res) => {
  963. console.log(res);
  964. uni.showModal({
  965. content: '连接设备失败,请靠近设备重试',
  966. confirmText: '重试',
  967. success: (res) => {
  968. if (res.confirm) {
  969. this.btConnect(id);
  970. } else {
  971. this.setData({
  972. bt_loading: false
  973. });
  974. }
  975. },
  976. fail: (res) => {
  977. console.log(res);
  978. this.setData({
  979. bt_loading: false
  980. });
  981. }
  982. });
  983. }
  984. );
  985. },
  986. (res) => {
  987. console.log(res);
  988. uni.showModal({
  989. content: '需使用手机蓝牙功能,请打开蓝牙',
  990. confirmText: '重试',
  991. success: (res) => {
  992. if (res.confirm) {
  993. this.btConnect(id);
  994. } else {
  995. this.setData({
  996. bt_loading: false
  997. });
  998. }
  999. },
  1000. fail: (res) => {
  1001. console.log(res);
  1002. this.setData({
  1003. bt_loading: false
  1004. });
  1005. }
  1006. });
  1007. }
  1008. );
  1009. }
  1010. }
  1011. };
  1012. </script>
  1013. <style>
  1014. @import './device.css';
  1015. </style>