my.js 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. // pages/my/my.js
  2. import { getAccountNmber, appointmentList } from '../../api/appointment'
  3. import { documentList } from "../../api/document"
  4. import { appGetConfigImg } from '../../api/index'
  5. const app = getApp()
  6. Page({
  7. /**
  8. * 页面的初始数据
  9. */
  10. data: {
  11. appHeadImg: '',
  12. appUserName: '',
  13. count: 0,
  14. isFirstGetCount: true, // 是否为第一次获取检测机会的次数
  15. gridList: [
  16. {
  17. id: 0,
  18. title: '我的地址',
  19. url: '/pages/address/address?form=my&back=0',
  20. imgUrl: '../../imaes/dizhi@2x.png'
  21. },
  22. {
  23. id: 1,
  24. title: '我的档案',
  25. url: '/pages/myFile/myFile?form=my',
  26. imgUrl: '../../imaes/dangan@2x.png'
  27. },
  28. {
  29. id: 2,
  30. title: '我的预约',
  31. url: '/pages/myAppointment/myAppointment?form=my',
  32. imgUrl: '../../imaes/yuyue@2x.png'
  33. },
  34. {
  35. id: 7,
  36. title: '实体卡兑换',
  37. url: '/pages/exchange/exchange?form=my',
  38. imgUrl: '../../imaes/chongzhi.png'
  39. },
  40. {
  41. id: 3,
  42. title: '我的记录',
  43. url: '/pages/myRecord/myRecord?form=my',
  44. imgUrl: '../../imaes/jilu@2x.png'
  45. },
  46. {
  47. id: 4,
  48. title: '我的报告',
  49. url: '/pages/report/report?form=my',
  50. imgUrl: '../../imaes/baogao2@2x.png'
  51. },
  52. /* {
  53. id: 5,
  54. title: '开通区域',
  55. url: '/pages/openArea/openArea?form=my',
  56. imgUrl: '../../imaes/quyu@2x.png'
  57. }, */
  58. {
  59. id: 7,
  60. title: '设置',
  61. url: '/pages/set/set?form=my',
  62. imgUrl: '../../imaes/shezhi@2x.png'
  63. },
  64. /* {
  65. id: 7,
  66. title: '测试页面',
  67. url: '/pages/aatest/test',
  68. imgUrl: '../../imaes/shezhi@2x.png'
  69. } */
  70. ],
  71. imageList: []
  72. },
  73. onShow () {
  74. if (!this.data.isFirstGetCount) {
  75. this.getAccountNmberFn()
  76. this.appointmentListFn()
  77. this.getAppGetConfigImg()
  78. }
  79. },
  80. /**
  81. * 生命周期函数--监听页面加载
  82. * 调用login接口,判断是否需要绑定手机号和头像昵称
  83. */
  84. onLoad(options) {
  85. app.globalData.selectedInex = 2
  86. wx.setStorageSync('selectedInex', 2)
  87. var headImg = wx.getStorageSync('headImg')
  88. var userName = wx.getStorageSync('userName')
  89. this.setData({
  90. appHeadImg: headImg,
  91. appUserName: userName
  92. })
  93. this.getAccountNmberFn()
  94. this.appointmentListFn()
  95. this.getAppGetConfigImg()
  96. },
  97. getAppGetConfigImg() {
  98. const that = this
  99. wx.showNavigationBarLoading()
  100. // 类型 【1.关于我的 2.用户协议 3.我的 4.实体卡兑换说明 】
  101. appGetConfigImg({
  102. 'imgType': '3'
  103. }).then(configRes => {
  104. wx.hideNavigationBarLoading()
  105. console.log(configRes, 'configRes my')
  106. that.setData({
  107. imageList: configRes.data || []
  108. })
  109. })
  110. },
  111. // 获取用户档案信息
  112. getDocumentList () {
  113. var that = this
  114. wx.showLoading({
  115. title: '加载中...',
  116. mask: true
  117. })
  118. documentList({
  119. currentPage: 1
  120. }).then(res => {
  121. wx.hideLoading()
  122. const response = res.data.vos || []
  123. if (response.length == 0) {
  124. wx.showModal({
  125. content: '预约用户前需要先添加检测人员信息',
  126. cancelColor: '#666',
  127. confirmColor: '#333',
  128. success (res) {
  129. if (res.confirm) {
  130. wx.navigateTo({
  131. url: '/pages/createFile/createFile?from=index'
  132. })
  133. }
  134. }
  135. })
  136. } else {
  137. that.authNavTo('/pages/appointment/appointment')
  138. }
  139. }).catch(e => {
  140. wx.hideLoading()
  141. wx.showModal({
  142. content: e,
  143. confirmColor: '#333',
  144. showCancel: false
  145. })
  146. })
  147. },
  148. // 获取用户预约信息
  149. appointmentListFn () {
  150. wx.showNavigationBarLoading()
  151. appointmentList({
  152. status: 1,
  153. currentPage: 1
  154. }).then(res => {
  155. wx.hideNavigationBarLoading()
  156. if (res.data.vos.length !== 0) {
  157. app.globalData.hasAppointment = true
  158. } else {
  159. app.globalData.hasAppointment = false
  160. }
  161. }).catch(e => {
  162. wx.hideNavigationBarLoading()
  163. })
  164. },
  165. // 获取用户剩余检测机会
  166. getAccountNmberFn () {
  167. var that = this
  168. wx.showNavigationBarLoading()
  169. getAccountNmber({}).then(res => {
  170. wx.hideNavigationBarLoading()
  171. that.setData({
  172. count: res.data,
  173. isFirstGetCount: false
  174. })
  175. app.globalData.useNumber = res.data
  176. }).catch(e => {
  177. wx.hideNavigationBarLoading()
  178. })
  179. },
  180. // 路由跳转
  181. handleNavTo (e) {
  182. var url = e.currentTarget.dataset.url
  183. this.authNavTo(url)
  184. },
  185. // 去充值
  186. handleCharge () {
  187. this.authNavTo('/pages/buy/buy?from=my')
  188. },
  189. // 立即预约
  190. handleAppoint () {
  191. if (app.globalData.hasAppointment) {
  192. wx.showModal({
  193. content: '您预约的健康筛查还未体验,请先体验',
  194. cancelColor: '#666',
  195. cancelText: '取消',
  196. confirmText: '我的预约',
  197. confirmColor: '#333',
  198. success (res) {
  199. if (res.confirm) {
  200. wx.navigateTo({
  201. url: '/pages/myAppointment/myAppointment',
  202. })
  203. }
  204. }
  205. })
  206. } else {
  207. this.getDocumentList()
  208. }
  209. },
  210. /**
  211. * 路由拦截
  212. * **/
  213. authNavTo (url) {
  214. if (url.indexOf('/report') !== -1) {
  215. app.globalData.selectedInex = 1
  216. wx.setStorageSync('selectedInex', 1)
  217. wx.switchTab({
  218. url: url,
  219. })
  220. } else {
  221. wx.navigateTo({
  222. url: url,
  223. })
  224. }
  225. }
  226. })