deviceInfo.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505
  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>设备名称</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>设备类型</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>状态</text>
  31. </view>
  32. <view class="form-value">
  33. {{
  34. batteryInfo.expire == 1
  35. ? '到期'
  36. : batteryInfo.longitude == '0' || batteryInfo.latitude == '0' || batteryInfo.longitude == '' || device.batteryInfo == ''
  37. ? '未启用'
  38. : batteryInfo.online == 0
  39. ? '离线'
  40. : batteryInfo.speed == 0
  41. ? '静止'
  42. : '行驶'
  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>当日里程</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>定位时间</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>通信时间</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>速度</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>到期时间</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>车牌号</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>车主名称</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>联系电话</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>车辆颜色</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>备注</text>
  121. </view>
  122. <view class="form-value flex-row flex-end">
  123. <textarea value="" placeholder="备注信息" 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">图标</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">保存</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: ['', '天', '月', '年'],
  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. const userBaseInfo = storage.getUserInfo();
  178. const _deviceInfo = options.deviceInfo;
  179. const deviceInfo = JSON.parse(decodeURIComponent(_deviceInfo));
  180. this.setData({
  181. userBaseInfo: userBaseInfo,
  182. batteryInfo: deviceInfo
  183. });
  184. console.log(deviceInfo);
  185. storage.setSearchClientUserInfo(null);
  186. const battery_sn = deviceInfo.mac_id;
  187. this.battery_sn = battery_sn;
  188. //this.loadBatteryTypeList()
  189. this.loadIconList();
  190. },
  191. /**
  192. * 生命周期函数--监听页面显示
  193. */
  194. onShow: function () {
  195. //this.loadBatteryThirdDeviceTypeList()
  196. //this.loadBatteryInfo()
  197. },
  198. methods: {
  199. loadBatteryThirdDeviceTypeList: function () {
  200. const that = this;
  201. http.postApi(config.API_BATTERY_THIRD_DEVICE_TYPE_LIST, {}, function (resp) {
  202. if (resp.data.code === 200) {
  203. that.setData({
  204. thirdDeviceTypeList: resp.data.data.list
  205. });
  206. if (that.batteryInfo && that.selectedThirdDeviceTypeIndex == -1) {
  207. that.setSelectThirdDeviceType();
  208. }
  209. }
  210. });
  211. },
  212. loadBatteryInfo: function () {
  213. const pData = {
  214. battery_sn: this.battery_sn
  215. };
  216. const that = this;
  217. http.postApi(config.API_BATTERY_SEARCH, pData, function (resp) {
  218. if (resp.data.code === 200) {
  219. that.setData({
  220. batteryInfo: resp.data.data.batteryList[0]
  221. });
  222. that.setSelecteBatteryType();
  223. that.setSelectThirdDeviceType();
  224. that.setSelectHireDurationUnit();
  225. const clientUserInfo = storage.getSearchClientUserInfo();
  226. if (clientUserInfo) {
  227. const batteryInfo = that.batteryInfo;
  228. batteryInfo.user_id = clientUserInfo.user_id;
  229. batteryInfo.user_name = clientUserInfo.user_name;
  230. batteryInfo.phone = clientUserInfo.phone;
  231. that.setData({
  232. batteryInfo: batteryInfo
  233. });
  234. storage.setSearchClientUserInfo(null);
  235. }
  236. } else {
  237. common.simpleToast(resp.data.msg);
  238. }
  239. });
  240. },
  241. loadBatteryTypeList: function () {
  242. const that = this;
  243. http.postApi(config.API_BATTERY_BTYPE_LIST, {}, function (resp) {
  244. if (resp.data.code === 200) {
  245. that.setData({
  246. batteryTypeList: resp.data.data.typeList
  247. });
  248. } else {
  249. common.simpleToast(resp.data.msg);
  250. }
  251. });
  252. },
  253. loadIconList: function () {
  254. this.iconList = storage.getIconList();
  255. if (!this.iconList) {
  256. http.postApi(config.API_BATTERY_ICON_LIST, {}, (resp) => {
  257. if (resp.data.code === 200) {
  258. storage.setIconList(resp.data.data.list);
  259. this.setData({
  260. iconList: resp.data.data.list
  261. });
  262. } else {
  263. common.simpleToast(resp.data.msg);
  264. }
  265. });
  266. } else {
  267. this.setData({
  268. iconList: this.iconList
  269. });
  270. }
  271. },
  272. setSelecteBatteryType: function () {
  273. const batteryInfo = this.batteryInfo;
  274. let index = 0;
  275. this.batteryTypeList.some((item, idx) => {
  276. if (item.battery_type_id == batteryInfo.battery_type_id) {
  277. index = idx;
  278. return true;
  279. }
  280. });
  281. this.setData({
  282. selectedBatteryTypeIndex: index
  283. });
  284. },
  285. bindSelectBatteryType: function (e) {
  286. this.setData({
  287. selectedBatteryTypeIndex: e.detail.value
  288. });
  289. },
  290. setSelectThirdDeviceType: function () {
  291. const batteryInfo = this.batteryInfo;
  292. let index = 0;
  293. const that = this;
  294. this.thirdDeviceTypeList.some((item, idx) => {
  295. if (item == batteryInfo.third_device_type) {
  296. index = idx;
  297. that.setData({
  298. selectedThirdDeviceTypeIndex: index
  299. });
  300. return true;
  301. }
  302. });
  303. },
  304. bindSelectThirdDeviceType: function (e) {
  305. this.setData({
  306. selectedThirdDeviceTypeIndex: e.detail.value
  307. });
  308. },
  309. setSelectHireDurationUnit: function () {
  310. const batteryInfo = this.batteryInfo;
  311. this.setData({
  312. selectedHireDurationUnitIndex: batteryInfo.hire_duration_unit
  313. });
  314. },
  315. bindSelectHireDurationUnit: function (e) {
  316. this.setData({
  317. selectedHireDurationUnitIndex: e.detail.value
  318. });
  319. },
  320. bindSelectIcon: function (e) {
  321. const icon = e.detail.value;
  322. this.batteryInfo.icon = icon;
  323. },
  324. inputBatteryName: function (e) {
  325. const name = e.detail.value;
  326. this.batteryInfo.name = name;
  327. },
  328. inputBatteryCarNumber: function (e) {
  329. const car_number = e.detail.value;
  330. this.batteryInfo.car_number = car_number;
  331. },
  332. inputBatteryMasterName: function (e) {
  333. const master_name = e.detail.value;
  334. this.batteryInfo.master_name = master_name;
  335. },
  336. inputBatteryPhone: function (e) {
  337. const phone = e.detail.value;
  338. this.batteryInfo.phone = phone;
  339. },
  340. inputBatteryCarColor: function (e) {
  341. const car_color = e.detail.value;
  342. this.batteryInfo.car_color = car_color;
  343. },
  344. inputRemark: function (e) {
  345. const remark = e.detail.value;
  346. this.batteryInfo.remark = remark;
  347. },
  348. bindSearchClientUserInfo: function () {
  349. uni.navigateTo({
  350. url: '/pages/searchUser/searchUser'
  351. });
  352. },
  353. bindProductTime: function (e) {
  354. let batteryInfo = this.batteryInfo;
  355. batteryInfo.product_time = e.detail.value;
  356. this.setData({
  357. batteryInfo: batteryInfo
  358. });
  359. },
  360. bindHireTime: function (e) {
  361. let batteryInfo = this.batteryInfo;
  362. batteryInfo.hire_time = e.detail.value;
  363. this.setData({
  364. batteryInfo: batteryInfo
  365. });
  366. },
  367. bindHireExpireTime: function (e) {
  368. let batteryInfo = this.batteryInfo;
  369. batteryInfo.hire_expire_time = e.detail.value;
  370. this.setData({
  371. batteryInfo: batteryInfo
  372. });
  373. },
  374. bindSave: function () {
  375. let batteryInfo = this.batteryInfo;
  376. batteryInfo.macid = batteryInfo.mac_id;
  377. http.postApi(config.API_BATTERY_SET_INFO, batteryInfo, function (resp) {
  378. if (resp.data.code === 200) {
  379. storage.setRefreshDeviceoPage(true);
  380. common.simpleToast('保存成功');
  381. uni.navigateBack({
  382. delta: 1
  383. });
  384. } else {
  385. common.simpleToast(resp.data.msg);
  386. }
  387. });
  388. },
  389. bindReleaseUser: function () {
  390. const pData = {
  391. battery_sn: this.batteryInfo.battery_sn
  392. };
  393. const that = this;
  394. http.postApi(config.API_BATTERY_RELEASE_USER, pData, function (resp) {
  395. if (resp.data.code === 200) {
  396. storage.setRefreshDeviceoPage(true);
  397. common.simpleToast('解绑成功');
  398. that.loadBatteryInfo();
  399. } else if (resp.data.code === 10037) {
  400. uni.navigateTo({
  401. url: '/pages/deviceUserReturn/deviceUserReturn?battery_sn=' + that.batteryInfo.battery_sn
  402. });
  403. } else {
  404. common.simpleToast(resp.data.msg);
  405. }
  406. });
  407. },
  408. bindTurnOn: function () {
  409. const that = this;
  410. const msg = '你确定要通电吗?';
  411. uni.showModal({
  412. title: '提示',
  413. content: msg,
  414. showCancel: true,
  415. cancelText: '取消',
  416. confirmText: '确定',
  417. success: function (res) {
  418. console.log(res);
  419. if (res.confirm) {
  420. const pData = {
  421. macid: that.batteryInfo.mac_id,
  422. cmd: 'OPENRELAY'
  423. };
  424. http.postApi(config.API_BATTERY_SEND_COMMAND, pData, function (resp) {
  425. if (resp.data.code === 200) {
  426. storage.setRefreshDeviceoPage(true);
  427. common.simpleToast('操作成功');
  428. } else {
  429. common.simpleToast(resp.data.msg);
  430. }
  431. });
  432. }
  433. },
  434. fail: function (res) {},
  435. complete: function (res) {}
  436. });
  437. },
  438. bindTurnOff: function () {
  439. const that = this;
  440. const msg = '你确定要断电吗?';
  441. uni.showModal({
  442. title: '提示',
  443. content: msg,
  444. showCancel: true,
  445. cancelText: '取消',
  446. confirmText: '确定',
  447. success: function (res) {
  448. console.log(res);
  449. if (res.confirm) {
  450. const pData = {
  451. macid: that.batteryInfo.mac_id,
  452. cmd: 'CLOSERELAY'
  453. };
  454. http.postApi(config.API_BATTERY_SEND_COMMAND, pData, function (resp) {
  455. if (resp.data.code === 200) {
  456. storage.setRefreshDeviceoPage(true);
  457. common.simpleToast('操作成功');
  458. } else {
  459. common.simpleToast(resp.data.msg);
  460. }
  461. });
  462. }
  463. },
  464. fail: function (res) {},
  465. complete: function (res) {}
  466. });
  467. },
  468. bindReplaceBattery: function () {
  469. uni.navigateTo({
  470. url: '/pages/deviceReplace/deviceReplace?battery_sn=' + this.batteryInfo.battery_sn
  471. });
  472. }
  473. }
  474. };
  475. </script>
  476. <style>
  477. @import './deviceInfo.css';
  478. </style>