health-record.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /**
  2. * 健康记录添加失败处理方法
  3. */
  4. function addHealthRecordFailed(res) {
  5. if (res && res.msg) {
  6. dialog({contentType:'tipsbox', skin:'bk-popup' , content:res.msg}).show();
  7. } else {
  8. dialog({contentType:'tipsbox', skin:'bk-popup' , content:'添加失败'}).show();
  9. }
  10. }
  11. /**
  12. * 运动添加成功处理方法
  13. */
  14. function addSportSuccess(res) {
  15. if (res.status == 200) {
  16. window.history.back();
  17. } else {
  18. //非200则为失败
  19. addHealthRecordFailed(res);
  20. }
  21. }
  22. /**
  23. * 用药添加成功处理方法
  24. */
  25. function addDrugSuccess(res) {
  26. if (res.status == 200) {
  27. window.history.back();
  28. } else {
  29. //非200则为失败
  30. addHealthRecordFailed(res);
  31. }
  32. }
  33. /**
  34. * 饮食添加成功处理方法
  35. */
  36. function addDietSuccess(res) {
  37. if (res.status == 200) {
  38. //添加成功
  39. window.history.back();
  40. } else {
  41. //非200则为失败
  42. addHealthRecordFailed(res);
  43. }
  44. }
  45. /////////////////////////////////////////////////////////////////////////////////健康指标历史记录查询///////////////////////////////////////////////////////////////////////////
  46. /**
  47. * 健康指标历史记录查询
  48. * @param {Object} type 健康指标类型(1血糖,2血压,3体重,4腰围)
  49. * @param {Object} page 当前分页
  50. * @param {Object} pagesize 分页大小
  51. */
  52. /**
  53. * 健康指标历史记录查询失败处理方法
  54. */
  55. function queryListFailed(res) {
  56. if (res && res.msg) {
  57. dialog({contentType:'tipsbox', skin:'bk-popup' , content:res.msg}).show();
  58. } else {
  59. dialog({contentType:'tipsbox', skin:'bk-popup' , content:'加载失败'}).show();
  60. }
  61. }