home.vue 55 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417
  1. <template>
  2. <view class="container">
  3. <van-popup :show="isShowLeft" position="left" @close="handleCloseLeft">
  4. <view class="left-box">
  5. <image src="/static/resource/images/111.png" class="left-background"></image>
  6. <view class="head-left-box flex-row">
  7. <image :src="userInfo.type == 'group' && userInfo.info.headimg ? userInfo.info.headimg : '/static/resource/images/logo.png'" class="head-left-img"></image>
  8. <view style="text-align: left">
  9. <view class="name-text">{{ userInfo.info.name }}</view>
  10. <button class="quit-button" @tap="bindQuit">{{$t('注销')}}</button>
  11. <view class="version-no">v{{ verson_no }}</view>
  12. </view>
  13. </view>
  14. <view v-if="locale === 'zh-Hans' || locale === 'zh'" class="flex-row flex-between" @tap="bindSmsAlarm">
  15. <view class="left-view-item flex-row">
  16. <image src="http://qiniu.bms16.com/gps/money.png" class="left-img"></image>
  17. <view class="left-text">{{$t('短信报警')}}</view>
  18. </view>
  19. <view class="gold-view">{{ coin / 100 + $t('币') }}</view>
  20. </view>
  21. <button class="left-item flex-row" @tap="bindDevice">
  22. <image src="/static/resource/images/guanli.png" class="left-img"></image>
  23. <view class="left-text">{{$t('设备管理')}}</view>
  24. </button>
  25. <view v-if="notice" style="position: relative">
  26. <button class="left-item flex-row" @tap="bindNotice">
  27. <image src="/static/resource/images/xiaoxi.png" class="left-img"></image>
  28. <view class="left-text">{{$t('消息通知')}}</view>
  29. </button>
  30. <image :src="noticeStatus ? '/static/resource/images/kaiqi.png' : '/static/resource/images/guanbi.png'" class="notice-img" @tap="bindSetNotice"></image>
  31. </view>
  32. <!-- <button v-if="macid" class="left-item flex-row" @tap="bindCredit">
  33. <image src="/static/resource/images/chongzhi.png" class="left-img"></image>
  34. <view class="left-text">{{$t('续费充值')}}</view>
  35. </button> -->
  36. <button class="left-item flex-row" @tap="bindWillExpire">
  37. <image src="/static/resource/images/willExpire.png" class="left-img"></image>
  38. <view class="left-text">{{$t('即将到期')}}</view>
  39. </button>
  40. </view>
  41. </van-popup>
  42. <view class="top-container">
  43. <view class="head-box flex-row">
  44. <image src="https://qiniu.bms16.com/Fkg8b-r_MZwLn0UTdeRiR2fCobBP" class="head-img" mode="widthFix" @tap="bindMy"></image>
  45. <view class="status-box flex-row">
  46. <view v-if="deviceInfo.online == 1" class="status-item flex-row">
  47. <image src="/static/resource/images/xianzhong@3x.png" class="status-img" mode="widthFix"></image>
  48. <view class="status-text">{{$t('设备在线')}}</view>
  49. </view>
  50. <view v-else class="status-item flex-row">
  51. <image src="/static/resource/images/weixianzhong@3x.png" class="status-img" mode="widthFix"></image>
  52. <view class="status-text">{{$t('设备离线')}}</view>
  53. </view>
  54. <!--view class="status-item flex-row">
  55. <image src="/resource/images/xianzhong@3x.png" class="status-img" mode="widthFix"></image>
  56. <view class="status-text">
  57. 手机在线
  58. </view>
  59. </view-->
  60. <view v-if="bt_status == 1" class="status-item flex-row" @tap="bluetoothClose">
  61. <image src="/static/resource/images/xianzhong@3x.png" class="status-img" mode="widthFix"></image>
  62. <view class="status-text">{{$t('蓝牙连接')}}</view>
  63. </view>
  64. <view v-if="bt_status == 2" class="status-item flex-row" @tap="bluetoothConnect">
  65. <image src="/static/resource/images/weixianzhong@3x.png" class="status-img" mode="widthFix"></image>
  66. <view class="status-text">{{$t('蓝牙断开')}}</view>
  67. </view>
  68. </view>
  69. </view>
  70. <view class="device-box flex-row flex-between">
  71. <view class="device-view" :data-gid="macid" @tap="bindDevice">
  72. <view v-if="macid" class="device-text">{{ $t('设备') + macid }}</view>
  73. <view v-else class="device-text">{{$t('请选择设备')}}</view>
  74. </view>
  75. <view>
  76. <image
  77. src="https://qiniu.bms16.com/FulhiMIaug8ha78Mr2UArNtwSm9b"
  78. class="load-img"
  79. :style="loading ? 'animation:loading 0.8s linear infinite;' : ''"
  80. @tap="loadDeviceInfo"
  81. ></image>
  82. </view>
  83. <!-- <view>
  84. <image src="https://qiniu.bms16.com/FulhiMIaug8ha78Mr2UArNtwSm9b" class="load-img"
  85. style="{{ loading ? 'animation:loading 0.8s linear infinite;' : '' }}" bindtap="refreshBluetooth"></image>
  86. </view> -->
  87. <!--view class="sky-view">
  88. <view class="sky-text" style="font-size:28rpx;">
  89. 32℃
  90. </view>
  91. <view class="sky-text">
  92. 多云转晴
  93. </view>
  94. </view-->
  95. </view>
  96. <view class="main-box">
  97. <view class="main-img">
  98. <image src="/static/resource/images/daquan.png" class="main-img"></image>
  99. <view class="main-text">
  100. {{
  101. btInfo.quantity
  102. ? tools.toFixed(btInfo.quantity, 0)
  103. : bmsInfo.state
  104. ? tools.toFixed(bmsInfo.state.soc, 0)
  105. : tools.toFixed(deviceInfo.quantity, 0)
  106. ? tools.toFixed(deviceInfo.quantity, 0)
  107. : '0'
  108. }}%
  109. </view>
  110. <view
  111. v-if="(bmsInfo.state && bmsInfo.chargeState >= 0 && bmsInfo.chargeState <= 2) || (btInfo && btInfo.chargeState >= 0 && btInfo.chargeState <= 2)"
  112. class="main-status"
  113. >
  114. <image src="/static/resource/images/chongdianzhong.png" class="chongdian-img"></image>
  115. <view class="main-status-text">
  116. <block v-if="btInfo && btInfo.chargeState >= 0">
  117. <text v-if="btInfo.chargeState == 0">{{$t('静止')}}</text>
  118. <text v-else-if="btInfo.chargeState == 1">{{$t('充电中')}}</text>
  119. <text v-else-if="btInfo.chargeState == 2">{{$t('放电中')}}</text>
  120. <!-- <text wx:else>未知</text> -->
  121. </block>
  122. <block v-else-if="bmsInfo.state">
  123. <text v-if="bmsInfo.state.chargeState == 0">{{$t('静止')}}</text>
  124. <text v-else-if="bmsInfo.state.chargeState == 1">{{$t('充电中')}}</text>
  125. <text v-else-if="bmsInfo.state.chargeState == 2">{{$t('放电中')}}</text>
  126. <!-- <text wx:else>未知</text> -->
  127. </block>
  128. <!-- {{ btInfo.chargeState ? (btInfo.chargeState == 1 ? "充电中" : (btInfo.chargeState == 2 ? "放电中" : "静止")) : (bmsInfo.state ? (bmsInfo.state.chargeState == 1 ? "充电中" : (bmsInfo.state.chargeState == 2 ? "放电中" : "静止")) : (deviceInfo.chargeState == 1 ? "充电中" : (deviceInfo.chargeState == 0 ? "未充电" : "未知"))) }} -->
  129. </view>
  130. </view>
  131. </view>
  132. </view>
  133. <view v-if="bms" class="bms-box" @tap="bindToBMS">
  134. <view class="bms-text">BMS</view>
  135. <image src="/static/resource/images/fanhui.png" class="bms-img"></image>
  136. </view>
  137. <!-- BTJYWJT -->
  138. <view
  139. v-if="macid && isBtj && (deviceInfo.device_type == 'FMBMS' || deviceInfo.device_type == 'BTJYWJT' || deviceInfo.device_type == 'FMYWJT')"
  140. class="emergency-starting"
  141. @tap="bindEmergencyStarting"
  142. >
  143. <view class="alarm-text">{{$t('应急启动')}}</view>
  144. </view>
  145. <view v-if="macid" class="alarm-box" @tap="bindAlarm">
  146. <image src="/static/resource/images/baojin2.png" class="bms-img"></image>
  147. <view class="alarm-text">{{$t('报警')}}</view>
  148. </view>
  149. </view>
  150. <view class="status-container">
  151. <image src="/static/resource/images/card.png" class="stat-img"></image>
  152. <view class="stat-box">
  153. <view class="stat-item">
  154. <view class="stat-name">{{$t('总电压')}}</view>
  155. <view class="stat-value">
  156. {{
  157. btInfo.voltage
  158. ? tools.toFixed(btInfo.voltage, 2)
  159. : bmsInfo.state
  160. ? tools.toFixed(bmsInfo.state.voltageAll, 1)
  161. : deviceInfo.voltage
  162. ? tools.toFixed(deviceInfo.voltage, 2)
  163. : '0'
  164. }}
  165. </view>
  166. <view class="stat-tip">(V)</view>
  167. </view>
  168. <view class="stat-item" @tap="bindMileage">
  169. <view class="stat-name">{{$t('当日里程')}}</view>
  170. <view class="stat-value">
  171. {{ deviceInfo.day_mil ? tools.toFixed(deviceInfo.day_mil, 1) : '0' }}
  172. </view>
  173. <view class="stat-tip">(km)</view>
  174. </view>
  175. <view class="stat-item">
  176. <view class="stat-name">{{$t('停留时间')}}</view>
  177. <view class="stat-value">
  178. {{ deviceInfo.heart_time && deviceInfo.heart_time - deviceInfo.gps_time > 0 ? tools.formatSeconds(deviceInfo.heart_time - deviceInfo.gps_time)[0] : '0' }}
  179. </view>
  180. <view class="stat-tip">
  181. ({{
  182. deviceInfo.heart_time && deviceInfo.heart_time - deviceInfo.gps_time > 0 ? tools.formatSeconds(deviceInfo.heart_time - deviceInfo.gps_time)[1] : $t('秒')
  183. }})
  184. </view>
  185. </view>
  186. <view v-if="bmsInfo.state" class="stat-item">
  187. <view class="stat-name">{{$t('电池温度')}}</view>
  188. <view v-if="bmsInfo.third_device_type != 'KYYWJT'" class="stat-value">
  189. {{ btInfo.temp ? btInfo.temp : bmsInfo.state.temp[0] ? tools.toFixed(bmsInfo.state.temp[0], 1) : $t('未知') }}
  190. </view>
  191. <view class="stat-value" v-else>
  192. {{ btInfo.temp ? btInfo.temp : tools.toFixed(bmsInfo.state.temp[0], 1) }}
  193. </view>
  194. <view class="stat-tip">(℃)</view>
  195. </view>
  196. </view>
  197. </view>
  198. <view class="map-container">
  199. <view class="map-box">
  200. <view class="map-top">
  201. <view class="map-top-box">
  202. <view class="map-top-text">GPS</view>
  203. <view :class="gps > 0 ? 'map-top-i' : 'map-top-n'" />
  204. <view :class="gps > 1 ? 'map-top-i' : 'map-top-n'" />
  205. <view :class="gps > 2 ? 'map-top-i' : 'map-top-n'" />
  206. <view :class="gps > 3 ? 'map-top-i' : 'map-top-n'" />
  207. <view :class="gps > 4 ? 'map-top-i' : 'map-top-n'" />
  208. </view>
  209. <view class="map-top-box">
  210. <view class="map-top-text">GSM</view>
  211. <view :class="gsm > 0 ? 'map-top-i' : 'map-top-n'" />
  212. <view :class="gsm > 1 ? 'map-top-i' : 'map-top-n'" />
  213. <view :class="gsm > 2 ? 'map-top-i' : 'map-top-n'" />
  214. <view :class="gsm > 3 ? 'map-top-i' : 'map-top-n'" />
  215. <view :class="gsm > 4 ? 'map-top-i' : 'map-top-n'" />
  216. </view>
  217. </view>
  218. <view v-if="locale === 'zh-Hans' || locale === 'zh'">
  219. <map
  220. id="myMap"
  221. v-show="!isDrawerOpen"
  222. style="width: 100%; height: 400rpx;"
  223. :enable-zoom="false"
  224. :enable-scroll="false"
  225. :longitude="deviceInfo.longitude"
  226. :latitude="deviceInfo.latitude"
  227. :markers="[{ id: 1, latitude: deviceInfo.latitude, longitude: deviceInfo.longitude, iconPath: '/static/resource/images/weizhi2.png', width: 45, height: 45 }]"
  228. @tap="bindLocal"
  229. @markertap="bindMarkertasp">
  230. <view v-if="addr" class="map-addr">
  231. <image src="/static/resource/images/dingwei.png" class="addr-img"></image>
  232. <view class="addr-text">
  233. {{ addr }}
  234. </view>
  235. </view>
  236. </map>
  237. </view>
  238. <view v-else class="content">
  239. <view id="container">
  240. <!-- <view class="loader"></view> -->
  241. <view id="mapModule" :prop="deviceInfo" :change:prop="mapModule.update"
  242. v-show="!isDrawerOpen" style="width: 100%; height:400rpx;position: relative;"
  243. :locaDegree="locaDegree"
  244. :change:locaDegree="mapModule.initAmap"
  245. >
  246. <view v-if="addr" class="map-addr">
  247. <image src="/static/resource/images/dingwei.png" class="addr-img"></image>
  248. <view class="addr-text">
  249. {{ addr }}
  250. </view>
  251. </view>
  252. </view>
  253. </view>
  254. </view>
  255. </view>
  256. </view>
  257. <view>
  258. <!-- #ifdef MP-WEIXIN -->
  259. <!-- [miniprogram-to-uniapp] 公众号关注组件 仅微信小程序支持 -->
  260. <official-account></official-account>
  261. <!-- #endif -->
  262. <!-- #ifndef MP-WEIXIN -->
  263. <!-- #endif -->
  264. </view>
  265. </view>
  266. </template>
  267. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  268. <script module="mapModule" lang="renderjs">
  269. var transform = require('../../common/transform.js');
  270. var meMarker = []
  271. var polylinePath = null
  272. export default {
  273. data() {
  274. return {
  275. ownerInstance: null,
  276. map: {},
  277. markersArray: [],
  278. }
  279. },
  280. mounted() {},
  281. methods: {
  282. initAmap(lngLat, _, ownerInstance) {
  283. console.log(lngLat, "坐标系lngLat")
  284. lngLat = {
  285. lat: lngLat.latitude,
  286. lng: lngLat.longitude
  287. }
  288. lngLat = transform.wgs_gcj_encrypts(lngLat)
  289. // lngLat = transform.gcj_wgs_encrypts(lngLat)
  290. let _this = this
  291. const script = document.createElement('script')
  292. script.src =
  293. 'https://map.gpsall.cc/maps/api/js?key=AIzaSyDZyqQT5qbvMS0rNoeD6apBkIVId6BSgLo&callback=initMap&libraries=&v=weekly'
  294. window.initMap = function() {
  295. setTimeout(() => {
  296. _this.loadAmap(lngLat)
  297. }, 1500);
  298. };
  299. document.head.appendChild(script)
  300. },
  301. loadPanTo(lngLat, _, ownerInstance) {
  302. lngLat = {
  303. lat: lngLat.latitude,
  304. lng: lngLat.longitude
  305. }
  306. console.log("lngLat", lngLat)
  307. lngLat = transform.wgs_gcj_encrypts(lngLat)
  308. console.log("lngLat", lngLat)
  309. this.map.panTo(new google.maps.LatLng(lngLat.latitude, lngLat.longitude))
  310. },
  311. loadAmap(lngLat) {
  312. let _this = this
  313. var myOptions = {
  314. center: {
  315. lat: parseFloat(lngLat.latitude),
  316. lng: parseFloat(lngLat.longitude)
  317. },
  318. zoom: 16,
  319. panControl: false,
  320. zoomControl: false,
  321. scaleControl: false,
  322. streetViewControl: false
  323. }
  324. _this.map = new google.maps.Map(document.getElementById("mapModule"), myOptions);
  325. //地图绑定事件
  326. new google.maps.event.addListener(_this.map, "click", function(event) {
  327. _this.$ownerInstance.callMethod('bindLocal')
  328. });
  329. console.log("render初始化数据")
  330. // _this.$ownerInstance.callMethod('loadInitData')
  331. },
  332. update(newValue, _, ownerInstance) {
  333. console.log("newValue新数据",newValue)
  334. const _this = this
  335. _this.deviceInfo = newValue
  336. for (var i = 0; _this.markersArray.length > i; i++) {
  337. _this.markersArray[i].setMap(null);
  338. }
  339. for (var i = 0; _this.deviceInfo.length > i; i++) {
  340. var deviceInfo = _this.deviceInfo
  341. const marker = new google.maps.Marker({
  342. id: deviceInfo.id,
  343. map: _this.map,
  344. data: deviceInfo,
  345. title: "",
  346. latitude: parseFloat(deviceInfo.latitude),
  347. longitude: parseFloat(deviceInfo.longitude),
  348. // position:new google.maps.LatLng( parseFloat(deviceInfo.latitude), parseFloat(deviceInfo.longitude)),
  349. icon: {
  350. url: '/static/resource/images/weizhi2.png',
  351. // size: new google.maps.Size(30, 32),
  352. scaledSize: new google.maps.Size(45, 45)
  353. },
  354. zIndex: 20
  355. });
  356. _this.markersArray.push(marker)
  357. google.maps.event.addListener(marker, 'click', (event) => {
  358. console.log(JSON.stringify(marker.data))
  359. _this.loadMarkertap(ownerInstance, marker.data)
  360. })
  361. }
  362. },
  363. loadMarkertap(ownerInstance, marker) {
  364. // 调用 service 层的方法
  365. ownerInstance.callMethod('onMarkertap', marker)
  366. },
  367. setMePositioning() {
  368. let _this = this
  369. // const marker = new google.maps.Marker({
  370. // position: {
  371. // lat: parseFloat(_this.deviceInfo.latitude),
  372. // lng: parseFloat(_this.deviceInfo.longitude)
  373. // },
  374. // icon: {
  375. // url: "https://maps.gstatic.com/mapfiles/ms2/micons/red.png",
  376. // scaledSize: new google.maps.Size(50, 50)
  377. // },
  378. // map: _this.map
  379. // });
  380. const marker = new google.maps.Marker({
  381. id: 1001,
  382. map: _this.map,
  383. position:new google.maps.LatLng( parseFloat(_this.deviceInfo.latitude), parseFloat(_this.deviceInfo.longitude)),
  384. icon: {
  385. url: "https://maps.gstatic.com/mapfiles/ms2/micons/red.png",
  386. size: new google.maps.Size(50, 50),
  387. scaledSize: new google.maps.Size(50, 50)
  388. },
  389. zIndex: 20
  390. });
  391. meMarker.push(marker)
  392. },
  393. receiveLoca(newValue, oldValue, ownerInstance, instance) {
  394. let _this = this
  395. if (JSON.stringify(newValue) != '{}' && newValue.length != 0) {
  396. _this.deviceInfo = newValue
  397. }
  398. },
  399. receiveTrace(newValue, oldValue, ownerInstance, instance) {
  400. console.log("触发receiveTrace")
  401. let _this = this
  402. if (JSON.stringify(newValue) != '{}' && newValue.length != 0) {
  403. console.log('触发了', newValue, newValue.length)
  404. for (let i = 0; i < meMarker.length; i++) {
  405. meMarker[i].setMap(null);
  406. }
  407. if (polylinePath != null) {
  408. polylinePath.setMap(null);
  409. }
  410. _this.map.setZoom(20);
  411. const marker1 = new google.maps.Marker({
  412. position: {
  413. lat: parseFloat(newValue[0].lat),
  414. lng: parseFloat(newValue[0].lng)
  415. },
  416. icon: {
  417. url: "static/img/map/icon_start.png",
  418. scaledSize: new google.maps.Size(20, 20)
  419. },
  420. map: _this.map
  421. });
  422. meMarker.push(marker1)
  423. const marker2 = new google.maps.Marker({
  424. position: {
  425. lat: parseFloat(newValue[newValue.length - 1].lat),
  426. lng: parseFloat(newValue[newValue.length - 1].lng)
  427. },
  428. icon: {
  429. url: "static/img/map/icon_end.png",
  430. scaledSize: new google.maps.Size(20, 20)
  431. },
  432. map: _this.map
  433. });
  434. meMarker.push(marker2)
  435. polylinePath = new google.maps.Polyline({
  436. path: newValue,
  437. geodesic: false,
  438. strokeColor: '#41d9b7',
  439. strokeOpacity: 1,
  440. strokeWeight: 8,
  441. editable: false,
  442. draggable: false,
  443. });
  444. polylinePath.setMap(_this.map)
  445. let pos = {
  446. lat: parseFloat(newValue[0].lat),
  447. lng: parseFloat(newValue[0].lng)
  448. }
  449. _this.map.setCenter(pos)
  450. }
  451. }
  452. }
  453. }
  454. </script>
  455. <script>
  456. // pages/index/index.js
  457. var config = require('../../common/config.js');
  458. var helpConfig = require('../../common/help_config.js');
  459. var http = require('../../common/http.js');
  460. var common = require('../../common/common.js');
  461. var storage = require('../../common/storage.js');
  462. var bluetooth = require('../../common/bluetooth.js');
  463. var QQMapWX = require('../../libs/qqmap-wx-jssdk.js');
  464. var qqmapsdk;
  465. var joinPack = [];
  466. export default {
  467. data() {
  468. return {
  469. macid: '',
  470. deviceInfo: {
  471. online: 0,
  472. device_type: '',
  473. voltage: false,
  474. day_mil: false,
  475. heart_time: '',
  476. gps_time: 0,
  477. longitude: '',
  478. latitude: ''
  479. },
  480. bmsInfo: {
  481. state: false,
  482. chargeState: 0,
  483. third_device_type: ''
  484. },
  485. bms: false,
  486. gps: 0,
  487. gsm: 0,
  488. addr: '',
  489. isShowLeft: false,
  490. userInfo: {
  491. type: '',
  492. info: {
  493. headimg: '',
  494. name: ''
  495. }
  496. },
  497. notice: false,
  498. noticeStatus: false,
  499. loading: false,
  500. bt_status: 0,
  501. btInfo: {
  502. quantity: false,
  503. chargeState: 0,
  504. voltage: false,
  505. temp: false
  506. },
  507. coin: 0,
  508. display_bms: true,
  509. verson_no: '',
  510. baud: '',
  511. isBtj: false,
  512. isShowModal: false,
  513. isDrawerOpen: false,
  514. drawer: false,
  515. locaDegree: {},
  516. locale: ''
  517. };
  518. }
  519. /**
  520. * 生命周期函数--监听页面加载
  521. */,
  522. onLoad: function (options) {
  523. qqmapsdk = new QQMapWX({
  524. key: config.QQ_MAP_KEY
  525. });
  526. this.setData({
  527. verson_no: config.APP_VERSION
  528. });
  529. // const accountInfo = uni.getAccountInfoSync();
  530. // if (accountInfo.miniProgram.appId == 'wx092db752b69b47f5') {
  531. // this.setData({
  532. // isBtj: true
  533. // });
  534. // }
  535. const userInfo = storage.getUserInfo();
  536. this.locale = uni.getLocale();
  537. if (userInfo) {
  538. bluetooth.initBluetooth();
  539. common.bluetoothGetCtlData();
  540. this.loadUserInfo();
  541. this.loadIsWillExpireDevice();
  542. this.loadUpdateNotice();
  543. }
  544. const api_url = uni.getStorageSync('api_url');
  545. },
  546. onReady: function () {},
  547. onUnload: function () {
  548. //this.bluetoothClose()
  549. },
  550. /**
  551. * 生命周期函数--监听页面显示
  552. */
  553. onShow: function () {
  554. const userInfo = storage.getUserInfo();
  555. if (userInfo) {
  556. this.loadGetCoin();
  557. this.loadDeviceInfo();
  558. this.loadNotice();
  559. }
  560. },
  561. /**
  562. * 用户点击右上角分享
  563. */
  564. onShareAppMessage: function () {},
  565. /**
  566. * 页面相关事件处理函数--监听用户下拉动作
  567. */
  568. onPullDownRefresh: function () {
  569. this.loadDeviceInfo();
  570. this.loadNotice();
  571. },
  572. onReachBottom: function () {},
  573. methods: {
  574. loadUpdateNotice: function () {
  575. const that = this
  576. var current_version = 1;
  577. var get_version_current = storage.getNoticeVersion();
  578. if (get_version_current !== current_version) {
  579. uni.showModal({
  580. title: that.$t('新增短信报警提醒功能'),
  581. content: that.$t('点击我的头像->短信报警'),
  582. showCancel: false,
  583. success: function (res) {
  584. if (res.confirm) {
  585. //这里是点击了确定以后
  586. } else {
  587. //这里是点击了取消以后
  588. }
  589. }
  590. });
  591. storage.setNoticeVersion(current_version);
  592. }
  593. },
  594. bluetoothClose: function () {
  595. if (this.loading) {
  596. return;
  597. }
  598. const device = storage.getSelectedDeviceInfo();
  599. this.setData({
  600. loading: true
  601. });
  602. var time = new Date().getTime();
  603. bluetooth.closeDevice(
  604. device.mac_id,
  605. () => {
  606. this.setData({
  607. bt_status: 2
  608. });
  609. setTimeout(() => {
  610. this.setData({
  611. loading: false
  612. });
  613. }, 800 - ((new Date().getTime() - time) % 800));
  614. },
  615. () => {
  616. setTimeout(() => {
  617. this.setData({
  618. loading: false
  619. });
  620. }, 800 - ((new Date().getTime() - time) % 800));
  621. }
  622. );
  623. bluetooth.offCharacteristicStateChange(device.mac_id, 'home');
  624. bluetooth.offConnectionStateChange(device.mac_id, 'home');
  625. },
  626. bluetoothConnect: function (time = null) {
  627. if (this.loading && time == null) {
  628. return;
  629. }
  630. const device = storage.getSelectedDeviceInfo();
  631. if (device && bluetooth.acceptDevice(device)) {
  632. this.setData({
  633. loading: true
  634. });
  635. if (time == null) {
  636. time = new Date().getTime();
  637. }
  638. bluetooth.openBluetoothAdapter(
  639. (res) => {
  640. console.log(res);
  641. bluetooth.connectDevice(
  642. device,
  643. () => {
  644. this.setData({
  645. bt_status: 1
  646. });
  647. bluetooth.onCharacteristicStateChange(device.mac_id, 'home', (data) => {
  648. this.processBluetoothReceiveData(data, device);
  649. });
  650. bluetooth.onConnectionStateChange(device.mac_id, 'home', (res) => {
  651. if (!res.connected) {
  652. this.setData({
  653. bt_status: 2
  654. });
  655. } else {
  656. this.setData({
  657. bt_status: 1
  658. });
  659. }
  660. });
  661. common.bluetoothBaud(device, bluetooth, (res) => {
  662. console.log("波特率"+res);
  663. this.setData({
  664. baud: res
  665. });
  666. });
  667. bluetooth.stateUpdate(
  668. device.mac_id,
  669. (res) => {},
  670. (res) => {}
  671. );
  672. setTimeout(() => {
  673. this.setData({
  674. loading: false
  675. });
  676. }, 800 - ((new Date().getTime() - time) % 800));
  677. },
  678. (res) => {
  679. console.log(res);
  680. uni.showModal({
  681. content: this.$t('连接设备失败,请靠近设备重试'),
  682. confirmText: this.$t('重试'),
  683. success: (res) => {
  684. if (res.confirm) {
  685. this.bluetoothConnect(time);
  686. } else {
  687. setTimeout(() => {
  688. this.setData({
  689. loading: false
  690. });
  691. }, 800 - ((new Date().getTime() - time) % 800));
  692. }
  693. },
  694. fail: (res) => {
  695. console.log(res);
  696. setTimeout(() => {
  697. this.setData({
  698. loading: false
  699. });
  700. }, 800 - ((new Date().getTime() - time) % 800));
  701. }
  702. });
  703. }
  704. );
  705. },
  706. (res) => {
  707. console.log(res);
  708. uni.showModal({
  709. content: this.$t('需使用手机蓝牙功能,请打开蓝牙'),
  710. confirmText: this.$t('重试'),
  711. success: (res) => {
  712. if (res.confirm) {
  713. this.bluetoothConnect(time);
  714. } else {
  715. setTimeout(() => {
  716. this.setData({
  717. loading: false
  718. });
  719. }, 800 - ((new Date().getTime() - time) % 800));
  720. }
  721. },
  722. fail: (res) => {
  723. console.log(res);
  724. setTimeout(() => {
  725. this.setData({
  726. loading: false
  727. });
  728. }, 800 - ((new Date().getTime() - time) % 800));
  729. }
  730. });
  731. }
  732. );
  733. }
  734. },
  735. loadNotice: function () {
  736. // uni.login({
  737. // success: (res) => {
  738. // http.postApi(
  739. // config.API_XCX_NOTICE,
  740. // {
  741. // code: res.code
  742. // },
  743. // (resp) => {
  744. // if (resp.data.code === 200) {
  745. // this.setData({
  746. // notice: true,
  747. // noticeStatus: resp.data.data.status
  748. // });
  749. // }
  750. // }
  751. // );
  752. // }
  753. // });
  754. },
  755. loadBmsData() {
  756. const deviceInfo = storage.getSelectedDeviceInfo();
  757. if (deviceInfo) {
  758. }
  759. },
  760. loadQuantityReponse(macid, voltage) {
  761. var postData = {
  762. macid: macid,
  763. voltage: voltage
  764. };
  765. http.postApi(config.API_ELE_QUANTITY, postData, (resp) => {
  766. if (resp.data.code === 200) {
  767. var electric_quantity = resp.data.data.electric_quantity;
  768. var btInfo = this.btInfo;
  769. var deviceInfo = this.deviceInfo;
  770. var bmsInfo = this.bmsInfo;
  771. bmsInfo = {
  772. state: {
  773. soc: 0
  774. }
  775. };
  776. bmsInfo.state.soc = electric_quantity;
  777. btInfo.quantity = electric_quantity;
  778. deviceInfo.quantity = electric_quantity;
  779. this.setData({
  780. btInfo: btInfo,
  781. deviceInfo: deviceInfo,
  782. bmsInfo: bmsInfo
  783. });
  784. console.log(this.btInfo);
  785. }
  786. });
  787. },
  788. refreshBluetooth() {
  789. const device = storage.getSelectedDeviceInfo();
  790. bluetooth.stateUpdate(
  791. device.mac_id,
  792. (res) => {},
  793. (res) => {}
  794. );
  795. },
  796. loadDeviceInfo: function () {
  797. const deviceInfo = storage.getSelectedDeviceInfo();
  798. if (deviceInfo) {
  799. this.setData({
  800. loading: true
  801. });
  802. http.postApi(
  803. config.API_GPS_INFO,
  804. {
  805. macid: deviceInfo.mac_id
  806. },
  807. (resp) => {
  808. //wx.hideLoading()
  809. if (resp.data.code === 200) {
  810. this.setData({
  811. macid: deviceInfo.mac_id,
  812. deviceInfo: resp.data.data.info,
  813. gps: resp.data.data.info.gpscount,
  814. gsm: parseInt(resp.data.data.info.online) === 0 ? 0 : resp.data.data.info.gsmlevel <= 15 ? 3 : resp.data.data.info.gsmlevel > 18 ? 5 : 4,
  815. locaDegree: {
  816. latitude: resp.data.data.info.latitude,
  817. longitude: resp.data.data.info.longitude
  818. }
  819. });
  820. console.log("电池经纬度",this.locaDegree)
  821. qqmapsdk.reverseGeocoder({
  822. location: {
  823. latitude: resp.data.data.info.latitude,
  824. longitude: resp.data.data.info.longitude
  825. },
  826. success: (res) => {
  827. const formatted_addresses = res.result.formatted_addresses;
  828. const address = res.result.address; // + formatted_addresses.recommend
  829. this.setData({
  830. addr: address
  831. });
  832. }
  833. });
  834. } else {
  835. if (bluetooth.acceptDevice(deviceInfo)) {
  836. this.setData({
  837. macid: deviceInfo.mac_id
  838. });
  839. } else {
  840. common.simpleToast(this,resp.data.msg);
  841. if (resp.data.code === 10044) {
  842. this.setData({
  843. macid: deviceInfo.mac_id
  844. });
  845. } else {
  846. storage.setSelectedDeviceInfo(null);
  847. this.setData({
  848. macid: '',
  849. deviceInfo: {},
  850. gps: 0,
  851. gsm: 0
  852. });
  853. }
  854. }
  855. }
  856. this.loadBluetooth(deviceInfo);
  857. }
  858. );
  859. this.loadBmsInfo();
  860. }
  861. },
  862. loadBluetooth(deviceInfo) {
  863. var time = new Date().getTime();
  864. if (bluetooth.acceptDevice(deviceInfo)) {
  865. if (this.bt_status != 1) {
  866. this.setData({
  867. bt_status: 2
  868. });
  869. bluetooth.openBluetoothAdapter(
  870. (res) => {
  871. bluetooth.connectDevice(
  872. deviceInfo,
  873. () => {
  874. this.setData({
  875. bt_status: 1
  876. });
  877. bluetooth.onCharacteristicStateChange(deviceInfo.mac_id, 'home', (data) => {
  878. this.processBluetoothReceiveData(data, deviceInfo);
  879. });
  880. bluetooth.onConnectionStateChange(deviceInfo.mac_id, 'home', (res) => {
  881. if (!res.connected) {
  882. this.setData({
  883. bt_status: 2
  884. });
  885. } else {
  886. this.setData({
  887. bt_status: 1
  888. });
  889. }
  890. });
  891. common.bluetoothBaud(deviceInfo, bluetooth, (res) => {
  892. this.setData({
  893. baud: res
  894. });
  895. });
  896. bluetooth.stateUpdate(
  897. deviceInfo.mac_id,
  898. (res) => {
  899. setTimeout(() => {
  900. this.setData({
  901. loading: false
  902. });
  903. }, 800 - ((new Date().getTime() - time) % 800));
  904. },
  905. (res) => {
  906. setTimeout(() => {
  907. this.setData({
  908. loading: false
  909. });
  910. }, 800 - ((new Date().getTime() - time) % 800));
  911. }
  912. );
  913. },
  914. (res) => {
  915. console.log(res);
  916. setTimeout(() => {
  917. this.setData({
  918. loading: false
  919. });
  920. }, 800 - ((new Date().getTime() - time) % 800));
  921. }
  922. );
  923. },
  924. (res) => {
  925. console.log(res);
  926. setTimeout(() => {
  927. this.setData({
  928. loading: false
  929. });
  930. }, 800 - ((new Date().getTime() - time) % 800));
  931. }
  932. );
  933. } else {
  934. bluetooth.stateUpdate(
  935. deviceInfo.mac_id,
  936. (res) => {
  937. setTimeout(() => {
  938. this.setData({
  939. loading: false
  940. });
  941. }, 800 - ((new Date().getTime() - time) % 800));
  942. },
  943. (res) => {
  944. setTimeout(() => {
  945. this.setData({
  946. loading: false
  947. });
  948. }, 800 - ((new Date().getTime() - time) % 800));
  949. }
  950. );
  951. }
  952. } else {
  953. setTimeout(() => {
  954. this.setData({
  955. loading: false
  956. });
  957. }, 800 - ((new Date().getTime() - time) % 800));
  958. }
  959. },
  960. bindEmergencyStarting() {
  961. uni.showModal({
  962. content: this.$t('您确定要下发应急启动吗?'),
  963. confirmText: this.$t('确定'),
  964. success: (res) => {
  965. if (res.confirm) {
  966. const deviceInfo = storage.getSelectedDeviceInfo();
  967. console.log(deviceInfo);
  968. var setcommand = '';
  969. if (deviceInfo.device_type == 'FMBMS' || deviceInfo.device_type == 'FMYWJT') {
  970. setcommand = '0xCE';
  971. } else {
  972. setcommand = '32_29';
  973. }
  974. const pData = {
  975. macid: deviceInfo.mac_id,
  976. name: setcommand,
  977. value: '1'
  978. };
  979. const that = this
  980. http.postApi(config.API_BMS_SET, pData, function (resp) {
  981. uni.hideLoading();
  982. if (resp.data.code === 200) {
  983. common.simpleToast(that,that.$t('下发成功'));
  984. } else {
  985. common.simpleToast(that,resp.data.msg);
  986. }
  987. });
  988. } else {
  989. me.setData({
  990. isShowModal: false
  991. });
  992. }
  993. },
  994. fail: (res) => {}
  995. });
  996. },
  997. processBluetoothReceiveData(data, deviceInfo) {
  998. if ('baud' in data) {
  999. common.bluetoothSetBaud(deviceInfo, data.baud, this.baud, bluetooth);
  1000. return;
  1001. }
  1002. if (bluetooth.bluetoothDeviceConfig && data != null) {
  1003. const me = this;
  1004. common.reportBms(deviceInfo.mac_id, data, function (success) {
  1005. me.loadBmsInfo();
  1006. });
  1007. }
  1008. if (!bluetooth.haveBMSForBT(deviceInfo) && data.voltage !== undefined && !data.hasOwnProperty('quantity')) {
  1009. if (bluetooth.isVoltageToEle) {
  1010. common.getQVConfig(deviceInfo.mac_id, function (resp) {
  1011. var hex = resp.data.data.content;
  1012. if (hex != '') {
  1013. bluetooth.voltageToEle(
  1014. deviceInfo.mac_id,
  1015. hex,
  1016. (res) => {},
  1017. (res) => {}
  1018. );
  1019. }
  1020. });
  1021. }
  1022. this.loadQuantityReponse(deviceInfo.mac_id, data.voltage);
  1023. }
  1024. this.setData({
  1025. btInfo: data
  1026. });
  1027. },
  1028. loadUserInfo: function () {
  1029. const userInfo = storage.getUserInfo();
  1030. if (!userInfo) {
  1031. http.postApi(config.API_USER_INFO, {}, (resp) => {
  1032. if (resp.data.code === 200) {
  1033. this.setData({
  1034. userInfo: resp.data.data
  1035. });
  1036. storage.setUserInfo(resp.data.data);
  1037. } else {
  1038. common.simpleToast(this,resp.data.msg);
  1039. }
  1040. });
  1041. } else {
  1042. this.setData({
  1043. userInfo: userInfo
  1044. });
  1045. }
  1046. },
  1047. loadBmsInfo: function () {
  1048. const deviceInfo = storage.getSelectedDeviceInfo();
  1049. if (deviceInfo) {
  1050. //common.loading();
  1051. const me = this;
  1052. http.postApi(
  1053. config.API_BMS_STATE,
  1054. {
  1055. macid: deviceInfo.mac_id
  1056. },
  1057. (resp) => {
  1058. //wx.hideLoading()
  1059. if (resp.data.code === 200) {
  1060. this.setData({
  1061. bms: true,
  1062. bmsInfo: resp.data.data
  1063. });
  1064. if (me.userInfo.type != 'group') {
  1065. if (me.bmsInfo.display_bms - 0 === 0) {
  1066. me.setData({
  1067. display_bms: false
  1068. });
  1069. }
  1070. }
  1071. } else {
  1072. let havebms = bluetooth.haveBMSForBT(deviceInfo);
  1073. this.setData({
  1074. bms: havebms
  1075. });
  1076. }
  1077. }
  1078. );
  1079. }
  1080. },
  1081. bindDevice(event) {
  1082. const userInfo = storage.getUserInfo();
  1083. var that = this;
  1084. if (userInfo) {
  1085. var battery_sn = event.currentTarget.dataset.gid;
  1086. uni.navigateTo({
  1087. url: '/pages/device/device?macid=' + battery_sn
  1088. });
  1089. } else {
  1090. uni.showModal({
  1091. title: '',
  1092. content: that.$t('您还未登录,请先登录'),
  1093. showCancel: true,
  1094. cancelText: that.$t('取消'),
  1095. confirmText: that.$t('确定'),
  1096. success: function (res) {
  1097. if (res.confirm) {
  1098. uni.navigateTo({
  1099. url: '/pages/login/login'
  1100. });
  1101. }
  1102. }
  1103. });
  1104. }
  1105. },
  1106. bindMy() {
  1107. const userInfo = storage.getUserInfo();
  1108. if (userInfo) {
  1109. this.setData({
  1110. isShowLeft: true,
  1111. isDrawerOpen: true
  1112. });
  1113. } else {
  1114. const that = this
  1115. uni.showModal({
  1116. title: '',
  1117. content: that.$t('您还未登录,请先登录'),
  1118. showCancel: true,
  1119. cancelText: that.$t('取消'),
  1120. confirmText: that.$t('确定'),
  1121. success: function (res) {
  1122. if (res.confirm) {
  1123. uni.navigateTo({
  1124. url: '/pages/login/login'
  1125. });
  1126. }
  1127. }
  1128. });
  1129. }
  1130. },
  1131. handleCloseLeft() {
  1132. this.setData({
  1133. isShowLeft: false,
  1134. drawer: true
  1135. });
  1136. var that = this
  1137. // #ifdef APP-PLUS
  1138. setTimeout(function() {
  1139. that.setData({
  1140. isDrawerOpen: false
  1141. })
  1142. }, 300);
  1143. // #endif
  1144. // #ifdef MP-WEIXIN
  1145. that.setData({
  1146. isDrawerOpen: false
  1147. })
  1148. // #endif
  1149. },
  1150. bindToBMS: function () {
  1151. const deviceInfo = storage.getSelectedDeviceInfo();
  1152. uni.navigateTo({
  1153. url:
  1154. '/pages/bms/bms?macid=' +
  1155. deviceInfo.mac_id +
  1156. '&deviceType=' +
  1157. deviceInfo.device_type +
  1158. '&bt_type=' +
  1159. deviceInfo.bt_type +
  1160. '&bms=' +
  1161. deviceInfo.bms +
  1162. '&btid=' +
  1163. deviceInfo.btid +
  1164. '&btkey=' +
  1165. deviceInfo.btkey,
  1166. success: function (res) {},
  1167. fail: function (res) {},
  1168. complete: function (res) {}
  1169. });
  1170. },
  1171. bindLocal: function (e) {
  1172. // const deviceInfo = storage.getSelectedDeviceInfo()
  1173. // console.log(deviceInfo);
  1174. const deviceInfo = this.deviceInfo;
  1175. if (deviceInfo) {
  1176. if (
  1177. this.macid == '' ||
  1178. common.isEmpty(deviceInfo.longitude + '') ||
  1179. deviceInfo.longitude == '-' ||
  1180. common.isEmpty(deviceInfo.latitude + '') ||
  1181. deviceInfo.latitude == '-' ||
  1182. deviceInfo.longitude == 0 ||
  1183. deviceInfo.latitude == 0
  1184. ) {
  1185. common.simpleToast(this,this.$t('该设备暂无位置信息'));
  1186. return;
  1187. }
  1188. if (this.locale === 'zh-Hans' || this.locale === 'zh') {
  1189. uni.navigateTo({
  1190. url: '/pages/deviceLocal/deviceLocal'
  1191. });
  1192. } else {
  1193. uni.navigateTo({
  1194. url: '/pages/deviceLocalWeb/deviceLocal'+ '?macid=' + this.macid
  1195. });
  1196. }
  1197. }
  1198. },
  1199. bindMarkertasp: function (e) {
  1200. if (e.markerId == 1) {
  1201. this.bindLocal();
  1202. }
  1203. },
  1204. bindAlarm: function () {
  1205. uni.navigateTo({
  1206. url: '/pages/warnList/warnList?macid=' + this.macid,
  1207. success: function (res) {},
  1208. fail: function (res) {},
  1209. complete: function (res) {}
  1210. });
  1211. },
  1212. bindQuit: function () {
  1213. var that = this;
  1214. uni.showModal({
  1215. title: '',
  1216. content: that.$t('确定要注销吗?'),
  1217. showCancel: true,
  1218. cancelText: that.$t('取消'),
  1219. confirmText: that.$t('确定'),
  1220. success: function (res) {
  1221. if (res.confirm) {
  1222. uni.removeStorageSync('api_url')
  1223. that.bluetoothClose();
  1224. uni.clearStorage();
  1225. uni.reLaunch({
  1226. url: '/pages/login/login',
  1227. success: function (res) {},
  1228. fail: function (res) {},
  1229. complete: function (res) {}
  1230. });
  1231. }
  1232. }
  1233. });
  1234. },
  1235. bindCredit: function () {
  1236. uni.navigateTo({
  1237. url: '/pages/credit/credit?macid=' + this.macid,
  1238. success: function (res) {},
  1239. fail: function (res) {},
  1240. complete: function (res) {}
  1241. });
  1242. },
  1243. bindWillExpire: function () {
  1244. uni.navigateTo({
  1245. url: '/pages/willExpire/willExpireDevice',
  1246. success: function (res) {},
  1247. fail: function (res) {},
  1248. complete: function (res) {}
  1249. });
  1250. },
  1251. bindNotice: function () {
  1252. uni.navigateTo({
  1253. url: '/myPages/pages/notice/notice',
  1254. success: function (res) {},
  1255. fail: function (res) {},
  1256. complete: function (res) {}
  1257. });
  1258. },
  1259. bindSetNotice: function () {
  1260. // common.loading();
  1261. // uni.login({
  1262. // success: (res) => {
  1263. // http.postApi(
  1264. // config.API_XCX_SET_NOTICE,
  1265. // {
  1266. // code: res.code,
  1267. // status: !this.noticeStatus
  1268. // },
  1269. // (resp) => {
  1270. // uni.hideLoading();
  1271. // if (resp.data.code === 200) {
  1272. // this.setData({
  1273. // noticeStatus: !this.noticeStatus
  1274. // });
  1275. // } else {
  1276. // common.simpleToast(this,resp.data.msg);
  1277. // }
  1278. // }
  1279. // );
  1280. // }
  1281. // });
  1282. },
  1283. loadIsWillExpireDevice: function () {
  1284. const that = this;
  1285. const pData = {
  1286. size: 1,
  1287. page: 1
  1288. };
  1289. http.postApi(config.API_RENEW_LIST, pData, (resp) => {
  1290. if (resp.data.code === 200) {
  1291. let count = resp.data.data.count;
  1292. let cancelBtnVisiable = resp.data.data.cancelBtnVisiable;
  1293. if (count > 0) {
  1294. var dateBegin = new Date().getTime();
  1295. var getTime = storage.getPopTime();
  1296. var runTime = ((dateBegin - getTime) / 1000).toFixed(0);
  1297. if (runTime > resp.data.data.timer * 60 * 60) {
  1298. storage.setPopTime(dateBegin);
  1299. const me = this;
  1300. const msg = me.$t('您有') + count + me.$t('台设备需要续费');
  1301. uni.showModal({
  1302. title: me.$t('提示'),
  1303. content: msg,
  1304. showCancel: cancelBtnVisiable,
  1305. cancelText: me.$t('取消'),
  1306. confirmText: me.$t('前往处理'),
  1307. success: function (res) {
  1308. console.log(res);
  1309. if (res.confirm) {
  1310. uni.navigateTo({
  1311. url: '/pages/willExpire/willExpireDevice',
  1312. success: function (res) {},
  1313. fail: function (res) {},
  1314. complete: function (res) {}
  1315. });
  1316. }
  1317. },
  1318. fail: function (res) {},
  1319. complete: function (res) {}
  1320. });
  1321. }
  1322. }
  1323. }
  1324. });
  1325. },
  1326. bindMileage() {
  1327. if (this.macid == '') {
  1328. return;
  1329. }
  1330. uni.navigateTo({
  1331. url: '/myPages/pages/mileage/mileage?macid=' + this.macid,
  1332. success: function (res) {},
  1333. fail: function (res) {},
  1334. complete: function (res) {}
  1335. });
  1336. },
  1337. bindSmsAlarm() {
  1338. uni.navigateTo({
  1339. url: '/pages/smsAlarm/smsAlarm',
  1340. success: function (res) {},
  1341. fail: function (res) {},
  1342. complete: function (res) {}
  1343. });
  1344. },
  1345. loadGetCoin() {
  1346. const me = this;
  1347. http.postApi(config.API_GET_COIN, {}, function (resp) {
  1348. if (resp.data.code === 200) {
  1349. me.setData({
  1350. coin: resp.data.data.coin
  1351. });
  1352. }
  1353. });
  1354. }
  1355. }
  1356. };
  1357. </script>
  1358. <style>
  1359. @import './home.css';
  1360. </style>