jianchajianyan.js 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. var d= dialog({contentType:'load', skin:'bk-popup'}).show();
  2. var pagetype = 29;
  3. var $records = $('#records'),
  4. $wrapper = $('#wrapper'),
  5. $content = $('.div-content'),
  6. $noResult = $('#no_result_wrap');
  7. var scrollIns = null;
  8. var page = 1;
  9. appendFamilyMember($('#memberContainer'),function(){
  10. queryInit();
  11. },function(){
  12. //判断有授权家人,修改样式
  13. if($('#memberContainer').is(':hidden')){
  14. $('#wrapper').css('top','0px');
  15. $('.no-result-img').css('margin-top','150px')
  16. }else{
  17. $('#wrapper').css('top','90px');
  18. $('.vertical-line').css('top','90px');
  19. }
  20. });
  21. function getYear(date) {
  22. if(date) {
  23. return date.substr(0,4);
  24. }
  25. return "";
  26. }
  27. function getMD(date) {
  28. if(date) {
  29. return date.substr(5,5);
  30. }
  31. return "";
  32. }
  33. function getEventTypeClass(v) {
  34. if(v.catalogCode=="0131"||v.catalogCode=="0231"||v.type=="检查") {
  35. return "jiancha";
  36. } else if(v.catalogCode=="0121"||v.catalogCode=="0221"||v.type=="检验"){
  37. return "jianyan";
  38. }
  39. return "";
  40. }
  41. function getEventTypeName(v) {
  42. if(v.catalogCode=="0131"||v.catalogCode=="0231"||v.type=="检查") {
  43. return "检查";
  44. } else if(v.catalogCode=="0121"||v.catalogCode=="0221"||v.type=="检验"){
  45. return "检验";
  46. }
  47. return "";
  48. }
  49. function hasGroup(date) {
  50. var year = getYear(date),
  51. $year = $('.record-year[data-year="'+ year +'"]');
  52. if($year.length) {
  53. return true;
  54. }
  55. return false;
  56. }
  57. function updatePullUpText(scroller,list) {
  58. scroller.off('refresh');
  59. scroller.on('refresh',function() {
  60. var $wrap = $(scroller.wrapper),
  61. $pullupLabel = $wrap.find('.pullUpLabel');
  62. if(!list || !list.length) {
  63. $pullupLabel.text('没有更多');
  64. } else {
  65. $pullupLabel.text('上拉加载更多');
  66. }
  67. });
  68. }
  69. function parseToHtml(eventData) {
  70. var sortedEvents = _.sortBy(eventData.data,function(event) {
  71. return -Date.parse(event.eventDate)
  72. });
  73. var groupEvents = _.groupBy(sortedEvents,function(event) {
  74. return getYear(event.eventDate)
  75. });
  76. var years = _.chain(groupEvents).keys().sortBy(function(year) {
  77. return -year;
  78. }).value();
  79. _.each(years,function(year) {
  80. var yearHtml = '', html = '';
  81. if(!hasGroup(year)) {
  82. yearHtml = '<li class="record-year c-909090" data-year="'+year+'">'+year+'</li>'
  83. }
  84. html = template('li_tmpl', {list: groupEvents[year]});
  85. $records.append(yearHtml+html);
  86. })
  87. }
  88. function toJson(o) {
  89. if(o) {
  90. return JSON.stringify(o);
  91. }
  92. return "{}";
  93. }
  94. scrollIns = new IScrollPullUpDown('wrapper',{
  95. probeType:2,
  96. bounceTime: 250,
  97. bounceEasing: 'quadratic',
  98. mouseWheel:false,
  99. scrollbars:true,
  100. fadeScrollbars:true,
  101. click: true,
  102. interactiveScrollbars:false
  103. },null,function pullUpAction() {
  104. var lastTime = $records.find('li:last').attr('data-event-date');
  105. getReqPromise('patient/archives/event/report',{page:page+1,pageSize:10},'JSON','GET')
  106. .then(function(res) {
  107. if(res.status==200) {
  108. page++;
  109. parseToHtml(res)
  110. updatePullUpText(scrollIns.myScroll,res.data);
  111. setTimeout(function() {
  112. scrollIns.myScroll.refresh();
  113. },100)
  114. }
  115. }).catch(function(e) { console && console.error(e) });
  116. });
  117. checkUserAgent();
  118. function queryInit(){
  119. page = 1;
  120. $records.empty();
  121. getReqPromise('patient/archives/event/report?timestamp='+$.now(),{page:page,pageSize:10},'JSON','GET')
  122. .then(function(res) {
  123. template.helper("getYear", getYear);
  124. template.helper("getMD", getMD);
  125. template.helper("getEventTypeClass", getEventTypeClass);
  126. template.helper("getEventTypeName", getEventTypeName);
  127. template.helper("hasGroup", hasGroup);
  128. template.helper("toJson", toJson);
  129. return res;
  130. })
  131. .then(function(res) {
  132. d.close();
  133. if(res.status == 200) {
  134. if(res.data && res.data.length) {
  135. $noResult.hide();
  136. $content.show();
  137. parseToHtml(res);
  138. return true;
  139. } else {
  140. $content.hide();
  141. $noResult.show();
  142. return false;
  143. }
  144. } else {
  145. d.close();
  146. dialog({contentType:'tipsbox',bottom:true, skin:'bk-popup' , content:res.msg}).show();
  147. }
  148. })
  149. .then(function() {
  150. $records.on('click','li',function() {
  151. var data = JSON.parse($(this).attr('data-json'));
  152. if(data.dataFrom==1) {
  153. function checkSign(){
  154. d.show();
  155. var userAgent = window.localStorage.getItem(agentName);
  156. if(userAgent){
  157. var datas = {};
  158. $.ajax(server + "patient/is_sign", {
  159. data: datas,
  160. type: 'POST',
  161. dataType: 'json',
  162. beforeSend: function(request) {
  163. request.setRequestHeader("userAgent", userAgent);
  164. },
  165. error: function(res) {
  166. d.close();
  167. if(res.status == 999 || res.status == 998 || res.status == 997){
  168. loginUrl(res.status);
  169. return;
  170. }
  171. dialog({contentType:'tipsbox', skin:'bk-popup' , content:'校验失败',bottom:true}).show();
  172. },
  173. success: function(res) {
  174. d.close();
  175. if(res.status == 999 || res.status == 998 || res.status == 997){
  176. loginUrl(res.status);
  177. }
  178. else if (res.status == 200) {
  179. // -1 未签约 0 待签约 1 已签约 2待解约
  180. var is_sign = res.data;
  181. if(is_sign > 0){
  182. window.location.href = "single-profile.html?event="+data.id+'&catalog='+data.catalogCode+'&typeName='+encodeURIComponent(data.label)+"&serial="+data.serial;
  183. }else{
  184. dialog({
  185. title: '提示',
  186. content: '对不起,签约家庭医生之后才能查看健康档案!',
  187. okValue:'我要签约',
  188. ok: function (){
  189. window.location.href = "../../qygl/html/signing-doctors.html";
  190. },
  191. cancelValue: '了解签约',
  192. cancel: function () {
  193. window.location.href = "../../qygl/html/signing-share2.html";
  194. }
  195. }).showModal();
  196. }
  197. } else {
  198. dialog({contentType:'tipsbox', skin:'bk-popup' , content:res.msg,bottom:true}).show();
  199. }
  200. }
  201. });
  202. }
  203. else{
  204. dialog({contentType:'tipsbox', skin:'bk-popup' , content:'用户信息错误',bottom:true}).show();
  205. }
  206. }
  207. checkSign();
  208. } else if(data.dataFrom==2){
  209. window.location.href = "jiuzhenxiangqing.html?event="+data.id+'&catalog='+data.catalogCode+"&serial="+data.serial;
  210. }
  211. });
  212. }).catch(function(e) { console && console.error(e) });
  213. }