huanzhe.js 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. // TODO 临时构造plus对象,使得能够在浏览器中进行调试
  2. // var plus = null;
  3. // 基本信息(包括userAgent、上个页面传递的数据)
  4. var baseInfo = null,
  5. // 基础环境信息(包括当前webview)
  6. baseEnv = null;
  7. var $patientListWrapper = $('#patient_list_wrap'),
  8. $patientList = $('#pati_list'),
  9. // 搜索输入框
  10. $searchbarInput = $('.searchbar .search-input'),
  11. // 搜索无结果时显示
  12. $noResultWrap = $('#no_result_wrap'),
  13. patientInfo = null;
  14. // 分页查询当前页数
  15. var curPage = 0,
  16. pageSize = 15,
  17. myScroll = null,
  18. hasMore = true;
  19. // 获取基本信息(包括userAgent、上个页面传递的数据)
  20. var getBaseInfoPromise = function() {
  21. // 登录的相关信息
  22. var userAgent = plus && JSON.parse(plus.storage.getItem("userAgent"))
  23. return {
  24. userAgent: userAgent
  25. }
  26. },
  27. // 获取基础环境信息
  28. getBaseEnvPromise = function () {
  29. var env = {
  30. webview: plus&&plus.webview.currentWebview()
  31. };
  32. return Promise.resolve().then(function(res) {
  33. return env;
  34. });
  35. },
  36. // 分页查询列表
  37. searchByPaging = function (isRefresh) {
  38. curPage = isRefresh ? 0 : curPage+1;
  39. var url = "/doctor/concern/getConcernPatients",
  40. params = { page:curPage,pageSize:pageSize};
  41. getReqPromise(url,params,'GET').then(function(res){
  42. var data = res.data;
  43. if(!data || !data.length) {
  44. $patientListWrapper.hide();
  45. $noResultWrap.show();
  46. } else {
  47. $noResultWrap.hide();
  48. $patientListWrapper.show();
  49. }
  50. data = _.map(data,function(item){
  51. item.photo = getImgUrl(item.photo);
  52. return item;
  53. })
  54. if(isRefresh){
  55. myScroll.refresh(true);
  56. $patientList.empty().append(template("pati_list_tmpl", {list: data}));
  57. }else{
  58. $patientList.append(template('pati_list_tmpl', {list: data}));
  59. }
  60. if(data.length < pageSize){
  61. hasMore = false;
  62. myScroll.endPullUpToRefresh(!hasMore);
  63. $(".mui-pull-bottom-tips").hide();
  64. }else{
  65. hasMore = true;
  66. $(".mui-pull-bottom-tips").show()
  67. }
  68. }).catch(function(e) {
  69. console && console.error(e)
  70. });
  71. },
  72. // 滚动条分页实例初始化
  73. initScroller = function() {
  74. //阻尼系数
  75. var deceleration = mui.os.ios?0.003:0.0009;
  76. mui('.mui-scroll-wrapper').scroll({
  77. bounce: false,
  78. indicators: true, //是否显示滚动条
  79. deceleration:deceleration
  80. });
  81. myScroll = mui(".mui-scroll").pullToRefresh({
  82. up: {
  83. callback: function(){
  84. var self = this;
  85. setTimeout(function() {
  86. searchByPaging();
  87. self.endPullUpToRefresh(!hasMore);
  88. }, 1000);
  89. }
  90. },
  91. down: {
  92. callback: function() {
  93. var self = this;
  94. setTimeout(function() {
  95. searchByPaging(true);
  96. self.endPullDownToRefresh();
  97. }, 1000);
  98. }
  99. }
  100. });
  101. },
  102. // 绑定页面事件
  103. bindEvents = function () {
  104. $patientList.on('tap','li[data-patient-code]',function(e) {
  105. var code = $(this).attr("data-patient-code");
  106. var mobile = $(this).attr("data-patient-phone");
  107. var address = $(this).attr("data-patient-address");
  108. if(baseEnv.webview.origin=="suifang") {//“随访”功能
  109. if(baseEnv.webview.follow_type == 1){
  110. openWebview("../../suifang/html/add_plan.html",{patientInfo: {code:code,mobile:mobile,address:address},chooseDate:baseEnv.webview.chooseDate});
  111. return false;
  112. }
  113. if(baseEnv.webview.follow_type == 2){
  114. openWebview("../../suifang/html/follow_way.html",{patientInfo: {code:code,mobile:mobile,address:address}});
  115. return false;
  116. }
  117. }else{
  118. openWebview("../../huanzhe/html/huanzhexinxi.html",{
  119. patiCode: code
  120. });
  121. }
  122. return false;
  123. })
  124. $searchbarInput.on('tap',function() {
  125. mui.openWindow({
  126. id: "searchhuanzhe2",
  127. url: "../../huanzhe/html/searchhuanzhe.html",
  128. extras: {}
  129. })
  130. });
  131. /*刷新事件*/
  132. // window.addEventListener("refresh", function group(e) {
  133. // searchByPaging(true);
  134. // });
  135. };
  136. // 页面业务处理流程开始
  137. new Promise(function(resolve, reject) {
  138. // TODO 临时放开
  139. //resolve(true);
  140. mui.plusReady(function() {
  141. // plus已经准备好,可以往下执行
  142. resolve(true);
  143. });
  144. }).then(function() {
  145. // 获取基础环境信息
  146. return getBaseEnvPromise().then(function(env) {
  147. baseEnv = env;
  148. }).then(function() {
  149. // 获取登录医生信息
  150. baseInfo = getBaseInfoPromise();
  151. initScroller();
  152. searchByPaging(true);
  153. // 绑定页面事件
  154. bindEvents();
  155. if(baseEnv.webview.origin){//“随访”功能,需要返回按钮
  156. $(".mui-action-back").show();
  157. }
  158. })
  159. }).catch(function(e) {
  160. plus.nativeUI.closeWaiting();
  161. console && console.error(e);
  162. });
  163. function setAge(age) {
  164. if(age == 0) {
  165. return "<1";
  166. }
  167. if(age == -1)
  168. return "未知";
  169. return age;
  170. }
  171. template.helper("setAge", setAge);
  172. function setSex(s) {
  173. if(s == 1) {
  174. return "男";
  175. } else if(s == 2) {
  176. return "女";
  177. }
  178. }
  179. template.helper("setSex", setSex);