deviceBatchList.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <template>
  2. <!-- myPages/pages/deviceBatchList/deviceBatchList.wxml -->
  3. <view class="container">
  4. <view class="list">
  5. <view class="item" v-for="(item, index) in devicelist" :key="index">
  6. <view class="battery">{{ item.battery_sn }}</view>
  7. <view class="del-op" @tap="bindDel" :data-index="index">{{ $t('删除') }}</view>
  8. </view>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. // myPages/pages/deviceBatchList/deviceBatchList.js
  14. var storage = require('../../../common/storage.js');
  15. export default {
  16. data() {
  17. return {
  18. devicelist: []
  19. };
  20. }
  21. /**
  22. * 生命周期函数--监听页面加载
  23. */,
  24. onLoad: function (options) {
  25. uni.setNavigationBarTitle({
  26. title: this.$t('设备列表')
  27. });
  28. const devicelist = storage.getBatchSelectedDeviceList();
  29. if (!devicelist || devicelist.length === 0) {
  30. uni.navigateBack({
  31. delta: 1
  32. });
  33. }
  34. this.setData({
  35. devicelist: devicelist
  36. });
  37. },
  38. methods: {
  39. bindDel: function (e) {
  40. const index = e.currentTarget.dataset.index;
  41. console.log(index);
  42. let devicelist = [];
  43. this.devicelist.forEach((item, idx) => {
  44. console.log(item, idx);
  45. if (index != idx) {
  46. devicelist.push(item);
  47. }
  48. });
  49. storage.setBatchSelectedDeviceList(devicelist);
  50. this.setData({
  51. devicelist: devicelist
  52. });
  53. }
  54. }
  55. };
  56. </script>
  57. <style>
  58. @import './deviceBatchList.css';
  59. </style>