baojinginfo.js 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. (function () {
  2. /*function list(data, $page) {
  3. $.each(data, function (_index, _item) {
  4. learun.httpget(config.webapi + "learun/adms/desktop/data", { type: 'list', id: _item.F_Id }, function(data) {
  5. if (data) {
  6. var html = '';
  7. $.each(data.value, function (_j, _jitem) {
  8. html += '\
  9. <div class="lr-list-item lr-dtlist-item">\
  10. <div class="lr-ellipsis">'+ _jitem.f_title + '</div>\
  11. <div class="date">'+ learun.date.format(_jitem.f_time, 'yyyy-MM-dd') + '</div>\
  12. </div>';
  13. });
  14. console.log(html);
  15. }
  16. $page.find('#lr_desktop_msg_content').append(html);
  17. });
  18. });
  19. }*/
  20. var page = {
  21. isScroll: false,
  22. init: function ($page,param) {
  23. $page.find('#toptab').toptab(['告警', '公告']).each(function (index) {
  24. var $this = $(this);
  25. switch (index) {
  26. case 0:
  27. var msg_html = '';
  28. msg_html += '\
  29. <div class="f-page-body f-scroll-wrapper">\
  30. <div class="f-scroll" id="gaojinginfo" style="transform: translate3d(0px, 0px, 0px) translateZ(0px);">';
  31. //var baojing_info = '';
  32. userinfo = learun.storage.get('userinfo');
  33. learun.httpget(config.webapi + "/?s=api/get_baojing_info&plate="+userinfo.baseinfo.plate, {}, function(res) {
  34. if(res){
  35. $.each(res, function (_index, _item) {
  36. msg_html += '\
  37. <div class="lr-list">\
  38. <div class="lr-list-item lr-list-item-multi" style="line-height: 25px;">\
  39. <h4 id="time">'+ _item.AddTime +'</h4>\
  40. <p class="lr-ellipsis">'+ _item.LicensePlate +'<span class="" style="right: 15px;position: absolute;top: 50%;transform: translateY(-50%);">'+ _item.DeviceNumber +'</span></p>\
  41. <a class="lr-nav-right" id="gaojingdetail">'+ _item.Type +'<span class="lr-badge lr-badge-primary lr-badge-inverted">详情</span></a>\
  42. </div>\
  43. </div>';
  44. });
  45. }else{
  46. msg_html += '<h4>暂无消息</h4>';
  47. }
  48. $page.find('#gaojinginfo').html(msg_html);
  49. var addtime = $('#time').text();
  50. $('#gaojingdetail').on('tap', function () {
  51. learun.nav.go({ path: 'alarmdetail', title: '告警详情', type: 'right', param:'{"addtime":'+addtime+'}'});
  52. });
  53. });
  54. msg_html += '\
  55. </div>\
  56. <div class="f-scrollbar f-scrollbar-vertical">\
  57. <div class="f-scrollbar-indicator" style="transition-duration: 0ms; display: none; height: 830px; transform: translate3d(0px, 0px, 0px) translateZ(0px);">\
  58. </div>\
  59. </div>\
  60. </div>';
  61. $this.html(msg_html);
  62. break;
  63. case 1:
  64. var msg_html = '';
  65. msg_html += '\
  66. <div class="f-page-body f-scroll-wrapper">\
  67. <div class="f-scroll" id="gonggaoinfo" style="transform: translate3d(0px, 0px, 0px) translateZ(0px);">';
  68. //var baojing_info = '{"0":{"data":"1111","msg":"公告","time":"2/28"},"1":{"data":"2222","msg":"公告","time":"2/29"}}';
  69. userinfo = learun.storage.get('userinfo');
  70. learun.httpget(config.webapi + "/?s=api/get_gonggao_info&plate="+userinfo.baseinfo.plate, {}, function(res) {
  71. if(res){
  72. $.each(res, function (_index, _item) {
  73. msg_html += '\
  74. <div class="lr-list">\
  75. <div class="lr-list-item lr-list-item-multi" style="line-height: 25px;">\
  76. <h4 id="time">'+ _item.AddTime +'</h4>\
  77. <p class="lr-ellipsis">'+ _item.LicensePlate +'<span class="" style="right: 15px;position: absolute;top: 50%;transform: translateY(-50%);">'+ _item.DeviceNumber +'</span></p>\
  78. <a class="lr-nav-right" id="gonggaodetail">'+ _item.Type +'<span class="lr-badge lr-badge-primary lr-badge-inverted">详情</span></a>\
  79. </div>\
  80. </div>';
  81. $page.find('.gonggaodetail').on('tap', function () {
  82. learun.nav.go({ path: 'baojing', title: '自助报警', type: 'right' });
  83. });
  84. });
  85. }else{
  86. msg_html += '<h4>暂无消息</h4>';
  87. }
  88. $page.find('#gonggaoinfo').html(msg_html);
  89. $('#gonggaodetail').on('tap', function () {
  90. var addtime = $('#time').text();
  91. learun.nav.go({ path: 'alarmdetail', title: '告警详情', type: 'right',param:'{"addtime":'+addtime+'}' });
  92. });
  93. });
  94. msg_html += '\
  95. </div>\
  96. <div class="f-scrollbar f-scrollbar-vertical">\
  97. <div class="f-scrollbar-indicator" style="transition-duration: 0ms; display: none; height: 830px; transform: translate3d(0px, 0px, 0px) translateZ(0px);">\
  98. </div>\
  99. </div>\
  100. </div>';
  101. $this.html(msg_html);
  102. break;
  103. }
  104. $this = null;
  105. });
  106. }
  107. /*reload: function ($page, pageinfo) {
  108. if (learun.isOutLogin) {// 如果是重新登录的情况刷新下桌面数据
  109. learun.isOutLogin = false;
  110. $page.find('#toptab').toptab(['告警', '公告']).each(function (index) {
  111. var $this = $(this);
  112. switch (index) {
  113. case 0:
  114. var msg_html = '';
  115. msg_html += '\
  116. <div class="f-page-body f-scroll-wrapper">\
  117. <div class="f-scroll" id="gaojinginfo" style="transform: translate3d(0px, 0px, 0px) translateZ(0px);">';
  118. learun.http.get("http://czapp.rltest.cn/?s=api/get_baojing_info", {}, function(res) {
  119. if(res){
  120. $.each(res.data, function (_index, _item) {
  121. msg_html += '\
  122. <div class="lr-list">\
  123. <div class="lr-list-item lr-list-item-multi" style="line-height: 25px;">\
  124. <h4>'+ _item.AddTime +'</h4>\
  125. <p class="lr-ellipsis">'+ _item.DeviceNumber +'<span class="" style="right: 15px;position: absolute;top: 50%;transform: translateY(-50%);">'+ _item.AddTime +'</span></p>\
  126. <a class="lr-nav-right">'+ _item.Comment +'<span class="lr-badge lr-badge-primary lr-badge-inverted">详情</span></a>\
  127. </div>\
  128. </div>';
  129. });
  130. }else{
  131. msg_html += '<h4>暂无消息</h4>';
  132. }
  133. $page.find('#gaojinginfo').html(msg_html);
  134. });
  135. msg_html += '\
  136. </div>\
  137. <div class="f-scrollbar f-scrollbar-vertical">\
  138. <div class="f-scrollbar-indicator" style="transition-duration: 0ms; display: none; height: 830px; transform: translate3d(0px, 0px, 0px) translateZ(0px);">\
  139. </div>\
  140. </div>\
  141. </div>';
  142. $this.html(msg_html);
  143. break;
  144. case 1:
  145. var msg_html = '';
  146. msg_html += '\
  147. <div class="f-page-body f-scroll-wrapper">\
  148. <div class="f-scroll" id="gonggaoinfo" style="transform: translate3d(0px, 0px, 0px) translateZ(0px);">';
  149. learun.http.get("http://czapp.rltest.cn/?s=api/get_baojing_info", {}, function(res) {
  150. if(res){
  151. $.each(res.data, function (_index, _item) {
  152. msg_html += '\
  153. <div class="lr-list">\
  154. <div class="lr-list-item lr-list-item-multi" style="line-height: 25px;">\
  155. <h4>'+ _item.AddTime +'</h4>\
  156. <p class="lr-ellipsis">'+ _item.DeviceNumber +'<span class="" style="right: 15px;position: absolute;top: 50%;transform: translateY(-50%);">'+ _item.AddTime +'</span></p>\
  157. <a class="lr-nav-right">'+ _item.Comment +'<span class="lr-badge lr-badge-primary lr-badge-inverted">详情</span></a>\
  158. </div>\
  159. </div>';
  160. });
  161. }else{
  162. msg_html += '<h4>暂无消息</h4>';
  163. }
  164. $page.find('#gonggaoinfo').html(msg_html);
  165. });
  166. msg_html += '\
  167. </div>\
  168. <div class="f-scrollbar f-scrollbar-vertical">\
  169. <div class="f-scrollbar-indicator" style="transition-duration: 0ms; display: none; height: 830px; transform: translate3d(0px, 0px, 0px) translateZ(0px);">\
  170. </div>\
  171. </div>\
  172. </div>';
  173. $this.html(msg_html);
  174. break;
  175. }
  176. $this = null;
  177. });
  178. }
  179. }*/
  180. };
  181. return page;
  182. /*var page = {
  183. isScroll: false,
  184. init: function ($page) {
  185. learun.clientdata.get('desktop', {
  186. callback: function (data) {
  187. console.log(data);
  188. list(data.list || [], $page);
  189. }
  190. });
  191. }
  192. };
  193. return page;*/
  194. })();