select-consult-doctor.js 5.4 KB

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