notice.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <template>
  2. <!-- pages/notice/notice.wxml -->
  3. <view class="container">
  4. <view class="item-container">
  5. <button class="alarm-item flex-row flex-between" @tap="bindAlarmChange" :data-index="index" v-for="(item, index) in alarm_list" :key="index">
  6. <view class="flex-row">
  7. <view class="item-text">{{ item }}</view>
  8. </view>
  9. <image class="item-icon" :src="(alarm_push & (1 << index)) != 0 ? '/static/resource/images/kaiqi.png' : '/static/resource/images/guanbi.png'"></image>
  10. </button>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. // pages/notice/notice.js
  16. var config = require('../../common/config.js');
  17. var http = require('../../common/http.js');
  18. var common = require('../../common/common.js');
  19. var storage = require('../../common/storage.js');
  20. export default {
  21. data() {
  22. return {
  23. alarm_list: ['出围栏报警', '入围栏报警', '断电报警', '低电报警', '震动报警', '位移报警', '点火报警', '侧翻报警', '拆卸报警'],
  24. alarm_push: 0
  25. };
  26. }
  27. /**
  28. * 生命周期函数--监听页面加载
  29. */,
  30. onLoad: function (options) {},
  31. /**
  32. * 生命周期函数--监听页面初次渲染完成
  33. */
  34. onReady: function () {},
  35. /**
  36. * 生命周期函数--监听页面显示
  37. */
  38. onShow: function () {
  39. this.loadNotice();
  40. },
  41. /**
  42. * 生命周期函数--监听页面隐藏
  43. */
  44. onHide: function () {},
  45. /**
  46. * 生命周期函数--监听页面卸载
  47. */
  48. onUnload: function () {},
  49. /**
  50. * 页面相关事件处理函数--监听用户下拉动作
  51. */
  52. onPullDownRefresh: function () {},
  53. /**
  54. * 页面上拉触底事件的处理函数
  55. */
  56. onReachBottom: function () {},
  57. /**
  58. * 用户点击右上角分享
  59. */
  60. onShareAppMessage: function () {},
  61. methods: {
  62. loadNotice: function () {
  63. // uni.login({
  64. // success: (res) => {
  65. // http.postApi(
  66. // config.API_XCX_NOTICE,
  67. // {
  68. // code: res.code
  69. // },
  70. // (resp) => {
  71. // if (resp.data.code === 200) {
  72. // this.setData({
  73. // alarm_push: resp.data.data.alarm_push
  74. // });
  75. // } else {
  76. // common.simpleToast(resp.data.msg);
  77. // setTimeout(function () {
  78. // uni.navigateBack({
  79. // delta: 1
  80. // });
  81. // }, 1500);
  82. // }
  83. // }
  84. // );
  85. // }
  86. // });
  87. },
  88. bindAlarmChange(e) {
  89. const index = e.currentTarget.dataset.index;
  90. common.loading();
  91. http.postApi(
  92. config.API_XCX_SET_NOTICE,
  93. {
  94. alarm_push: this.alarm_push ^ (1 << index)
  95. },
  96. (resp) => {
  97. uni.hideLoading();
  98. if (resp.data.code === 200) {
  99. this.setData({
  100. alarm_push: this.alarm_push ^ (1 << index)
  101. });
  102. } else {
  103. common.simpleToast(resp.data.msg);
  104. }
  105. }
  106. );
  107. }
  108. }
  109. };
  110. </script>
  111. <style>
  112. @import './notice.css';
  113. </style>