contacts.js 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. /*页面js模板,必须有init方法*/
  2. (function () {
  3. var companyMap;
  4. var departmentMap;
  5. var userMap;
  6. var getHeadImg = function (user) {
  7. var url = '';
  8. switch (user.img) {
  9. case '0':
  10. url += 'images/on-girl.jpg';
  11. break;
  12. case '1':
  13. url += 'images/on-boy.jpg';
  14. break;
  15. default:
  16. url += config.webapi + 'learun/adms/user/img?data=' + user.id;
  17. break;
  18. }
  19. return url;
  20. };
  21. var page = {
  22. isScroll: true,
  23. init: function ($page) {
  24. companyMap = {};
  25. departmentMap = {};
  26. userMap = {};
  27. // 公司列表数据初始化
  28. learun.clientdata.getAll('company', {
  29. callback: function (data) {
  30. $.each(data, function (_id, _item) {
  31. companyMap[_item.parentId] = companyMap[_item.parentId] || [];
  32. _item.id = _id;
  33. companyMap[_item.parentId].push(_item);
  34. });
  35. var $list = $page.find('#lr_contact_companylist');
  36. $.each(companyMap["0"], function (_index, _item) {
  37. var _html = '\
  38. <div class="lr-list-item" >\
  39. <a class="lr-nav-left company" data-value="'+ _item.id + '" >' + _item.name + '</a>\
  40. </div>';
  41. $list.append(_html);
  42. });
  43. // 部门列表数据初始化
  44. learun.clientdata.getAll('department', {
  45. callback: function (data) {
  46. $.each(data, function (_id, _item) {
  47. _item.id = _id;
  48. if (_item.parentId === "0") {
  49. departmentMap[_item.companyId] = departmentMap[_item.companyId] || [];
  50. departmentMap[_item.companyId].push(_item);
  51. }
  52. else {
  53. departmentMap[_item.parentId] = departmentMap[_item.parentId] || [];
  54. departmentMap[_item.parentId].push(_item);
  55. }
  56. });
  57. // 人员列表数据初始化
  58. learun.clientdata.getAll('user', {
  59. callback: function (data) {
  60. $.each(data, function (_id, _item) {
  61. _item.id = _id;
  62. if (_item.departmentId) {
  63. userMap[_item.departmentId] = userMap[_item.departmentId] || [];
  64. userMap[_item.departmentId].push(_item);
  65. }
  66. else if (_item.companyId) {
  67. userMap[_item.companyId] = userMap[_item.companyId] || [];
  68. userMap[_item.companyId].push(_item);
  69. }
  70. });
  71. }
  72. });
  73. }
  74. });
  75. }
  76. });
  77. // 注册点击事件
  78. $('#lr_contact_companylist').on('tap', function (e) {
  79. e = e || window.event;
  80. var et = e.target || e.srcElement;
  81. var $et = $(et);
  82. if (et.tagName === 'IMG' || et.tagName === 'SPAN') {
  83. $et = $et.parent();
  84. }
  85. var $list = $('<div class="lr-user-list" ></div>');
  86. var flag = false;
  87. var id = $et.attr('data-value');
  88. if ($et.hasClass('company')) {
  89. if ($et.hasClass('bottom')) {
  90. $et.removeClass('bottom');
  91. $et.parent().find('.lr-user-list').remove();
  92. }
  93. else {
  94. $list.css({ 'padding-left': '10px' });
  95. // 加载人员
  96. $.each(userMap[id] || [], function (_index, _item) {
  97. var _html = '\
  98. <div class="lr-list-item user" data-value="'+ _item.id + '" >\
  99. <img src="'+ getHeadImg(_item) + '" >\
  100. <span >' + _item.name + '</span>\
  101. </div>';
  102. $list.append(_html);
  103. flag = true;
  104. });
  105. // 加载部门
  106. $.each(departmentMap[id] || [], function (_index, _item) {
  107. var _html = '\
  108. <div class="lr-list-item" >\
  109. <a class="lr-nav-left department" data-value="'+ _item.id + '" >' + _item.name + '</a>\
  110. </div>';
  111. $list.append(_html);
  112. flag = true;
  113. });
  114. // 加载公司
  115. $.each(companyMap[id] || [], function (_index, _item) {
  116. var _html = '\
  117. <div class="lr-list-item" >\
  118. <a class="lr-nav-left company" data-value="'+ _item.id + '" >' + _item.name + '</a>\
  119. </div>';
  120. $list.append(_html);
  121. flag = true;
  122. });
  123. if (flag) {
  124. $et.parent().append($list);
  125. }
  126. $et.addClass('bottom');
  127. }
  128. $list = null;
  129. return false;
  130. }
  131. else if ($et.hasClass('department')) {
  132. if ($et.hasClass('bottom')) {
  133. $et.removeClass('bottom');
  134. $et.parent().find('.lr-user-list').remove();
  135. }
  136. else {
  137. $list.css({ 'padding-left': '10px' });
  138. // 加载人员
  139. $.each(userMap[id] || [], function (_index, _item) {
  140. var _html = '\
  141. <div class="lr-list-item user" data-value="'+ _item.id + '" >\
  142. <img src="'+ getHeadImg(_item) + '" >\
  143. <span >' + _item.name + '</span>\
  144. </div>';
  145. $list.append(_html);
  146. flag = true;
  147. });
  148. // 加载部门
  149. $.each(departmentMap[id] || [], function (_index, _item) {
  150. var _html = '\
  151. <div class="lr-list-item" >\
  152. <a class="lr-nav-left department" data-value="'+ _item.id + '" >' + _item.name + '</a>\
  153. </div>';
  154. $list.append(_html);
  155. flag = true;
  156. });
  157. if (flag) {
  158. $et.parent().append($list);
  159. }
  160. $et.addClass('bottom');
  161. }
  162. $list = null;
  163. return false;
  164. }
  165. else if ($et.hasClass('user')){
  166. var userName = $et.find('span').text();
  167. learun.nav.go({ path: 'chat', title: userName, isBack: true, isHead: true, param: { hasHistory: true, userId: id }, type: 'right' });
  168. $list = null;
  169. return false;
  170. }
  171. });
  172. // 点击搜索框
  173. $page.find('.searchBox').on('tap', function () {
  174. learun.nav.go({ path: 'contacts/search', title: '', isBack: true, isHead: true });
  175. });
  176. },
  177. destroy: function (pageinfo) {
  178. companyMap = null;
  179. departmentMap = null;
  180. userMap = null;
  181. }
  182. };
  183. return page;
  184. })();