smsConfig.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. <template>
  2. <!-- pages/smsConfig/smsConfig.wxml -->
  3. <view class="container">
  4. <view>
  5. <view v-if="type == 0" class="device_number_view">配置设备编号:{{ macid }}</view>
  6. <view v-if="type == 1" class="device_number_view">配置所有设备</view>
  7. </view>
  8. <view>
  9. <view class="main_view">
  10. <view @tap="bindAlarmMain" :data-index="index" class="main_mark flex-row flex-row" v-for="(item, index) in alarmTypeList" :key="index">
  11. <view :class="typeIndex == index ? 'line_view' : 'line_view_no'"></view>
  12. <view :class="typeIndex == index ? 'select_main type_view' : 'type_view'">{{ item.name }}</view>
  13. </view>
  14. </view>
  15. <view class="sub_view">
  16. <view v-for="(item, index) in alarmList" :key="index">
  17. <view @tap="bindAlarmSub" :data-index="index" class="alarm_view flex-row flex-between">
  18. <view>{{ item.alarmName }}</view>
  19. <image v-if="item.isSelect == '1'" class="select_done" src="http://qiniu.bms16.com/gps/select_true.png"></image>
  20. <image v-if="item.isSelect != '1'" class="select_done" src="http://qiniu.bms16.com/gps/select_false.png"></image>
  21. </view>
  22. </view>
  23. </view>
  24. </view>
  25. <view class="bottom-save">
  26. <!-- <view class="top_view">
  27. <view class="flex-row">
  28. <rich-text nodes="{{seriousHtml}}"></rich-text>
  29. </view>
  30. <view style="margin-top: 10rpx;" class="flex-row">
  31. <rich-text nodes="{{warnHtml}}"></rich-text>
  32. </view>
  33. </view> -->
  34. <!-- <view class="remind_view">友情提醒:短信严重报警每1分钟会发送一次,警告报警每30分钟会发送一次</view> -->
  35. <view @tap="saveAlarmType" class="save-btn">保存</view>
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. // pages/smsConfig/smsConfig.js
  41. var appConfig = require('../../common/appConfig.js');
  42. const config = require('../../common/config.js');
  43. const http = require('../../common/http.js');
  44. const common = require('../../common/common.js');
  45. var storage = require('../../common/storage.js');
  46. export default {
  47. data() {
  48. return {
  49. seriousHtml: '',
  50. warnHtml: '',
  51. alarmTypeList: [],
  52. alarmList: [],
  53. alarmList1: [],
  54. alarmList2: [],
  55. typeIndex: 0,
  56. macid: '',
  57. type: 0
  58. };
  59. }
  60. /**
  61. * 生命周期函数--监听页面加载
  62. */,
  63. onLoad: function (options) {
  64. this.setData({
  65. macid: options.macid || ''
  66. });
  67. this.setData({
  68. type: options.type
  69. });
  70. this.loadAlarmType();
  71. },
  72. /**
  73. * 生命周期函数--监听页面初次渲染完成
  74. */
  75. onReady: function () {},
  76. /**
  77. * 生命周期函数--监听页面显示
  78. */
  79. onShow: function () {},
  80. /**
  81. * 生命周期函数--监听页面隐藏
  82. */
  83. onHide: function () {},
  84. /**
  85. * 生命周期函数--监听页面卸载
  86. */
  87. onUnload: function () {},
  88. /**
  89. * 页面相关事件处理函数--监听用户下拉动作
  90. */
  91. onPullDownRefresh: function () {},
  92. /**
  93. * 页面上拉触底事件的处理函数
  94. */
  95. onReachBottom: function () {},
  96. /**
  97. * 用户点击右上角分享
  98. */
  99. onShareAppMessage: function () {},
  100. methods: {
  101. loadAlarmType() {
  102. const pData = {
  103. macid: this.macid
  104. };
  105. const me = this;
  106. http.postApi(config.API_SMS_GET_DEVICE_SET, pData, function (resp) {
  107. if (resp.data.code === 200) {
  108. if (resp.data.data.length > 1) {
  109. me.setData({
  110. alarmTypeList: resp.data.data,
  111. alarmList: resp.data.data[0].list,
  112. alarmList1: resp.data.data[0].list,
  113. alarmList2: resp.data.data[1].list
  114. });
  115. me.currentSetAlarmType();
  116. }
  117. }
  118. });
  119. },
  120. currentSetAlarmType() {
  121. var importAlarmList = [];
  122. var warnAlarmList = [];
  123. for (var i = 0; this.alarmList1.length > i; i++) {
  124. if (this.alarmList1[i].isSelect === '1') {
  125. importAlarmList.push(this.alarmList1[i].alarmName);
  126. }
  127. }
  128. for (var i = 0; this.alarmList2.length > i; i++) {
  129. if (this.alarmList2[i].isSelect === '1') {
  130. warnAlarmList.push(this.alarmList2[i].alarmName);
  131. }
  132. }
  133. // this.setData({
  134. // seriousHtml:"<span style='font-size: 13px;'>严重报警:</span><span style='color: rgb(51, 51, 51,0.38);font-size: 13px;'>" + importAlarmList.toString() + "</span>"
  135. // })
  136. // this.setData({
  137. // warnHtml:"<span style='font-size: 13px;'>警告报警:</span><span style='color: rgb(51, 51, 51,0.38);font-size: 13px;'>" + warnAlarmList.toString() + "</span>"
  138. // })
  139. },
  140. saveAlarmType() {
  141. var alarmList = [];
  142. var params = {};
  143. for (var i = 0; this.alarmList1.length > i; i++) {
  144. params[this.alarmList1[i].type] = this.alarmList1[i].isSelect;
  145. }
  146. for (var i = 0; this.alarmList2.length > i; i++) {
  147. params[this.alarmList2[i].type] = this.alarmList2[i].isSelect;
  148. }
  149. params['macid'] = this.macid;
  150. const me = this;
  151. http.postApi(config.API_SMS_SAVE_SET, params, function (resp) {
  152. if (resp.data.code === 200) {
  153. common.simpleToast('保存成功');
  154. setTimeout(function () {
  155. uni.navigateBack({
  156. delta: 1
  157. });
  158. }, 1000);
  159. return;
  160. }
  161. });
  162. },
  163. bindAlarmMain: function (e) {
  164. const index = e.currentTarget.dataset.index;
  165. this.setData({
  166. typeIndex: index,
  167. alarmList: index === 0 ? this.alarmList1 : this.alarmList2
  168. });
  169. },
  170. bindAlarmSub: function (e) {
  171. const index = e.currentTarget.dataset.index;
  172. var alarmList1 = [];
  173. var alarmList2 = [];
  174. alarmList1 = this.alarmList1;
  175. alarmList2 = this.alarmList2;
  176. if (this.typeIndex === 0) {
  177. alarmList1[index].isSelect = alarmList1[index].isSelect === '1' ? '0' : '1';
  178. this.setData({
  179. alarmList1: alarmList1,
  180. alarmList: alarmList1
  181. });
  182. }
  183. if (this.typeIndex === 1) {
  184. alarmList2[index].isSelect = alarmList2[index].isSelect === '1' ? '0' : '1';
  185. this.setData({
  186. alarmList: alarmList2,
  187. alarmList2: alarmList2
  188. });
  189. }
  190. this.currentSetAlarmType();
  191. }
  192. }
  193. };
  194. </script>
  195. <style>
  196. @import './smsConfig.css';
  197. </style>