focused-doctor.js 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. var page = 1;
  2. var pageSize = 1000000;
  3. var d = dialog({contentType:'load', skin:'bk-popup'});
  4. var patientcode ="";
  5. var isSearch = false;
  6. // 搜索框
  7. //var $searchbar = $('.searchbar'),
  8. //// 搜索输入框
  9. //$searchbarInput = $('.searchbar input'),
  10. //// 搜索取消按钮
  11. //$searchCancelBtn = $('.searchbar-cancel'),
  12. //// 搜索框下面悬浮的搜索提示
  13. //$searchSuggest = $('#search_suggest_text'),
  14. //$listTIt = $('#list_tit'),
  15. //// 搜索结果展示容器
  16. //$searchtResult = $('.div-content');
  17. //// 搜索框初始化
  18. //$searchbar.addClass("searchbar-active");
  19. var getReqPromise = null;
  20. var scroller1 = null;
  21. $(function(){
  22. //添加isrcoll
  23. scroller1 = new IScrollPullUpDown('wrapper2',{
  24. probeType:2,
  25. bounceTime: 250,
  26. bounceEasing: 'quadratic',
  27. mouseWheel:false,
  28. scrollbars:true,
  29. click:true,
  30. fadeScrollbars:true,
  31. interactiveScrollbars:false
  32. },pullDownAction);
  33. bindEvents();
  34. pageInit();
  35. })
  36. //下拉刷新
  37. function pullDownAction(theScrollerTemp) {
  38. setTimeout(function () {
  39. $(".c-list").html("");
  40. page=1;
  41. pageInit();
  42. }, 1000);
  43. }
  44. //上拉加载数据
  45. function pullUpAction(theScrollerTemp) {
  46. $(".pullUp").show();
  47. setTimeout(function () {
  48. page++;
  49. pageInit();
  50. }, 1000);
  51. }
  52. function pageInit(){
  53. d.show();
  54. var params = {};
  55. params.page = page;
  56. params.pagesize = pageSize;
  57. params.name = $(".inp-search").val();
  58. getReqPromise("patient/consult/concernDoctorList",params).then(function(data){
  59. // getReqPromise("patient/consult/famousDoctorList",params).then(function(data){
  60. if(data.status == 200){
  61. var rowData = data.list;
  62. if (rowData.length > 0) {
  63. var listResult = _.map(rowData,function(item,index){
  64. var countClass = "c-74bf00";
  65. var num = item.num || 0;
  66. var expertise = "";
  67. var job_name = "";
  68. var photo = item.photo;
  69. if(!photo){
  70. var photo = "../../../images/noSexDoctor.jpg";
  71. if(item.sex==1){
  72. photo = "../../../images/d-male.png";
  73. }else if(item.sex==2){
  74. photo = "../../../images/d-female.png";
  75. }
  76. }
  77. if(num==0){
  78. countClass = "c-FF6A56";
  79. }
  80. if(item.expertise){
  81. expertise = '<div class="c-f12 c-666666">'+
  82. '<span class="span-content">'+item.expertise || ""+'</span>'+
  83. // '<span class="span-content">高血压、冠心病、心律失常等疾病的诊治擅长高血压、冠心病、心律失常等疾病的诊治擅长高血压、冠心病、心律失常等疾病的诊治擅长高血压、冠心病、心律失常等疾病的诊治擅长高血压、冠心病、心律失常等疾病的诊治擅长高血压、冠心病、心律失常等疾病的诊治擅长高血压、冠</span>'+
  84. '</div>';
  85. }
  86. if(item.job_name.trim()){
  87. job_name = '<span class="c-f14 c-666666 pl10">('+item.job_name+')</span>';
  88. }
  89. var content ='<li class="mt10" data-code="'+item.code+'" data-name="'+item.name+'" data-id="'+item.id+'">'+
  90. '<div class="n-list dr-item c-border c-100">'+
  91. '<div class="n-list-li">'+
  92. '<div class="n-list-key">'+
  93. '<div class="n-avatar-l img-round">'+
  94. '<img src="'+getImgUrl(item.photo)+'">'+
  95. '</div>'+
  96. '</div>'+
  97. '<div class="pdr-50 pl5">'+
  98. '<div class="c-f14 c-323232">'+
  99. '<span class="c-bold search-target-text">'+item.name+'</span>'+
  100. '<span class="plr5">'+ item.dept_name +'</span>' + item.job_name +
  101. '</div>'+
  102. '<div class="c-f14 c-323232">'+
  103. '<span>'+item.hospital_name+'</span>'+
  104. '</div>'+
  105. expertise+
  106. '<div class="c-f12 c-323232 pt10 clearfix">' +
  107. '<div class="fl w-33"><span class="pr5">关注</span>' + item.concernNum + '</div>' +
  108. '<div class="fl w-33"><span class="pr5">咨询</span>'+item.consultNum+'</div>' +
  109. '<div class="fl w-33"><span class="pr5">文章</span>'+item.articleNum+'</div>' +
  110. '</div>'+
  111. '</div>'+
  112. '</div>'+
  113. '</div>'+
  114. '</li>';
  115. id = item.id;
  116. return content;
  117. })
  118. $(".c-list").append(listResult);
  119. var kw = $(".inp-search").val();
  120. highlightKeyword(kw);
  121. scroller1.myScroll.refresh();
  122. }else {
  123. if(isSearch){//查询无结果
  124. $(".main").show();
  125. $(".div-content").hide();
  126. $(".div-no-search-info").show();
  127. $(".div-search-content").html("查无数据");
  128. isSearch = false;
  129. }else if(page==1){//page为1的时候证明是第一次加载,第一次加载无数据,显示无数据界面
  130. $(".main").hide();
  131. $(".div-no-search-info").show();
  132. $(".div-search-content").html("暂无已关注(咨询)医生,请先添加关注~");
  133. }else {
  134. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'无更多数据'}).show();
  135. }
  136. }
  137. } else {
  138. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:data.msg}).show();
  139. }
  140. d.close();
  141. $(".pullUp").hide();
  142. });
  143. }
  144. function bindEvents(){
  145. $(".c-list").on("click","li",function(){
  146. d.show();
  147. var doctorCode = $(this).attr("data-code");
  148. var docName = $(this).attr("data-name");
  149. sendPost('patient/consult/is_consult_unfinished', {doctor: doctorCode}, 'json', 'post',
  150. function(res){
  151. d.close();
  152. if (res && res.msg) {
  153. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  154. } else {
  155. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'获取是否存在咨询失败'}).show();
  156. }
  157. }, function(res){
  158. d.close();
  159. if(res.status == 200){
  160. if(res.data == ""){
  161. window.location.href = "mingyi-homepage.html?doctorCode="+doctorCode;
  162. } else {
  163. dialog({
  164. content: '十分抱歉,您与'+ docName +'医生还有<br/>未结束咨询,无法发起新的咨询',
  165. okValue:'前往查看',
  166. ok: function (){
  167. var userAgent = window.localStorage.getItem(agentName);
  168. var userInfo = JSON.parse(userAgent);
  169. var rep = userInfo.represented?userInfo.represented:userInfo.uid;
  170. window.location.href = "consulting-doctor.html?consult=" + res.data +"&toUser="+rep;
  171. },
  172. cancelValue: '我知道了',
  173. cancel: function () {
  174. $(".modal-overlay").trigger("click");
  175. $(".sanshi-icon").removeClass("active");
  176. $(".jiating-icon").removeClass("active");
  177. $(".mingyi-icon").removeClass("active");
  178. return;
  179. }
  180. }).showModal();
  181. }
  182. } else {
  183. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  184. }
  185. })
  186. })
  187. // 控制搜索关键字悬浮提示的显示
  188. getReqPromise = function(url, data) {
  189. return new Promise(function(resolve, reject) {
  190. sendPost(url, data, "json", "post",
  191. function queryFailed (req) {
  192. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:'加载失败'}).show();
  193. // TODO 开启示例数据
  194. //resolve({});
  195. }
  196. , function success(req) {
  197. resolve(req);
  198. });
  199. });
  200. }
  201. // //取消事件
  202. // $searchCancelBtn.on('click',function() {
  203. // $(this).hide();
  204. // $searchSuggest.text('');
  205. // $searchSuggest.hide();
  206. // $listTIt.show()
  207. // $searchtResult.show();
  208. // });
  209. //
  210. // $searchSuggest.on('click',function() {
  211. // search();
  212. // });
  213. //
  214. // //搜索框事件
  215. // $(".inp-search").on("input",function(){
  216. // var text = $(this).val().trim();
  217. // $searchtResult.hide();
  218. // showSearchSuggest(text);
  219. // if(text){
  220. // $searchCancelBtn.show();
  221. // $searchCancelBtn.css("opacity","1");
  222. // }else{
  223. // $searchCancelBtn.hide();
  224. // $searchCancelBtn.css("opacity","0");
  225. // search();
  226. // }
  227. // })
  228. }
  229. // var showSearchSuggest = function(text) {
  230. // var suggestText = '搜索“'+text+'”';
  231. // // 如果text不为空,则显示;否则隐藏
  232. // if(text&&text.trim().length) {
  233. // $searchSuggest.text(suggestText);
  234. // $searchSuggest.show();
  235. // $listTIt.hide();
  236. // } else {
  237. // $searchSuggest.text('');
  238. // $searchSuggest.hide();
  239. // $listTIt.show();
  240. // }
  241. // },
  242. // 关键字高亮显示
  243. var highlightKeyword = function(kw) {
  244. $searchTarget = $('.search-target-text');
  245. $searchTarget.hide();
  246. _.each($searchTarget,function(ele){
  247. var $ele = $(ele),
  248. text = $ele.text(),
  249. reg = new RegExp(kw+"(?!>)","gi"),
  250. html = text.replace(reg,'<em>'+kw+'</em>');
  251. $ele.html(html);
  252. });
  253. $searchTarget.show();
  254. },
  255. // // TODO搜索框搜索执行方法
  256. // search = function () {
  257. // $(".div-no-search-info").hide();
  258. // isSearch = true;
  259. // $searchSuggest.text('');
  260. // $searchSuggest.hide();
  261. // $listTIt.show()
  262. // $searchCancelBtn.hide();
  263. // $searchCancelBtn.css("opacity","0");
  264. // $searchtResult.show();
  265. // $(".c-list").html("");
  266. // id=0;
  267. // pageInit();
  268. // },
  269. // 重置搜索结果的容器高度(为了让滚动条出现在容器内部,而不引起外部内容滚动)
  270. resetResultWrapHeight = function() {
  271. var winHeight = $(window).height(),
  272. diff = 45,
  273. $wrap = $('.div-content');
  274. $wrap.height(winHeight-diff);
  275. },
  276. // 监听窗口大小变化,重置所属区列表、社区列表列表容器高度
  277. resultWrapAutoAdapt = function() {
  278. resetResultWrapHeight();
  279. $(window).on('resize',function() {
  280. resetResultWrapHeight();
  281. });
  282. };