deviceBatchList.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <template>
  2. <!-- 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">删除</view>
  8. </view>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. // 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. const devicelist = storage.getBatchSelectedDeviceList();
  26. if (!devicelist || devicelist.length === 0) {
  27. uni.navigateBack({
  28. delta: 1
  29. });
  30. }
  31. this.setData({
  32. devicelist: devicelist
  33. });
  34. },
  35. methods: {
  36. bindDel: function (e) {
  37. const index = e.currentTarget.dataset.index;
  38. console.log(index);
  39. let devicelist = [];
  40. this.devicelist.forEach((item, idx) => {
  41. console.log(item, idx);
  42. if (index != idx) {
  43. devicelist.push(item);
  44. }
  45. });
  46. storage.setBatchSelectedDeviceList(devicelist);
  47. this.setData({
  48. devicelist: devicelist
  49. });
  50. }
  51. }
  52. };
  53. </script>
  54. <style>
  55. @import './deviceBatchList.css';
  56. </style>