smsAlarm.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. <template>
  2. <!-- pages/smsAlarm/smsAlarm.wxml -->
  3. <view class="container">
  4. <view style="height: 80rpx"></view>
  5. <view class="list-group">
  6. <view v-for="(item, index) in alarmList" :key="index">
  7. <view class="info-group list-item">
  8. <view class="top-group">
  9. <view class="group-view flex-row flex-between">
  10. <view class="flex-row">
  11. <view class="info-text">{{$t('设备名称') + ':'}}</view>
  12. <view class="info-text-gray">{{ item.gpsbms_name }}</view>
  13. </view>
  14. <view class="flex-row">
  15. <view class="info-text">{{$t('设备编号') + ':'}}</view>
  16. <view class="info-text-gray">{{ item.battery_sn }}</view>
  17. </view>
  18. </view>
  19. <view class="group-view flex-row">
  20. <view class="info-text">{{$t('已发生报警短信次数') + ':'}}</view>
  21. <view class="red-text">{{ item.number }}次</view>
  22. </view>
  23. <view class="group-view flex-row">
  24. <view class="info-text">{{$t('最近报警类型') + ':'}}</view>
  25. <view class="red-text">{{ item.last_alarm_name }}</view>
  26. </view>
  27. <view class="group-view flex-row">
  28. <view class="info-text">{{$t('最近报警时间') + ':'}}</view>
  29. <view class="info-text-gray">{{ tools.formatTime(item.ctime) }}</view>
  30. </view>
  31. </view>
  32. <view class="op_view flex-row">
  33. <view @tap="bindAlarmConfigDevice" :data-index="index" class="item_alarm">{{$t('报警类型开关')}}</view>
  34. <view @tap="bindAlarmRecord" :data-index="index" class="item_record">{{$t('报警记录')}}</view>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. <view class="no-more">{{$t('没有更多信息啦~')}}</view>
  40. <view style="height: 90rpx"></view>
  41. <view class="top-bar-container flex-row">
  42. <view style="font-size: 28rpx">{{$t('短信报警通知')}}</view>
  43. <image :src="!alarmStatus ? '/static/resource/images/kaiqi.png' : '/static/resource/images/guanbi.png'" class="notice-img" @tap="bindSetNotice"></image>
  44. </view>
  45. <view class="bottom-bar-container flex-row flex-between">
  46. <view @tap="bindSetConfigType" class="config_type_view">{{$t('配置全部报警')}}</view>
  47. <view @tap="bindSetBalance" class="balance_view">{{ $t('余额') + ':' + coin / 100 + $t('币')}}</view>
  48. </view>
  49. <view v-if="isShowActivity" class="modal-group flex-row flex-around">
  50. <view class="pop_bg_view">
  51. <view class="avatar_view">
  52. <image :src="userInfo.type == 'group' && userInfo.info.headimg ? userInfo.info.headimg : '/resource/images/logo.png'" class="avatar_img"></image>
  53. </view>
  54. <view class="pop_view">
  55. <view class="name_text">{{ userInfo.info.name }}</view>
  56. <view class="give_view">
  57. <text>{{$t('赠送') + ':'}}</text>
  58. <text class="red_view">{{ coupon.send_gift / 100 + $t('币') }}</text>
  59. </view>
  60. <!-- <rich-text nodes="{{useHtml}}"></rich-text> -->
  61. <view class="use_view">
  62. <text>{{$t('用途') + ':'}}</text>
  63. <text class="use_mark">{{ $t('可用于短信报警通知,每条短信消耗') + coupon.cost / 100 + $t('币') }}</text>
  64. </view>
  65. <view @tap="clickUseCoupon" class="get_wallet">{{$t('领取到钱包')}}</view>
  66. </view>
  67. </view>
  68. </view>
  69. </view>
  70. </template>
  71. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  72. <script>
  73. // pages/smsAlarm/smsAlarm.js
  74. var appConfig = require('../../common/appConfig.js');
  75. const config = require('../../common/config.js');
  76. const http = require('../../common/http.js');
  77. const common = require('../../common/common.js');
  78. var storage = require('../../common/storage.js');
  79. const LIMT_PAGE = 20;
  80. export default {
  81. data() {
  82. return {
  83. isLoading: false,
  84. alarmList: [],
  85. start_page: 1,
  86. limit_page: LIMT_PAGE,
  87. alarmStatus: false,
  88. // 0 开启短信报警 1 关闭短信报警
  89. coin: 0,
  90. userInfo: {
  91. type: '',
  92. info: {
  93. headimg: '',
  94. name: ''
  95. }
  96. },
  97. isShowActivity: false,
  98. coupon: {
  99. send_gift: 0,
  100. cost: 0
  101. },
  102. useHtml: ''
  103. };
  104. }
  105. /**
  106. * 生命周期函数--监听页面加载
  107. */,
  108. onLoad: function (options) {
  109. const userInfo = storage.getUserInfo();
  110. uni.setNavigationBarTitle({
  111. title: this.$t('短信报警')
  112. });
  113. this.setData({
  114. userInfo: userInfo,
  115. useHtml:
  116. "<span style='font-size: 13px;'>\u7528\u9014\uFF1A</span><span style='color: rgb(51, 51, 51,0.38);font-size: 13px;'>\u53EF\u7528\u4E8E\u77ED\u4FE1\u62A5\u8B66\u901A\u77E5\uFF0C\u6BCF\u6761\u77ED\u4FE1\u6D88\u80170.1\u5E01</span>"
  117. });
  118. this.refreshLoadSmsAlarmList();
  119. this.loadHasCoupon();
  120. },
  121. /**
  122. * 生命周期函数--监听页面显示
  123. */
  124. onShow: function () {
  125. uni.setNavigationBarTitle({
  126. title: this.$t('短信报警')
  127. });
  128. this.loadGetCoin();
  129. },
  130. /**
  131. * 页面相关事件处理函数--监听用户下拉动作
  132. */
  133. onPullDownRefresh: function () {
  134. this.refreshLoadSmsAlarmList();
  135. },
  136. /**
  137. * 页面上拉触底事件的处理函数
  138. */
  139. onReachBottom: function () {
  140. if (this.isLoading) {
  141. return;
  142. }
  143. this.setData({
  144. isLoading: true
  145. });
  146. this.start_page++;
  147. this.loadWarnList();
  148. },
  149. methods: {
  150. refreshLoadSmsAlarmList: function () {
  151. if (this.isLoading) {
  152. return;
  153. }
  154. this.setData({
  155. alarmList: [],
  156. isLoading: true
  157. });
  158. common.loading(this);
  159. this.limit_page = LIMT_PAGE;
  160. this.start_page = 1;
  161. this.loadWarnList();
  162. },
  163. bindSetConfigType() {
  164. uni.navigateTo({
  165. url: '/pages/smsConfig/smsConfig?type=1',
  166. success: function (res) {},
  167. fail: function (res) {},
  168. complete: function (res) {}
  169. });
  170. },
  171. bindSetBalance() {
  172. uni.navigateTo({
  173. url: '/myPages/pages/wallet/wallet',
  174. success: function (res) {},
  175. fail: function (res) {},
  176. complete: function (res) {}
  177. });
  178. },
  179. bindAlarmConfigDevice: function (e) {
  180. const index = e.currentTarget.dataset.index;
  181. uni.navigateTo({
  182. url: '/pages/smsConfig/smsConfig?type=0&macid=' + this.alarmList[index].battery_sn,
  183. success: function (res) {},
  184. fail: function (res) {},
  185. complete: function (res) {}
  186. });
  187. },
  188. bindAlarmRecord: function (e) {
  189. const index = e.currentTarget.dataset.index;
  190. uni.navigateTo({
  191. url: '/pages/smsRecord/smsRecord?macid=' + this.alarmList[index].battery_sn,
  192. success: function (res) {},
  193. fail: function (res) {},
  194. complete: function (res) {}
  195. });
  196. },
  197. loadHasCoupon() {
  198. const me = this;
  199. http.postRequest(config.API_HAS_COUPON, {}, function (resp) {
  200. if (resp.data.code === 200) {
  201. me.setData({
  202. coupon: resp.data.data
  203. });
  204. if (me.coupon.has_coupon) {
  205. me.setData({
  206. isShowActivity: true
  207. });
  208. }
  209. } else {
  210. common.simpleToast(me,resp.data.msg);
  211. }
  212. });
  213. },
  214. clickUseCoupon() {
  215. const me = this;
  216. http.postRequest(config.API_USE_COUPON, {}, function (resp) {
  217. if (resp.data.code === 200) {
  218. me.setData({
  219. isShowActivity: false
  220. });
  221. me.loadGetCoin();
  222. common.simpleToast(me,me.$t('领取成功'));
  223. } else {
  224. common.simpleToast(me,resp.data.msg);
  225. }
  226. });
  227. },
  228. loadGetCoin() {
  229. const me = this;
  230. http.postApi(config.API_GET_COIN, {}, function (resp) {
  231. if (resp.data.code === 200) {
  232. me.setData({
  233. coin: resp.data.data.coin
  234. });
  235. }
  236. });
  237. },
  238. loadWarnList() {
  239. const me = this;
  240. common.loading(this);
  241. const pData = {
  242. size: me.limit_page,
  243. page: me.start_page
  244. };
  245. http.postRequest(config.API_ALARM_SUMMARY, pData, function (resp) {
  246. uni.hideLoading();
  247. uni.stopPullDownRefresh();
  248. if (resp.data.code === 200) {
  249. let alarmList = me.alarmList;
  250. var alarm_list = resp.data.data.list;
  251. for (var i = 0; alarm_list.length > i; i++) {
  252. var import_alarm_list = alarm_list[i].alarm_setting[0].list;
  253. var warn_alarm_list = alarm_list[i].alarm_setting[1].list;
  254. var importAlarmList = [];
  255. var warnAlarmList = [];
  256. for (var j = 0; import_alarm_list.length > j; j++) {
  257. importAlarmList.push(import_alarm_list[j].alarmName);
  258. }
  259. for (var m = 0; warn_alarm_list.length > m; m++) {
  260. warnAlarmList.push(warn_alarm_list[m].alarmName);
  261. }
  262. alarm_list[i].importAlarm = importAlarmList.toString();
  263. alarm_list[i].warnAlarm = warnAlarmList.toString();
  264. }
  265. console.log(alarm_list);
  266. alarmList.push.apply(alarmList, alarm_list);
  267. me.setData({
  268. alarmList: alarmList,
  269. alarmStatus: resp.data.data.close_alarm,
  270. coin: resp.data.data.coin,
  271. isLoading: false
  272. });
  273. } else {
  274. common.simpleToast(me,resp.data.msg);
  275. }
  276. });
  277. },
  278. bindSetNotice() {
  279. if (!this.alarmStatus) {
  280. const me = this;
  281. uni.showModal({
  282. title: '',
  283. content: me.$t('您正在关闭短信通知,关闭后您将接收不到短信警报提醒,您是否要继续关闭?'),
  284. showCancel: true,
  285. cancelText: me.$t('取消'),
  286. confirmText: me.$t('确定'),
  287. success: function (res) {
  288. if (res.confirm) {
  289. me.loadCloseAlarm();
  290. }
  291. }
  292. });
  293. } else {
  294. this.loadCloseAlarm();
  295. }
  296. },
  297. loadCloseAlarm() {
  298. const me = this;
  299. common.loading(this);
  300. http.postRequest(
  301. config.API_CLOSE_ALARM,
  302. {
  303. status: !this.alarmStatus
  304. },
  305. function (resp) {
  306. uni.hideLoading();
  307. if (resp.data.code === 200) {
  308. me.setData({
  309. alarmStatus: !me.alarmStatus
  310. });
  311. } else {
  312. common.simpleToast(me,resp.data.msg);
  313. }
  314. }
  315. );
  316. }
  317. }
  318. };
  319. </script>
  320. <style>
  321. @import './smsAlarm.css';
  322. </style>