device.vue 44 KB

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