concern-message.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. var lastId = 0,selt
  2. pageSize = 10;
  3. mui.plusReady(function(){
  4. self = plus.webview.currentWebview();
  5. getMessageList(true);
  6. bindEvents();
  7. initScroller();
  8. });
  9. function getMessageList(isInit){
  10. plus.nativeUI.showWaiting();
  11. if(isInit){
  12. lastId = 0;
  13. }
  14. var url = "doctor/family_contract/messages",
  15. params = {
  16. id: lastId,
  17. pagesize: pageSize
  18. };
  19. sendGet(url, params, null, function(res){
  20. if(res.status == 200){
  21. var list = res.list;
  22. if(list.length > 0){
  23. var html = template("message-tmp", {list: list});
  24. lastId = list[list.length-1].id;
  25. if(isInit){
  26. $("#messageList").empty().append(html);
  27. }else{
  28. $("#messageList").append(html);
  29. }
  30. if(list.length < pageSize){
  31. mui(".mui-scroll-wrapper").pullRefresh().endPullupToRefresh(true);
  32. }else{
  33. mui(".mui-scroll-wrapper").pullRefresh().endPullupToRefresh(false);
  34. }
  35. }else{
  36. if(isInit && list.length < pageSize){
  37. $(document.getElementById("messageList")).html("").hide();
  38. $("#wushuju").show();
  39. }else{
  40. mui(".mui-scroll-wrapper").pullRefresh().endPullupToRefresh(true);
  41. }
  42. }
  43. }else{
  44. mui.toast(res.msg);
  45. }
  46. plus.nativeUI.closeWaiting();
  47. }, true)
  48. }
  49. function bindEvents(){
  50. $("#messageList").on('tap', ".c-list", function(){
  51. var obj = $(this).data("json");
  52. openWebview("concern-info.html",{
  53. msgId: obj.id,
  54. concernCode: obj.concernCode
  55. });
  56. });
  57. template.helper("getJsonString", function(obj){
  58. if(obj){
  59. return JSON.stringify(obj);
  60. }else{
  61. return "";
  62. }
  63. });
  64. window.addEventListener("refreshMessage", function(){
  65. getMessageList(true);
  66. })
  67. }
  68. function initScroller(){
  69. //阻尼系数
  70. var deceleration = mui.os.ios?0.003:0.0009;
  71. mui('.mui-scroll-wrapper').scroll({
  72. bounce: false,
  73. indicators: true, //是否显示滚动条
  74. deceleration:deceleration
  75. });
  76. mui(".mui-scroll-wrapper").pullRefresh({
  77. down: {
  78. callback: function() {
  79. var self = this;
  80. getMessageList(true);
  81. self.endPulldownToRefresh();
  82. }
  83. },
  84. up:{
  85. callback: function(){
  86. var self = this;
  87. setTimeout(function(){
  88. getMessageList(false);
  89. }, 300)
  90. }
  91. }
  92. });
  93. }