prescription-tabs.js 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. var request = getRequest(),
  2. tab = request.tab || 0,
  3. sessionId = request.sessionId, //续方咨询的sessionId 格式: 居民code+咨询code+咨询类型( 8 )
  4. patiCode = request.patiCode || '',
  5. patiName = request.patiName ? decodeURI(request.patiName) : '',
  6. consultCode,
  7. prescriptionCode = request.code || '',
  8. teamCode = request.teamCode || '',
  9. jwCode; //基卫那边存储的原处方的code
  10. var docInfo = window.localStorage.getItem("docInfo");
  11. docInfo = JSON.parse(docInfo);
  12. var fromTabIdx = request.fromTabIdx; // 记录前一个Tab索引,用于返回按钮
  13. var reqLinkList = []; //记录切换tab时访问的路径集合,方便返回操作时,不修改之前请求路径的参数
  14. //初始tab的链接
  15. var links = [{
  16. url: 'prescription-consulting.html?from=tab&sessionId='+sessionId,
  17. name: '咨询',
  18. class: ''
  19. },{
  20. url: 'prescription-detail.html?from=tab&code='+prescriptionCode+'&id='+teamCode,
  21. name: '续方详情',
  22. class: ''
  23. },{
  24. url: 'order-tracking.html?from=tab&code='+prescriptionCode,
  25. name: '订单跟踪',
  26. class: '',
  27. },{
  28. url: 'body-record.html?from=tab&patiCode='+patiCode,
  29. name: '体征记录',
  30. class: ''
  31. },{
  32. url: 'jianchajianyan.html?from=tab&patient='+patiCode,
  33. name: '检查检验',
  34. class: ''
  35. },{
  36. url: 'jw-prescription-list.html?from=tab&patient='+patiCode,
  37. name: '诊断/处方',
  38. class: ''
  39. },{
  40. url: 'prescription-list.html?from=tab&teamCode='+teamCode+'&patient='+patiCode,
  41. name: '历史续方',
  42. class: ''
  43. }];
  44. $(function(){
  45. setTitle(patiName+"续方咨询");
  46. if(!prescriptionCode){
  47. //没有续方的code,就从咨询中获取对应的code
  48. //这种情况下,患者的签约团队一定是医生所在的团队的id
  49. teamCode = docInfo.adminTeamCode;
  50. getPrescriptionInfo();
  51. }else{
  52. //有续方的code,通过code获得续方详情
  53. getPrescriptionInfoByCode();
  54. }
  55. })
  56. // 判断是否有体征设备
  57. function judgeDeviceFn() {
  58. var recordDevice = {patient: patiCode, page: 1, pagesize: 1};
  59. bodyRecordApis.getPatientDevice({data: recordDevice}).then(function(res){
  60. if(res.status == 200){
  61. if(res.data.length == 0){
  62. //没有绑定设备
  63. links[3].class="hidden";
  64. initPage();
  65. } else {
  66. judgeRecordFn()
  67. }
  68. }else{
  69. showWarningMsg(res.msg)
  70. }
  71. })
  72. }
  73. // 判断是否有体征记录
  74. function judgeRecordFn() {
  75. var recordData = {patient: patiCode};
  76. bodyRecordApis.getBodyRecoredLast({data: recordData}).then(function(res){
  77. if(res.status == 200){
  78. if(!res.data.xt && !res.data.xy) {
  79. links[3].class="hidden";
  80. }
  81. initPage();
  82. }else{
  83. showWarningMsg(res.msg)
  84. }
  85. })
  86. }
  87. function initPage(){
  88. links[tab].class="active";
  89. var html = template('tab_tmp', {list: links});
  90. $("#tabs").append(html);
  91. parent.document.getElementById('main').src = links[tab].url;
  92. reqLinkList.push(links[tab].url);
  93. $("#tabs").on('click', 'a', function(){
  94. var $this = $(this),
  95. $li = $this.parent();
  96. fromTabIdx = $("#tabs li.active").index();
  97. $li.siblings().removeClass("active");
  98. $li.addClass("active");
  99. tab = $this.data('index');
  100. reqLinkList.push(links[tab].url+'&from=tab&fromTabIdx='+fromTabIdx);
  101. var url = links[tab].url+'&from=tab&fromTabIdx='+fromTabIdx;
  102. // parent.document.getElementById('main').src = url;
  103. })
  104. }
  105. function toPrePrescriptionTab() {
  106. //页面返回的操作不做trigger操作
  107. var oldUrl = reqLinkList.pop();
  108. var fromTabIdx = oldUrl.split("fromTabIdx=")[1];
  109. var length = reqLinkList.length;
  110. if(length>0){
  111. //应跳转去的页面是
  112. // var url = reqLinkList[reqLinkList.length -1];
  113. if(fromTabIdx){
  114. $("#tabs li").removeClass("active");
  115. $("#tabs li").eq(fromTabIdx).addClass("active");
  116. }
  117. }
  118. history.go(-1);
  119. }
  120. top.toPrePrescriptionTab = toPrePrescriptionTab
  121. function getPrescriptionInfo(){
  122. patiCode = sessionId.split("_")[0];
  123. consultCode = sessionId.split("_")[1];
  124. var params = { consult: consultCode};
  125. consultingAPI.getPrescriptionInfo({data: params}).then(function(res){
  126. if(res.status == 200){
  127. prescriptionCode = res.data.code;
  128. jwCode = res.data.jwCode;
  129. updateLinkInfo();
  130. if(res.data.status < 50){ //支付成功前不会有订单记录
  131. links[2].class="hidden";
  132. }
  133. judgeDeviceFn();
  134. }else{
  135. showWarningMsg(res.msg);
  136. }
  137. });
  138. }
  139. function getPrescriptionInfoByCode(){
  140. var params = {
  141. code: prescriptionCode,
  142. type: docInfo.isLeader == '1' ? 1 : 2
  143. };
  144. consultingAPI.getPrescriptionInfoByCode({data: params}).then(function(res){
  145. if(res.status == 200){
  146. patiCode = res.data.patient.code;
  147. jwCode = res.data.prescription.jwCode;
  148. consultCode = res.data.prescription.consult;
  149. sessionId = patiCode + '_' + consultCode+'_8';
  150. updateLinkInfo();
  151. //如果不是该续方所在团队的团队长,则不可以显示咨询tab
  152. if(res.data.prescription.doctor != docInfo.code){
  153. links[0].class="hidden";
  154. }
  155. if(res.data.prescription.status < 50){ //支付成功前不会有订单记录
  156. links[2].class="hidden";
  157. }
  158. judgeDeviceFn();
  159. }else{
  160. showWarningMsg(res.msg);
  161. }
  162. });
  163. }
  164. function updateLinkInfo(){
  165. links = [{
  166. url: 'prescription-consulting.html?from=tab&sessionId='+sessionId,
  167. name: '咨询',
  168. class: ''
  169. },{
  170. url: 'prescription-detail.html?from=tab&code='+prescriptionCode+'&id='+teamCode,
  171. name: '续方详情',
  172. class: ''
  173. },{
  174. url: 'order-tracking.html?from=tab&code='+prescriptionCode,
  175. name: '订单跟踪',
  176. class: '',
  177. },{
  178. url: 'body-record.html?from=tab&patiCode='+patiCode,
  179. name: '体征记录',
  180. class: ''
  181. },{
  182. url: 'jianchajianyan.html?from=tab&patient='+patiCode,
  183. name: '检查检验',
  184. class: ''
  185. },{
  186. url: 'jw-prescription-list.html?from=tab&patient='+patiCode,
  187. name: '诊断/处方',
  188. class: ''
  189. },{
  190. url: 'prescription-list.html?from=tab&teamCode='+teamCode+'&patient='+patiCode,
  191. name: '历史续方',
  192. class: ''
  193. }];
  194. }