report.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. // pages/report/report.js
  2. import { myReportList } from '../../api/my'
  3. import { documentList } from "../../api/document"
  4. import { appointmentList } from '../../api/appointment'
  5. const app = getApp()
  6. Page({
  7. /**
  8. * 页面的初始数据
  9. */
  10. data: {
  11. reportList: [],
  12. showPage: true
  13. },
  14. /**
  15. * 生命周期函数--监听页面显示
  16. */
  17. onShow() {
  18. app.globalData.selectedInex = 1
  19. wx.setStorageSync('selectedInex', 1)
  20. console.log(app.globalData.hasAppointment);
  21. this.getMyReportList()
  22. this.appointmentListFn()
  23. },
  24. appointmentListFn () {
  25. appointmentList({
  26. status: 1,
  27. currentPage: 1
  28. }).then(res => {
  29. if (res.data.vos.length !== 0) {
  30. app.globalData.hasAppointment = true
  31. } else {
  32. app.globalData.hasAppointment = false
  33. }
  34. })
  35. },
  36. // 我的报告
  37. getMyReportList () {
  38. var that = this
  39. wx.showLoading({
  40. title: '加载中...',
  41. mask: true
  42. })
  43. myReportList({}).then(res => {
  44. wx.hideLoading()
  45. var response = res.data || []
  46. that.setData({
  47. reportList: response
  48. })
  49. }).catch(e => {
  50. wx.hideLoading()
  51. wx.showModal({
  52. content: e,
  53. confirmColor: '#333',
  54. showCancel: false
  55. })
  56. })
  57. },
  58. /**
  59. * 立即预约
  60. */
  61. handleAppoint() {
  62. if (app.globalData.useNumber == 0) {
  63. wx.showModal({
  64. content: '您当前的检测次数为0,先充值次数',
  65. cancelColor: '#666',
  66. cancelText: '卡激活',
  67. confirmText: '去充值',
  68. confirmColor: '#333',
  69. success (res) {
  70. if (res.confirm) {
  71. wx.navigateTo({
  72. url: '/pages/buy/buy?from=appointment',
  73. })
  74. } else if (res.cancel) {
  75. wx.navigateTo({
  76. url: '/pages/exchange/exchange',
  77. })
  78. }
  79. }
  80. })
  81. } else {
  82. if (app.globalData.hasAppointment) {
  83. wx.showModal({
  84. content: '您预约的健康筛查还未体验,请先体验',
  85. cancelColor: '#666',
  86. cancelText: '取消',
  87. confirmText: '我的预约',
  88. confirmColor: '#333',
  89. success (res) {
  90. if (res.confirm) {
  91. wx.navigateTo({
  92. url: '/pages/myAppointment/myAppointment',
  93. })
  94. }
  95. }
  96. })
  97. } else {
  98. this.getDocumentList()
  99. }
  100. }
  101. },
  102. /**
  103. * 点击报告进入详情
  104. */
  105. handleDetail(e) {
  106. var reportId = e.currentTarget.dataset.reportid
  107. var realName = e.currentTarget.dataset.realname
  108. var addTime = e.currentTarget.dataset.addtime
  109. wx.navigateTo({
  110. url: '/pages/reportDetail/reportDetail?reportid=' + reportId + '&realName=' + realName + '&addTime=' + addTime
  111. })
  112. },
  113. // 获取用户档案信息
  114. getDocumentList () {
  115. var that = this
  116. wx.showLoading({
  117. title: '加载中...',
  118. mask: true
  119. })
  120. documentList({
  121. currentPage: 1
  122. }).then(res => {
  123. wx.hideLoading()
  124. const response = res.data.vos || []
  125. if (response.length == 0) {
  126. wx.showModal({
  127. content: '预约用户前需要先添加检测人员信息',
  128. cancelColor: '#666',
  129. confirmColor: '#333',
  130. success (res) {
  131. if (res.confirm) {
  132. wx.navigateTo({
  133. url: '/pages/createFile/createFile?from=index'
  134. })
  135. }
  136. }
  137. })
  138. } else {
  139. wx.navigateTo({
  140. url: '/pages/appointment/appointment',
  141. })
  142. }
  143. }).catch(e => {
  144. wx.hideLoading()
  145. wx.showModal({
  146. content: e,
  147. confirmColor: '#333',
  148. showCancel: false
  149. })
  150. })
  151. }
  152. })