smsConfig.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. <template>
  2. <!-- pages/smsConfig/smsConfig.wxml -->
  3. <view class="container">
  4. <view>
  5. <view v-if="type == 0" class="device_number_view">{{ $t('配置设备编号') +':' + macid }}</view>
  6. <view v-if="type == 1" class="device_number_view">{{$t('配置所有设备')}}</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">{{$t('保存')}}</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. uni.setNavigationBarTitle({
  65. title: this.$t('配置短信报警')
  66. });
  67. this.setData({
  68. macid: options.macid || ''
  69. });
  70. this.setData({
  71. type: options.type
  72. });
  73. this.loadAlarmType();
  74. },
  75. /**
  76. * 生命周期函数--监听页面初次渲染完成
  77. */
  78. onReady: function () {},
  79. /**
  80. * 生命周期函数--监听页面显示
  81. */
  82. onShow: function () {
  83. uni.setNavigationBarTitle({
  84. title: this.$t('配置短信报警')
  85. });
  86. },
  87. /**
  88. * 生命周期函数--监听页面隐藏
  89. */
  90. onHide: function () {},
  91. /**
  92. * 生命周期函数--监听页面卸载
  93. */
  94. onUnload: function () {},
  95. /**
  96. * 页面相关事件处理函数--监听用户下拉动作
  97. */
  98. onPullDownRefresh: function () {},
  99. /**
  100. * 页面上拉触底事件的处理函数
  101. */
  102. onReachBottom: function () {},
  103. /**
  104. * 用户点击右上角分享
  105. */
  106. onShareAppMessage: function () {},
  107. methods: {
  108. loadAlarmType() {
  109. const pData = {
  110. macid: this.macid
  111. };
  112. const me = this;
  113. http.postApi(config.API_SMS_GET_DEVICE_SET, pData, function (resp) {
  114. if (resp.data.code === 200) {
  115. if (resp.data.data.length > 1) {
  116. me.setData({
  117. alarmTypeList: resp.data.data,
  118. alarmList: resp.data.data[0].list,
  119. alarmList1: resp.data.data[0].list,
  120. alarmList2: resp.data.data[1].list
  121. });
  122. me.currentSetAlarmType();
  123. }
  124. }
  125. });
  126. },
  127. currentSetAlarmType() {
  128. var importAlarmList = [];
  129. var warnAlarmList = [];
  130. for (var i = 0; this.alarmList1.length > i; i++) {
  131. if (this.alarmList1[i].isSelect === '1') {
  132. importAlarmList.push(this.alarmList1[i].alarmName);
  133. }
  134. }
  135. for (var i = 0; this.alarmList2.length > i; i++) {
  136. if (this.alarmList2[i].isSelect === '1') {
  137. warnAlarmList.push(this.alarmList2[i].alarmName);
  138. }
  139. }
  140. // this.setData({
  141. // seriousHtml:"<span style='font-size: 13px;'>严重报警:</span><span style='color: rgb(51, 51, 51,0.38);font-size: 13px;'>" + importAlarmList.toString() + "</span>"
  142. // })
  143. // this.setData({
  144. // warnHtml:"<span style='font-size: 13px;'>警告报警:</span><span style='color: rgb(51, 51, 51,0.38);font-size: 13px;'>" + warnAlarmList.toString() + "</span>"
  145. // })
  146. },
  147. saveAlarmType() {
  148. var alarmList = [];
  149. var params = {};
  150. for (var i = 0; this.alarmList1.length > i; i++) {
  151. params[this.alarmList1[i].type] = this.alarmList1[i].isSelect;
  152. }
  153. for (var i = 0; this.alarmList2.length > i; i++) {
  154. params[this.alarmList2[i].type] = this.alarmList2[i].isSelect;
  155. }
  156. params['macid'] = this.macid;
  157. const me = this;
  158. http.postApi(config.API_SMS_SAVE_SET, params, function (resp) {
  159. if (resp.data.code === 200) {
  160. common.simpleToast(me,me.$t('保存成功'));
  161. setTimeout(function () {
  162. uni.navigateBack({
  163. delta: 1
  164. });
  165. }, 1000);
  166. return;
  167. }
  168. });
  169. },
  170. bindAlarmMain: function (e) {
  171. const index = e.currentTarget.dataset.index;
  172. this.setData({
  173. typeIndex: index,
  174. alarmList: index === 0 ? this.alarmList1 : this.alarmList2
  175. });
  176. },
  177. bindAlarmSub: function (e) {
  178. const index = e.currentTarget.dataset.index;
  179. var alarmList1 = [];
  180. var alarmList2 = [];
  181. alarmList1 = this.alarmList1;
  182. alarmList2 = this.alarmList2;
  183. if (this.typeIndex === 0) {
  184. alarmList1[index].isSelect = alarmList1[index].isSelect === '1' ? '0' : '1';
  185. this.setData({
  186. alarmList1: alarmList1,
  187. alarmList: alarmList1
  188. });
  189. }
  190. if (this.typeIndex === 1) {
  191. alarmList2[index].isSelect = alarmList2[index].isSelect === '1' ? '0' : '1';
  192. this.setData({
  193. alarmList: alarmList2,
  194. alarmList2: alarmList2
  195. });
  196. }
  197. this.currentSetAlarmType();
  198. }
  199. }
  200. };
  201. </script>
  202. <style>
  203. @import './smsConfig.css';
  204. </style>