select-consult-doctor.js 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. var d = dialog({contentType:'load', skin:'bk-popup'});
  2. var page = 1,
  3. pageSize = 10,
  4. pagetype = 3;
  5. // 搜索框
  6. var $searchbar = $('.searchbar'),
  7. // 搜索输入框
  8. $searchbarInput = $('.searchbar input'),
  9. // 搜索取消按钮
  10. $searchCancelBtn = $('.searchbar-cancel'),
  11. // 搜索框下面悬浮的搜索提示
  12. $searchSuggest = $('#search_suggest_text'),
  13. // 搜索结果展示容器
  14. $searchtResult = $('.div-content');
  15. // 搜索框初始化
  16. $searchbar.addClass("searchbar-active");
  17. // 获取链接带参
  18. var request = GetRequest(),
  19. deptId = request["deptId"] || null,
  20. deptName = decodeURI(request["deptName"]) || "";
  21. $(function(){
  22. checkUserAgent();
  23. })
  24. function queryInit(){
  25. initScroller();
  26. if(deptId){
  27. $(".inp-search").val(deptName);
  28. }
  29. getDoctorList(true);
  30. bindEvents();
  31. getTemplateHelper();
  32. }
  33. function getDoctorList(isInit){
  34. d.show();
  35. if(isInit){
  36. page = 1;
  37. }
  38. var url = "patient/consult/doctorList",
  39. params = {
  40. dept: deptId,
  41. page: page,
  42. pagesize: pageSize,
  43. name: $(".inp-search").val()
  44. };
  45. sendPost(url, params, 'JSON', 'GET', queryFailed, function(res){
  46. if(res.status == 200){
  47. d.close();
  48. var list = res.list;
  49. if(list.length>0){
  50. page ++;
  51. var html = template("doc-tmp", {list: list});
  52. if(isInit){
  53. $(".main").show();
  54. $(".div-content").show();
  55. $(".div-no-search-info").hide();
  56. $("#docList").empty().append(html);
  57. }else{
  58. $("#docList").append(html);
  59. }
  60. if(list.length < pageSize){
  61. mui(".mui-scroll-wrapper").pullRefresh().endPullupToRefresh(true);
  62. }else{
  63. mui(".mui-scroll-wrapper").pullRefresh().endPullupToRefresh(false);
  64. }
  65. }else{
  66. if(isInit){
  67. $(".main").hide();
  68. $(".div-no-search-info").show();
  69. mui(".mui-scroll-wrapper").pullRefresh().endPullupToRefresh(true);
  70. }else{
  71. mui(".mui-scroll-wrapper").pullRefresh().endPullupToRefresh(true);
  72. }
  73. }
  74. }else{
  75. queryFailed(res);
  76. }
  77. })
  78. }
  79. function bindEvents(){
  80. //搜索框事件
  81. $(".inp-search").on("input",function(e){
  82. var text = $(this).val().trim();
  83. $searchtResult.hide();
  84. showSearchSuggest(text);
  85. //如果有部门信息
  86. if(text != deptName){
  87. deptId = '';
  88. }
  89. if(text){
  90. $searchCancelBtn.show();
  91. $searchCancelBtn.css("opacity","1");
  92. }else{
  93. $searchCancelBtn.hide();
  94. $searchCancelBtn.css("opacity","0");
  95. mui(".mui-scroll-wrapper").pullRefresh().refresh(true);
  96. getDoctorList(true);
  97. }
  98. });
  99. //取消事件
  100. $searchCancelBtn.on('click',function() {
  101. $(this).hide();
  102. $searchSuggest.text('');
  103. $searchSuggest.hide();
  104. $searchtResult.show();
  105. });
  106. $searchSuggest.on('click',function() {
  107. $searchCancelBtn.hide();
  108. $searchCancelBtn.css("opacity","0");
  109. $searchSuggest.hide();
  110. $searchtResult.show();
  111. getDoctorList(true);
  112. });
  113. // 选择科室
  114. $('#select_dept').on('click', function() {
  115. window.location.href = 'hospital-dept.html'
  116. })
  117. // 已关注医生列表
  118. $('#focused').on('click', function() {
  119. window.location.href = 'focused-doctor.html'
  120. })
  121. //单个医生点击
  122. $("#docList").on("tap", "li", function(){
  123. var doctorCode = $(this).attr("data-code");
  124. window.location.href = "doctor-homepage.html?doctor="+doctorCode;
  125. })
  126. }
  127. function getTemplateHelper(){
  128. template.helper("getImgUrl", function(str){
  129. return getImgUrl(str);
  130. });
  131. template.helper("highlightKeyword", function(str){
  132. var kw = $(".inp-search").val(),
  133. reg = new RegExp(kw+"(?!>)","gi"),
  134. html = str;
  135. if(kw){
  136. html = str.replace(reg,'<em>'+kw+'</em>');
  137. }
  138. return html;
  139. })
  140. }
  141. function initScroller(){
  142. //阻尼系数
  143. var deceleration = mui.os.ios?0.003:0.0009;
  144. mui('.mui-scroll-wrapper').scroll({
  145. bounce: false,
  146. indicators: true, //是否显示滚动条
  147. deceleration:deceleration
  148. });
  149. mui.ready(function() {
  150. mui(".mui-scroll-wrapper").pullRefresh({
  151. down:{
  152. callback: function(){
  153. getDoctorList(true);
  154. this.endPulldownToRefresh();
  155. }
  156. },
  157. up: {
  158. callback: function() {
  159. var self = this;
  160. setTimeout(function() {
  161. getDoctorList(false);
  162. // self.endPullupToRefresh();
  163. }, 1000);
  164. }
  165. }
  166. });
  167. });
  168. }
  169. function showSearchSuggest(text) {
  170. var suggestText = '搜索“'+text+'”';
  171. // 如果text不为空,则显示;否则隐藏
  172. if(text&&text.trim().length) {
  173. $searchSuggest.text(suggestText);
  174. $searchSuggest.show();
  175. } else {
  176. $searchSuggest.text('');
  177. $searchSuggest.hide();
  178. }
  179. }
  180. //请求失败处理事件
  181. function queryFailed(res, message){
  182. d.close();
  183. if(message){
  184. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content: message}).show();
  185. }else{
  186. if (res && res.msg) {
  187. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  188. } else {
  189. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'加载失败'}).show();
  190. }
  191. }
  192. }