device.vue 43 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066
  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>{{ $t('名称')+':'+item.name }}</view>
  60. </view>
  61. <view class="battery-text">{{ $t('编号')+':'+item.mac_id }}</view>
  62. <view class="battery-text">{{ $t('状态')+':'+item.expire == 1 ? $t('到期') : item.online == 1 ? $t('在线') : $t('离线') }}</view>
  63. <view class="battery-text">{{ $t('时间')+':'+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. {{$t('详情')}}
  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">{{$t('续费')}}</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">{{$t('定位')}}</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">{{$t('报警')}}</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">{{$t('设置')}}</view>
  94. </view>
  95. </view>
  96. </view>
  97. </view>
  98. <i-load-more :tip="isLoading ? $t('正在加载...') : $t('没有更多信息啦~')" :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="https://qiniu.bms16.com/FglQLe48CN_EJaFZxAQoBYbRkuxV"></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="https://qiniu.bms16.com/Fn5mP9lHn-yq1rTxEOzf40sv7pd1"></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="$t('搜索')"
  119. :placeholder="$t('请输入')"
  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">{{$t('搜索')}}</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. {{ $t('全部') }}
  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. {{ $t('在线') }}
  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. {{ $t('离线') }}
  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. {{ $t('到期') }}
  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. uni.setNavigationBarTitle({
  229. title: this.$t('设备列表')
  230. });
  231. if (selectedShopInfo) {
  232. this.setData({
  233. selectedShopInfo: selectedShopInfo
  234. });
  235. }
  236. if (macid) {
  237. this.setData({
  238. macid: macid
  239. });
  240. }
  241. this.loadIconList();
  242. this.loadUserInfo();
  243. },
  244. /**
  245. * 生命周期函数--监听页面显示
  246. */
  247. onShow: function () {
  248. const is_fresh = storage.getRefreshDeviceoPage();
  249. if (is_fresh) {
  250. this.loadUserInfo();
  251. storage.setRefreshDeviceoPage(false);
  252. }
  253. },
  254. /**
  255. * 用户点击右上角分享
  256. */
  257. onShareAppMessage: function () {},
  258. /**
  259. * 页面相关事件处理函数--监听用户下拉动作
  260. */
  261. onPullDownRefresh: function () {
  262. console.log('dd');
  263. this.refreshLoadDeviceList();
  264. },
  265. /**
  266. * 页面上拉触底事件的处理函数
  267. */
  268. onReachBottom: function () {
  269. if (this.isLoading) {
  270. return;
  271. }
  272. this.setData({
  273. isLoading: true
  274. });
  275. this.start_page++;
  276. this.loadDeviceList();
  277. },
  278. methods: {
  279. /**
  280. * 获取首页带设备号数据
  281. */
  282. loadDeviceSearchList: function () {
  283. const macid = this.macid;
  284. const start_page = this.start_page;
  285. this.setData({
  286. deviceSearchList: []
  287. });
  288. console.log(macid);
  289. console.log(start_page);
  290. //console.log(macid+'==='+start_page)
  291. if (!macid || start_page != 1) {
  292. return false;
  293. }
  294. const that = this;
  295. const pData = {
  296. size: that.limit_page,
  297. page: 1,
  298. type: that.search_type == 1 ? 'ONLINE' : that.search_type == 2 ? 'OFFLINE' : that.search_type == 3 ? 'EXPIRE' : 'ALL',
  299. id: that.selectedShopInfo.id,
  300. search: that.macid
  301. };
  302. http.postApi(config.API_BATTERY_LIST, pData, (resp) => {
  303. if (resp.data.code === 200) {
  304. var reponseList = resp.data.data.list;
  305. for (var i = 0; reponseList.length > i; i++) {
  306. reponseList[i].display_bms = reponseList[i].display_bms - 0;
  307. if (that.userInfo.type != 'group') {
  308. if (reponseList[i].display_bms - 0 === 0) {
  309. reponseList[i].isBms = 0;
  310. } else {
  311. reponseList[i].isBms = 1;
  312. }
  313. } else {
  314. reponseList[i].isBms = 1;
  315. }
  316. }
  317. that.setData({
  318. deviceSearchList: reponseList
  319. });
  320. console.log('zzzxxx');
  321. that.handleMergeData(that.deviceSearchList, 2);
  322. } else {
  323. common.simpleToast(that,resp.data.msg);
  324. }
  325. });
  326. },
  327. handleCloseShopContainer: function () {
  328. this.setData({
  329. isShowShopContainer: false
  330. });
  331. },
  332. handleShowShopContainer: function () {
  333. this.setData({
  334. isShowShopContainer: true
  335. });
  336. },
  337. bindClickMainShop: function () {
  338. if (this.selectedShopInfo == {}) {
  339. return;
  340. }
  341. this.setData({
  342. search: '',
  343. seach_value: '',
  344. selectedShopInfo: {}
  345. });
  346. this.refreshLoadDeviceList();
  347. },
  348. loadIconList: function () {
  349. this.iconList = storage.getIconList();
  350. if (!this.iconList) {
  351. http.postApi(config.API_BATTERY_ICON_LIST, {}, (resp) => {
  352. if (resp.data.code === 200) {
  353. storage.setIconList(resp.data.data.list);
  354. this.setData({
  355. iconList: resp.data.data.list
  356. });
  357. } else {
  358. common.simpleToast(this,resp.data.msg);
  359. }
  360. });
  361. } else {
  362. this.setData({
  363. iconList: this.iconList
  364. });
  365. }
  366. },
  367. loadUserInfo: function () {
  368. const userInfo = storage.getUserInfo();
  369. if (!userInfo) {
  370. http.postApi(config.API_USER_INFO, {}, (resp) => {
  371. if (resp.data.code === 200) {
  372. storage.setUserInfo(resp.data.data);
  373. this.setData({
  374. userInfo: resp.data.data
  375. });
  376. this.refreshLoadDeviceList();
  377. this.loadGroupTree();
  378. /*this.setData({
  379. shopList: common.shopListToTree(storage.getTotalStatisList(), me.data.userInfo.shop_id)
  380. })*/
  381. } else {
  382. common.simpleToast(this,resp.data.msg);
  383. }
  384. });
  385. } else {
  386. this.setData({
  387. userInfo: userInfo
  388. });
  389. this.refreshLoadDeviceList();
  390. this.loadGroupTree();
  391. }
  392. },
  393. loadChildrenDevice: function (e) {
  394. this.setData({
  395. search: '',
  396. seach_value: '',
  397. selectedShopInfo: e.currentTarget.dataset.data
  398. });
  399. storage.setSelectedShopInfo(e.currentTarget.dataset.data);
  400. this.refreshLoadDeviceList();
  401. },
  402. refreshLoadDeviceList: function () {
  403. if (this.isLoading) {
  404. return;
  405. }
  406. this.setData({
  407. deviceList: [],
  408. isLoading: true
  409. });
  410. common.loading(this);
  411. this.limit_page = LIMT_PAGE;
  412. this.start_page = 1;
  413. this.loadDeviceList();
  414. console.log('this.data.seach_value', this.seach_value);
  415. if (this.seach_value.length !== 0) {
  416. this.loadDeviceSearchList();
  417. }
  418. },
  419. loadDeviceList: function () {
  420. const that = this;
  421. const pData = {
  422. size: that.limit_page,
  423. page: that.start_page,
  424. type: that.search_type == 1 ? 'ONLINE' : that.search_type == 2 ? 'OFFLINE' : that.search_type == 3 ? 'EXPIRE' : 'ALL',
  425. id: that.selectedShopInfo.id,
  426. search: that.search
  427. };
  428. http.postApi(config.API_BATTERY_LIST, pData, (resp) => {
  429. uni.hideLoading();
  430. uni.stopPullDownRefresh();
  431. if (resp.data.code === 200) {
  432. let deviceList = that.deviceList;
  433. var reponseList = resp.data.data.list;
  434. var s_index = -1;
  435. const _deviceInfo = storage.getSelectedDeviceInfo();
  436. //修改接口异步为同步
  437. if (_deviceInfo && that.userInfo.type == 'group') {
  438. that.asyncRefhDeviceInfo(_deviceInfo).then((test) => {
  439. const deviceInfo = storage.getSelectedDeviceInfo();
  440. for (var i = 0; reponseList.length > i; i++) {
  441. if (deviceInfo && deviceInfo.mac_id === reponseList[i].mac_id) {
  442. s_index = i;
  443. }
  444. reponseList[i].isSelect = 0;
  445. reponseList[i].display_bms = reponseList[i].display_bms - 0;
  446. if (that.userInfo.type != 'group') {
  447. if (reponseList[i].display_bms - 0 === 0) {
  448. reponseList[i].isBms = 0;
  449. } else {
  450. reponseList[i].isBms = 1;
  451. }
  452. } else {
  453. reponseList[i].isBms = 1;
  454. }
  455. }
  456. if (s_index !== -1 && this.search_type == 0) {
  457. reponseList.splice(s_index, 1);
  458. }
  459. if (deviceInfo && that.start_page == 1 && this.search_type == 0) {
  460. deviceInfo.isSelect = 1;
  461. reponseList.unshift(deviceInfo);
  462. }
  463. deviceList.push.apply(deviceList, reponseList);
  464. that.setData({
  465. deviceList: deviceList,
  466. isLoading: false,
  467. all_count: resp.data.data.all_count,
  468. online_count: resp.data.data.online_count,
  469. offline_count: resp.data.data.offline_count,
  470. expire_count: resp.data.data.expire_count
  471. });
  472. });
  473. } else {
  474. const deviceInfo = storage.getSelectedDeviceInfo();
  475. for (var i = 0; reponseList.length > i; i++) {
  476. if (deviceInfo && deviceInfo.mac_id === reponseList[i].mac_id) {
  477. s_index = i;
  478. }
  479. reponseList[i].isSelect = 0;
  480. reponseList[i].display_bms = reponseList[i].display_bms - 0;
  481. if (that.userInfo.type != 'group') {
  482. if (reponseList[i].display_bms - 0 === 0) {
  483. reponseList[i].isBms = 0;
  484. } else {
  485. reponseList[i].isBms = 1;
  486. }
  487. } else {
  488. reponseList[i].isBms = 1;
  489. }
  490. }
  491. if (s_index !== -1 && this.search_type == 0) {
  492. reponseList.splice(s_index, 1);
  493. }
  494. if (deviceInfo && that.start_page == 1 && this.search_type == 0) {
  495. deviceInfo.isSelect = 1;
  496. reponseList.unshift(deviceInfo);
  497. }
  498. deviceList.push.apply(deviceList, reponseList);
  499. that.setData({
  500. deviceList: deviceList,
  501. isLoading: false,
  502. all_count: resp.data.data.all_count,
  503. online_count: resp.data.data.online_count,
  504. offline_count: resp.data.data.offline_count,
  505. expire_count: resp.data.data.expire_count
  506. });
  507. }
  508. // me.handleMergeData(me.data.deviceList, 1)
  509. // if (me.data.start_page ==1 && deviceInfo != null) {
  510. // deviceInfo.isSelect = 1
  511. // me.setData({
  512. // deviceList: me.data.deviceList.unshift(deviceInfo)
  513. // })
  514. // }
  515. // console.log("deviceList",me.data.deviceList)
  516. } else {
  517. common.simpleToast(that,resp.data.msg);
  518. }
  519. });
  520. },
  521. asyncRefhDeviceInfo(_deviceInfo) {
  522. return new Promise((reslove) => {
  523. const searchData = {
  524. search: _deviceInfo.mac_id,
  525. page: 1,
  526. size: 5,
  527. timestamp: Date.now()
  528. };
  529. const that = this
  530. http.postApi(config.API_BATTERY_SEARCH, searchData, function (resp) {
  531. if (resp.data.code === 200) {
  532. const deviceInfo = resp.data.data.list[0];
  533. console.log(deviceInfo, 'deviceInfo2222');
  534. storage.setSelectedDeviceInfo(deviceInfo);
  535. reslove(deviceInfo);
  536. } else {
  537. common.simpleToast(that,resp.data.msg);
  538. }
  539. });
  540. });
  541. },
  542. bindSearchType: function (e) {
  543. const search_type = e.currentTarget.dataset.searchtype;
  544. this.setData({
  545. search_type: search_type
  546. });
  547. common.loading(this);
  548. this.refreshLoadDeviceList();
  549. },
  550. navigatorToPage: function (e) {
  551. const page = e.currentTarget.dataset.page;
  552. if (!page) {
  553. return;
  554. }
  555. uni.navigateTo({
  556. url: page
  557. });
  558. },
  559. bindLocal: function (e) {
  560. const index = e.currentTarget.dataset.index;
  561. const deviceInfo = this.deviceList[index];
  562. if (deviceInfo.expire == 1) {
  563. common.simpleToast(this,this.$t('设备到期'));
  564. return;
  565. }
  566. if (
  567. common.isEmpty(deviceInfo.longitude + '') ||
  568. deviceInfo.longitude == '-' ||
  569. common.isEmpty(deviceInfo.latitude + '') ||
  570. deviceInfo.latitude == '-' ||
  571. deviceInfo.longitude == 0 ||
  572. deviceInfo.latitude == 0
  573. ) {
  574. common.simpleToast(this,this.$t('该设备暂无位置信息'));
  575. return;
  576. }
  577. storage.setSelectedDeviceInfo(deviceInfo);
  578. uni.navigateTo({
  579. url: '/pages/deviceLocal/deviceLocal'
  580. });
  581. },
  582. bindToBMS: function (e) {
  583. const index = e.currentTarget.dataset.index;
  584. const deviceInfo = this.deviceList[index];
  585. if (deviceInfo.expire == 1) {
  586. common.simpleToast(this,this.$t('设备到期'));
  587. return;
  588. }
  589. if (deviceInfo.bms == 1) {
  590. uni.navigateTo({
  591. url:
  592. '/pages/bms/bms?macid=' +
  593. deviceInfo.mac_id +
  594. '&deviceType=' +
  595. deviceInfo.device_type +
  596. '&bt_type=' +
  597. deviceInfo.bt_type +
  598. '&bms=' +
  599. deviceInfo.bms +
  600. '&btid=' +
  601. deviceInfo.btid +
  602. '&btkey=' +
  603. deviceInfo.btkey,
  604. success: function (res) {},
  605. fail: function (res) {},
  606. complete: function (res) {}
  607. });
  608. } else {
  609. common.alert(this.$t('该设备暂未配置BMS数据'));
  610. return;
  611. }
  612. },
  613. bindToInfo: function (e) {
  614. const index = e.currentTarget.dataset.index;
  615. const deviceInfo = this.deviceList[index];
  616. if (deviceInfo.expire == 1) {
  617. common.simpleToast(this,this.$t('设备到期'));
  618. return;
  619. }
  620. // storage.setSelectedDeviceInfo(deviceInfo)
  621. const _deviceInfo = encodeURIComponent(JSON.stringify(deviceInfo));
  622. uni.navigateTo({
  623. url: '/myPages/pages/deviceInfo/deviceInfo?deviceInfo=' + _deviceInfo
  624. });
  625. },
  626. loadGroupTree: function () {
  627. if (this.userInfo.type != 'group') {
  628. return;
  629. }
  630. const groupTreeList = storage.getGroupTreeList();
  631. const groupList = storage.getGroupList();
  632. if (!groupTreeList || !groupList || groupTreeList.constructor != Array) {
  633. const me = this;
  634. http.postApi(config.API_USER_GROUP_LIST, {}, function (resp) {
  635. if (resp.data.code === 200) {
  636. var groupList = common.groupTreeLeaf(common.groupListToTree(resp.data.data.list, me.userInfo.info.id));
  637. var groupTreeList = [
  638. groupList.find((x) => {
  639. return parseInt(x.id) === parseInt(me.userInfo.info.id);
  640. })
  641. ];
  642. groupTreeList[0].Level = 0;
  643. groupTreeList[0].Leaf = false;
  644. me.setData({
  645. groupTreeList: groupTreeList,
  646. groupList: groupList
  647. });
  648. storage.setGroupTreeList(groupTreeList);
  649. storage.setGroupList(groupList);
  650. } else {
  651. common.simpleToast(me,resp.data.msg);
  652. }
  653. });
  654. } else {
  655. this.setData({
  656. groupTreeList: groupTreeList,
  657. groupList: groupList
  658. });
  659. }
  660. },
  661. bindInputSearch: function (e) {
  662. this.seach_value = e.detail.value;
  663. },
  664. bindHandleSearch: function () {
  665. this.search = this.seach_value;
  666. this.macid = '';
  667. this.refreshLoadDeviceList();
  668. },
  669. scanCode: function (e) {
  670. uni.scanCode({
  671. onlyFromCamera: true,
  672. scanType: [],
  673. success: (res) => {
  674. //console.log(res)
  675. if (res.result) {
  676. this.setData({
  677. search: res.result,
  678. seach_value: res.result
  679. });
  680. this.refreshLoadDeviceList();
  681. }
  682. },
  683. fail: function (res) {},
  684. complete: function (res) {}
  685. });
  686. },
  687. bindSelect: function (e) {
  688. const index = e.currentTarget.dataset.index;
  689. const deviceInfo = this.deviceList[index];
  690. if (deviceInfo.expire == 1) {
  691. common.simpleToast(this,this.$t('设备到期'));
  692. return;
  693. }
  694. storage.setSelectedDeviceInfo(deviceInfo);
  695. uni.reLaunch({
  696. url: '/pages/home/home'
  697. });
  698. },
  699. bindAlarm: function (e) {
  700. const index = e.currentTarget.dataset.index;
  701. const deviceInfo = this.deviceList[index];
  702. if (deviceInfo.expire == 1) {
  703. common.simpleToast(this,this.$t('设备到期'));
  704. return;
  705. }
  706. uni.navigateTo({
  707. url: '/pages/warnList/warnList?macid=' + deviceInfo.mac_id
  708. });
  709. },
  710. bindToSet: function (e) {
  711. const index = e.currentTarget.dataset.index;
  712. const deviceInfo = this.deviceList[index];
  713. if (deviceInfo.expire == 1) {
  714. common.simpleToast(this,this.$t('设备到期'));
  715. return;
  716. }
  717. uni.navigateTo({
  718. url: '/myPages/pages/deviceCommand/deviceCommand?macid=' + deviceInfo.mac_id + '&type=' + deviceInfo.device_type + '&bt_type=' + deviceInfo.bt_type
  719. });
  720. },
  721. handleReturn: function () {
  722. uni.navigateBack({
  723. delta: 1
  724. });
  725. },
  726. bindCredit: function (e) {
  727. const index = e.currentTarget.dataset.index;
  728. const deviceInfo = this.deviceList[index];
  729. uni.navigateTo({
  730. url: '/pages/credit/credit?macid=' + deviceInfo.mac_id,
  731. success: function (res) {},
  732. fail: function (res) {},
  733. complete: function (res) {}
  734. });
  735. },
  736. handleAddDevice() {
  737. uni.navigateTo({
  738. url: '/myPages/pages/addDevice/addDevice'
  739. });
  740. },
  741. groupTreeLeaf(e) {
  742. const index = e.currentTarget.dataset.index;
  743. var groupTreeList = this.groupTreeList;
  744. if (groupTreeList[index].Leaf) {
  745. var i = 0;
  746. for (; index + i + 1 < groupTreeList.length; i++) {
  747. if (groupTreeList[index + i + 1].Level <= groupTreeList[index].Level) {
  748. break;
  749. }
  750. }
  751. groupTreeList.splice(index + 1, i);
  752. groupTreeList[index].Leaf = false;
  753. } else if (groupTreeList[index].children_cnt != 0) {
  754. var i = 0;
  755. this.groupList.forEach((p) => {
  756. if (parseInt(p.parent_id) === parseInt(groupTreeList[index].id)) {
  757. groupTreeList.splice(index + i + 1, 0, p);
  758. groupTreeList[index + i + 1].Level = groupTreeList[index].Level + 1;
  759. groupTreeList[index + i + 1].Leaf = false;
  760. i++;
  761. }
  762. });
  763. groupTreeList[index].Leaf = true;
  764. }
  765. this.setData({
  766. groupTreeList: groupTreeList
  767. });
  768. storage.setGroupTreeList(groupTreeList);
  769. },
  770. bindGroupSearch(e) {
  771. uni.navigateTo({
  772. url: '/pages/searchDevice/searchDevice?search=' + this.seach_value
  773. });
  774. },
  775. handleMergeData: function (e, type) {
  776. //数据比对去重操作
  777. const that = this;
  778. if (type == 1) {
  779. that.deviceList = e;
  780. }
  781. if (type == 2) {
  782. that.deviceSearchList = e;
  783. }
  784. let deviceList = that.deviceList;
  785. let deviceSearchList = that.deviceSearchList;
  786. // console.log(deviceList)
  787. // console.log(deviceSearchList)
  788. let list = [];
  789. let againDeviceList = [];
  790. if (deviceList.length >= 1 && deviceSearchList.length >= 1) {
  791. for (let i = 0, len = deviceSearchList.length; i < len; i++) {
  792. deviceSearchList[i].deviceHighlight = 1;
  793. list.push(deviceSearchList[i]);
  794. for (let j = 0; j < deviceList.length; j++) {
  795. if (deviceSearchList[i].mac_id != deviceList[j].mac_id) {
  796. deviceList[j].deviceHighlight = 2;
  797. againDeviceList.push(deviceList[j]);
  798. }
  799. }
  800. break;
  801. }
  802. this.setData({
  803. deviceList: list.concat(againDeviceList)
  804. });
  805. this.loadReponseDealData(this.deviceList);
  806. } else {
  807. if (deviceList.length >= 1) {
  808. for (let j = 0; j < deviceList.length; j++) {
  809. deviceList[j].deviceHighlight = 2;
  810. againDeviceList.push(deviceList[j]);
  811. }
  812. this.setData({
  813. deviceList: againDeviceList
  814. });
  815. this.loadReponseDealData(this.deviceList);
  816. }
  817. }
  818. },
  819. loadReponseDealData(dev_list) {
  820. dev_list.forEach((p, i) => {
  821. var device = p;
  822. dev_list[i].btaccept = bluetooth.acceptDevice(device);
  823. dev_list[i].isConnect = false;
  824. const deviceInfo = storage.getSelectedDeviceInfo();
  825. if (deviceInfo != null && deviceInfo.mac_id === device.mac_id) {
  826. dev_list[i].isConnect = bluetooth.isConnected(device.mac_id);
  827. if (bluetooth.isConnected(device.mac_id)) {
  828. this.setData({
  829. btmacid: device.mac_id,
  830. btInfo: {}
  831. });
  832. bluetooth.onCharacteristicStateChange(device.mac_id, 'home', (data) => {
  833. this.processBluetoothReceiveData(device, dev_list, data, i);
  834. });
  835. bluetooth.onConnectionStateChange(device.mac_id, 'list', (res) => {
  836. if (this.btmacid == device.mac_id && !res.connected) {
  837. this.setData({
  838. btmacid: ''
  839. });
  840. }
  841. });
  842. bluetooth.stateUpdate(device.mac_id);
  843. }
  844. }
  845. });
  846. dev_list.map((item, index) => {
  847. if (dev_list[index].isConnect === true) {
  848. dev_list.unshift(dev_list.splice(index, 1)[0]);
  849. }
  850. });
  851. this.setData({
  852. deviceList: dev_list
  853. });
  854. // var dataList = this.data.list
  855. // for (var i = 0; dataList.length > i; i++) {
  856. // dataList[i].isConnect = false
  857. // }
  858. },
  859. bindBTState(e) {
  860. let id = e.currentTarget.dataset.id;
  861. var batteryList = this.deviceList;
  862. if (batteryList[id].isConnect) {
  863. bluetooth.closeDevice(
  864. batteryList[id].mac_id,
  865. () => {
  866. batteryList[id].isConnect = false;
  867. this.setData({
  868. deviceList: batteryList
  869. });
  870. },
  871. () => {}
  872. );
  873. } else {
  874. if (!this.bt_loading) {
  875. this.setData({
  876. bt_loading: true
  877. });
  878. this.btConnect(id);
  879. }
  880. }
  881. },
  882. processBluetoothReceiveData(device, dev_list, data, i) {
  883. if ('baud' in data) {
  884. common.bluetoothSetBaud(device, data.baud, this.baud, bluetooth);
  885. return;
  886. }
  887. this.setData({
  888. bt_loading: false
  889. });
  890. if (this.btmacid == device.mac_id) {
  891. this.setData({
  892. btInfo: data
  893. });
  894. var dataList = dev_list;
  895. for (var j = 0; dataList.length > j; j++) {
  896. if (dataList[j].mac_id === this.btmacid) {
  897. dataList[j].isConnect = true;
  898. dataList[j].voltage = data.voltage;
  899. }
  900. }
  901. if (dataList[i].bms === 0) {
  902. this.loadQuantityReponse(device.mac_id, data.voltage, i);
  903. } else {
  904. dataList[i].electric_quantity = data.quantity.toFixed(2);
  905. this.setData({
  906. deviceList: dataList
  907. });
  908. }
  909. this.setData({
  910. deviceList: dataList
  911. });
  912. }
  913. // this.setData({
  914. // bt_loading: false
  915. // })
  916. // batteryList[id].isConnect = true
  917. // if (batteryList[id].btInfo) {
  918. // batteryList[id].btInfo = Object.assign(batteryList[id].btInfo, data)
  919. // } else {
  920. // batteryList[id].btInfo = data
  921. // }
  922. // this.setData({
  923. // batteryList: batteryList
  924. // })
  925. },
  926. btConnect(id) {
  927. var batteryList = this.deviceList;
  928. var device = batteryList[id];
  929. bluetooth.openBluetoothAdapter(
  930. (res) => {
  931. console.log(res);
  932. bluetooth.connectDevice(
  933. device,
  934. () => {
  935. batteryList[id].isConnect = true;
  936. bluetooth.onCharacteristicStateChange(device.mac_id, 'list', (data) => {
  937. this.processBluetoothReceiveData(device, batteryList, data, id);
  938. });
  939. bluetooth.onConnectionStateChange(device.mac_id, 'list', (res) => {
  940. batteryList[id].isConnect = res.connected;
  941. this.setData({
  942. deviceList: batteryList
  943. });
  944. });
  945. common.bluetoothBaud(device, bluetooth, (res) => {
  946. this.setData({
  947. baud: res
  948. });
  949. });
  950. bluetooth.stateUpdate(
  951. device.mac_id,
  952. (res) => {
  953. this.setData({
  954. bt_loading: false
  955. });
  956. },
  957. (res) => {
  958. this.setData({
  959. bt_loading: false
  960. });
  961. }
  962. );
  963. this.setData({
  964. deviceList: batteryList
  965. });
  966. },
  967. (res) => {
  968. console.log(res);
  969. uni.showModal({
  970. content: this.$t('连接设备失败,请靠近设备重试'),
  971. confirmText: this.$t('重试'),
  972. success: (res) => {
  973. if (res.confirm) {
  974. this.btConnect(id);
  975. } else {
  976. this.setData({
  977. bt_loading: false
  978. });
  979. }
  980. },
  981. fail: (res) => {
  982. console.log(res);
  983. this.setData({
  984. bt_loading: false
  985. });
  986. }
  987. });
  988. }
  989. );
  990. },
  991. (res) => {
  992. console.log(res);
  993. uni.showModal({
  994. content: this.$t('需使用手机蓝牙功能,请打开蓝牙'),
  995. confirmText: this.$t('重试'),
  996. success: (res) => {
  997. if (res.confirm) {
  998. this.btConnect(id);
  999. } else {
  1000. this.setData({
  1001. bt_loading: false
  1002. });
  1003. }
  1004. },
  1005. fail: (res) => {
  1006. console.log(res);
  1007. this.setData({
  1008. bt_loading: false
  1009. });
  1010. }
  1011. });
  1012. }
  1013. );
  1014. }
  1015. }
  1016. };
  1017. </script>
  1018. <style>
  1019. @import './device.css';
  1020. </style>