deviceInfo.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509
  1. <template>
  2. <view class="container">
  3. <view class="form-group">
  4. <view class="form-item">
  5. <view class="form-label flex-row">
  6. <image class="left-icon" src="/static/resource/images/mingcheng.png"></image>
  7. <text>{{$t('设备名称')}}</text>
  8. </view>
  9. <view class="form-value flex-row flex-end">
  10. <input placeholder="" @blur="inputBatteryName" :value="batteryInfo.name" />
  11. </view>
  12. </view>
  13. <view class="form-item">
  14. <view class="form-label flex-row">
  15. <image class="left-icon" src="/static/resource/images/leixing.png"></image>
  16. <text>{{$t('设备类型')}}</text>
  17. </view>
  18. <view class="form-value">{{ batteryInfo.device_type }}</view>
  19. </view>
  20. <view class="form-item">
  21. <view class="form-label flex-row">
  22. <image class="left-icon" src="/static/resource/images/IMEI.png"></image>
  23. <text>IMEI</text>
  24. </view>
  25. <view class="form-value">{{ batteryInfo.mac_id }}</view>
  26. </view>
  27. <view class="form-item">
  28. <view class="form-label flex-row">
  29. <image class="left-icon" src="/static/resource/images/zhuangtai.png"></image>
  30. <text>{{$t('状态')}}</text>
  31. </view>
  32. <view class="form-value">
  33. {{
  34. batteryInfo.expire == 1
  35. ? $t('到期')
  36. : batteryInfo.longitude == '0' || batteryInfo.latitude == '0' || batteryInfo.longitude == '' || device.batteryInfo == ''
  37. ? $t('未启用')
  38. : batteryInfo.online == 0
  39. ? $t('离线')
  40. : batteryInfo.speed == 0
  41. ? $t('静止')
  42. : $t('行驶')
  43. }}
  44. </view>
  45. </view>
  46. <view class="form-item">
  47. <view class="form-label flex-row">
  48. <image class="left-icon" src="/static/resource/images/licheng.png"></image>
  49. <text>{{$t('当日里程')}}</text>
  50. </view>
  51. <view class="form-value">{{ batteryInfo.day_mil ? batteryInfo.day_mil + 'km' : '0km' }}</view>
  52. </view>
  53. <view class="form-item">
  54. <view class="form-label flex-row">
  55. <image class="left-icon" src="/static/resource/images/dingweishijian.png"></image>
  56. <text>{{$t('定位时间')}}</text>
  57. </view>
  58. <view class="form-value">{{ batteryInfo.gps_time == 0 ? '' : tools.formatTime(batteryInfo.gps_time) }}</view>
  59. </view>
  60. <view class="form-item">
  61. <view class="form-label flex-row">
  62. <image class="left-icon" src="/static/resource/images/tongxishijian.png"></image>
  63. <text>{{$t('通信时间')}}</text>
  64. </view>
  65. <view class="form-value">{{ batteryInfo.heart_time == 0 ? '' : tools.formatTime(batteryInfo.heart_time) }}</view>
  66. </view>
  67. <view class="form-item">
  68. <view class="form-label flex-row">
  69. <image class="left-icon" src="/static/resource/images/sudu.png"></image>
  70. <text>{{$t('速度')}}</text>
  71. </view>
  72. <view class="form-value">{{ batteryInfo.speed ? batteryInfo.speed + 'km/h' : '0km/h' }}</view>
  73. </view>
  74. <view class="form-item">
  75. <view class="form-label flex-row">
  76. <image class="left-icon" src="/static/resource/images/daoqishijian.png"></image>
  77. <text>{{$t('到期时间')}}</text>
  78. </view>
  79. <view class="form-value">{{ tools.formatTime(batteryInfo.expire_time) }}</view>
  80. </view>
  81. <view class="form-item">
  82. <view class="form-label flex-row">
  83. <image class="left-icon" src="/static/resource/images/chepaihao.png"></image>
  84. <text>{{$t('车牌号')}}</text>
  85. </view>
  86. <view class="form-value flex-row flex-end">
  87. <input placeholder="" @blur="inputBatteryCarNumber" :value="batteryInfo.car_number" />
  88. </view>
  89. </view>
  90. <view class="form-item">
  91. <view class="form-label flex-row">
  92. <image class="left-icon" src="/static/resource/images/chezhumc.png"></image>
  93. <text>{{$t('车主名称')}}</text>
  94. </view>
  95. <view class="form-value flex-row flex-end">
  96. <input placeholder="" @blur="inputBatteryMasterName" :value="batteryInfo.master_name" />
  97. </view>
  98. </view>
  99. <view class="form-item">
  100. <view class="form-label flex-row">
  101. <image class="left-icon" src="/static/resource/images/lxdianhua.png"></image>
  102. <text>{{$t('联系电话')}}</text>
  103. </view>
  104. <view class="form-value flex-row flex-end">
  105. <input placeholder="" @blur="inputBatteryPhone" :value="batteryInfo.phone" />
  106. </view>
  107. </view>
  108. <view class="form-item">
  109. <view class="form-label flex-row">
  110. <image class="left-icon" src="/static/resource/images/yanse.png"></image>
  111. <text>{{$t('车辆颜色')}}</text>
  112. </view>
  113. <view class="form-value flex-row flex-end">
  114. <input placeholder="" @blur="inputBatteryCarColor" :value="batteryInfo.car_color" />
  115. </view>
  116. </view>
  117. <view class="form-item">
  118. <view class="form-label flex-row">
  119. <image class="left-icon" src="/static/resource/images/beizhu.png"></image>
  120. <text>{{$t('备注')}}</text>
  121. </view>
  122. <view class="form-value flex-row flex-end">
  123. <textarea value="" :placeholder="$t('备注信息')" auto-height class="remark-info" @blur="inputRemark" :value="batteryInfo.remark"></textarea>
  124. </view>
  125. </view>
  126. <view class="form-item">
  127. <view class="form-label">{{$t('图标')}}</view>
  128. <view class="form-value">
  129. <radio-group class="radio-group" @change="bindSelectIcon">
  130. <view class="flex-row flex-around">
  131. <view v-for="(item, index) in iconList" :key="index">
  132. <radio class="local-icon" :value="index" :checked="index == batteryInfo.icon" />
  133. <image class="local-icon" mode="widthFix" :src="item.normal"></image>
  134. </view>
  135. </view>
  136. </radio-group>
  137. </view>
  138. </view>
  139. <view style="margin: 50rpx 0">
  140. <button class="save-btn" @tap="bindSave">{{$t('保存')}}</button>
  141. </view>
  142. </view>
  143. </view>
  144. </template>
  145. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  146. <script>
  147. var config = require('../../../common/config.js');
  148. var http = require('../../../common/http.js');
  149. var common = require('../../../common/common.js');
  150. var storage = require('../../../common/storage.js');
  151. export default {
  152. data() {
  153. return {
  154. userBaseInfo: null,
  155. battery_sn: '',
  156. batteryInfo: null,
  157. batteryTypeList: [],
  158. selectedBatteryTypeIndex: 0,
  159. thirdDeviceTypeList: [],
  160. selectedThirdDeviceTypeIndex: -1,
  161. hireDurationUnitList: ['', this.$t('天'), this.$t('月'), this.$t('年')],
  162. selectedHireDurationUnitIndex: 2,
  163. iconList: [],
  164. selectedIconIndex: 0,
  165. pledge_money: 0,
  166. hire_price: 0,
  167. remark: '',
  168. device: {
  169. batteryInfo: ''
  170. }
  171. };
  172. }
  173. /**
  174. * 生命周期函数--监听页面加载
  175. */,
  176. onLoad: function (options) {
  177. uni.setNavigationBarTitle({
  178. title: this.$t('设备详情')
  179. });
  180. const userBaseInfo = storage.getUserInfo();
  181. const _deviceInfo = options.deviceInfo;
  182. const deviceInfo = JSON.parse(decodeURIComponent(_deviceInfo));
  183. this.setData({
  184. userBaseInfo: userBaseInfo,
  185. batteryInfo: deviceInfo
  186. });
  187. console.log(deviceInfo);
  188. storage.setSearchClientUserInfo(null);
  189. const battery_sn = deviceInfo.mac_id;
  190. this.battery_sn = battery_sn;
  191. //this.loadBatteryTypeList()
  192. this.loadIconList();
  193. },
  194. /**
  195. * 生命周期函数--监听页面显示
  196. */
  197. onShow: function () {
  198. //this.loadBatteryThirdDeviceTypeList()
  199. //this.loadBatteryInfo()
  200. },
  201. methods: {
  202. loadBatteryThirdDeviceTypeList: function () {
  203. const that = this;
  204. http.postApi(config.API_BATTERY_THIRD_DEVICE_TYPE_LIST, {}, function (resp) {
  205. if (resp.data.code === 200) {
  206. that.setData({
  207. thirdDeviceTypeList: resp.data.data.list
  208. });
  209. if (that.batteryInfo && that.selectedThirdDeviceTypeIndex == -1) {
  210. that.setSelectThirdDeviceType();
  211. }
  212. }
  213. });
  214. },
  215. loadBatteryInfo: function () {
  216. const pData = {
  217. battery_sn: this.battery_sn
  218. };
  219. const that = this;
  220. http.postApi(config.API_BATTERY_SEARCH, pData, function (resp) {
  221. if (resp.data.code === 200) {
  222. that.setData({
  223. batteryInfo: resp.data.data.batteryList[0]
  224. });
  225. that.setSelecteBatteryType();
  226. that.setSelectThirdDeviceType();
  227. that.setSelectHireDurationUnit();
  228. const clientUserInfo = storage.getSearchClientUserInfo();
  229. if (clientUserInfo) {
  230. const batteryInfo = that.batteryInfo;
  231. batteryInfo.user_id = clientUserInfo.user_id;
  232. batteryInfo.user_name = clientUserInfo.user_name;
  233. batteryInfo.phone = clientUserInfo.phone;
  234. that.setData({
  235. batteryInfo: batteryInfo
  236. });
  237. storage.setSearchClientUserInfo(null);
  238. }
  239. } else {
  240. common.simpleToast(that,resp.data.msg);
  241. }
  242. });
  243. },
  244. loadBatteryTypeList: function () {
  245. const that = this;
  246. http.postApi(config.API_BATTERY_BTYPE_LIST, {}, function (resp) {
  247. if (resp.data.code === 200) {
  248. that.setData({
  249. batteryTypeList: resp.data.data.typeList
  250. });
  251. } else {
  252. common.simpleToast(that,resp.data.msg);
  253. }
  254. });
  255. },
  256. loadIconList: function () {
  257. this.iconList = storage.getIconList();
  258. if (!this.iconList) {
  259. http.postApi(config.API_BATTERY_ICON_LIST, {}, (resp) => {
  260. if (resp.data.code === 200) {
  261. storage.setIconList(resp.data.data.list);
  262. this.setData({
  263. iconList: resp.data.data.list
  264. });
  265. } else {
  266. common.simpleToast(this,resp.data.msg);
  267. }
  268. });
  269. } else {
  270. this.setData({
  271. iconList: this.iconList
  272. });
  273. }
  274. },
  275. setSelecteBatteryType: function () {
  276. const batteryInfo = this.batteryInfo;
  277. let index = 0;
  278. this.batteryTypeList.some((item, idx) => {
  279. if (item.battery_type_id == batteryInfo.battery_type_id) {
  280. index = idx;
  281. return true;
  282. }
  283. });
  284. this.setData({
  285. selectedBatteryTypeIndex: index
  286. });
  287. },
  288. bindSelectBatteryType: function (e) {
  289. this.setData({
  290. selectedBatteryTypeIndex: e.detail.value
  291. });
  292. },
  293. setSelectThirdDeviceType: function () {
  294. const batteryInfo = this.batteryInfo;
  295. let index = 0;
  296. const that = this;
  297. this.thirdDeviceTypeList.some((item, idx) => {
  298. if (item == batteryInfo.third_device_type) {
  299. index = idx;
  300. that.setData({
  301. selectedThirdDeviceTypeIndex: index
  302. });
  303. return true;
  304. }
  305. });
  306. },
  307. bindSelectThirdDeviceType: function (e) {
  308. this.setData({
  309. selectedThirdDeviceTypeIndex: e.detail.value
  310. });
  311. },
  312. setSelectHireDurationUnit: function () {
  313. const batteryInfo = this.batteryInfo;
  314. this.setData({
  315. selectedHireDurationUnitIndex: batteryInfo.hire_duration_unit
  316. });
  317. },
  318. bindSelectHireDurationUnit: function (e) {
  319. this.setData({
  320. selectedHireDurationUnitIndex: e.detail.value
  321. });
  322. },
  323. bindSelectIcon: function (e) {
  324. const icon = e.detail.value;
  325. this.batteryInfo.icon = icon;
  326. },
  327. inputBatteryName: function (e) {
  328. const name = e.detail.value;
  329. this.batteryInfo.name = name;
  330. },
  331. inputBatteryCarNumber: function (e) {
  332. const car_number = e.detail.value;
  333. this.batteryInfo.car_number = car_number;
  334. },
  335. inputBatteryMasterName: function (e) {
  336. const master_name = e.detail.value;
  337. this.batteryInfo.master_name = master_name;
  338. },
  339. inputBatteryPhone: function (e) {
  340. const phone = e.detail.value;
  341. this.batteryInfo.phone = phone;
  342. },
  343. inputBatteryCarColor: function (e) {
  344. const car_color = e.detail.value;
  345. this.batteryInfo.car_color = car_color;
  346. },
  347. inputRemark: function (e) {
  348. const remark = e.detail.value;
  349. this.batteryInfo.remark = remark;
  350. },
  351. bindSearchClientUserInfo: function () {
  352. uni.navigateTo({
  353. url: '/myPages/pages/searchUser/searchUser'
  354. });
  355. },
  356. bindProductTime: function (e) {
  357. let batteryInfo = this.batteryInfo;
  358. batteryInfo.product_time = e.detail.value;
  359. this.setData({
  360. batteryInfo: batteryInfo
  361. });
  362. },
  363. bindHireTime: function (e) {
  364. let batteryInfo = this.batteryInfo;
  365. batteryInfo.hire_time = e.detail.value;
  366. this.setData({
  367. batteryInfo: batteryInfo
  368. });
  369. },
  370. bindHireExpireTime: function (e) {
  371. let batteryInfo = this.batteryInfo;
  372. batteryInfo.hire_expire_time = e.detail.value;
  373. this.setData({
  374. batteryInfo: batteryInfo
  375. });
  376. },
  377. bindSave: function () {
  378. const that = this
  379. let batteryInfo = this.batteryInfo;
  380. batteryInfo.macid = batteryInfo.mac_id;
  381. http.postApi(config.API_BATTERY_SET_INFO, batteryInfo, function (resp) {
  382. if (resp.data.code === 200) {
  383. storage.setRefreshDeviceoPage(true);
  384. common.simpleToast(that,that.$t('保存成功'));
  385. uni.navigateBack({
  386. delta: 1
  387. });
  388. } else {
  389. common.simpleToast(that,resp.data.msg);
  390. }
  391. });
  392. },
  393. bindReleaseUser: function () {
  394. const pData = {
  395. battery_sn: this.batteryInfo.battery_sn
  396. };
  397. const that = this;
  398. http.postApi(config.API_BATTERY_RELEASE_USER, pData, function (resp) {
  399. if (resp.data.code === 200) {
  400. storage.setRefreshDeviceoPage(true);
  401. common.simpleToast(that,that.$t('解绑成功'));
  402. that.loadBatteryInfo();
  403. } else if (resp.data.code === 10037) {
  404. uni.navigateTo({
  405. url: '/myPages/pages/deviceUserReturn/deviceUserReturn?battery_sn=' + that.batteryInfo.battery_sn
  406. });
  407. } else {
  408. common.simpleToast(that,resp.data.msg);
  409. }
  410. });
  411. },
  412. bindTurnOn: function () {
  413. const that = this;
  414. const msg = that.$t('你确定要通电吗?');
  415. uni.showModal({
  416. title: that.$t('提示'),
  417. content: msg,
  418. showCancel: true,
  419. cancelText: that.$t('取消'),
  420. confirmText: that.$t('确定'),
  421. success: function (res) {
  422. console.log(res);
  423. if (res.confirm) {
  424. const pData = {
  425. macid: that.batteryInfo.mac_id,
  426. cmd: 'OPENRELAY'
  427. };
  428. http.postApi(config.API_BATTERY_SEND_COMMAND, pData, function (resp) {
  429. if (resp.data.code === 200) {
  430. storage.setRefreshDeviceoPage(true);
  431. common.simpleToast(that,that.$t('操作成功'));
  432. } else {
  433. common.simpleToast(that,resp.data.msg);
  434. }
  435. });
  436. }
  437. },
  438. fail: function (res) {},
  439. complete: function (res) {}
  440. });
  441. },
  442. bindTurnOff: function () {
  443. const that = this;
  444. const msg = that.$t('你确定要断电吗?');
  445. uni.showModal({
  446. title: that.$t('提示'),
  447. content: msg,
  448. showCancel: true,
  449. cancelText: that.$t('取消'),
  450. confirmText: that.$t('确定'),
  451. success: function (res) {
  452. console.log(res);
  453. if (res.confirm) {
  454. const pData = {
  455. macid: that.batteryInfo.mac_id,
  456. cmd: 'CLOSERELAY'
  457. };
  458. http.postApi(config.API_BATTERY_SEND_COMMAND, pData, function (resp) {
  459. if (resp.data.code === 200) {
  460. storage.setRefreshDeviceoPage(true);
  461. common.simpleToast(that,that.$t('操作成功'));
  462. } else {
  463. common.simpleToast(that,resp.data.msg);
  464. }
  465. });
  466. }
  467. },
  468. fail: function (res) {},
  469. complete: function (res) {}
  470. });
  471. },
  472. bindReplaceBattery: function () {
  473. uni.navigateTo({
  474. url: '/myPages/pages/deviceReplace/deviceReplace?battery_sn=' + this.batteryInfo.battery_sn
  475. });
  476. }
  477. }
  478. };
  479. </script>
  480. <style>
  481. @import './deviceInfo.css';
  482. </style>