homePage.js 560 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // pages/homePage/homePage.js
  2. Page({
  3. data: {
  4. },
  5. onLoad(options) {
  6. },
  7. onReady() {
  8. },
  9. onShow() {
  10. },
  11. onHide() {
  12. },
  13. onUnload() {
  14. },
  15. onPullDownRefresh() {
  16. },
  17. onReachBottom() {
  18. },
  19. onShareAppMessage() {
  20. },
  21. onRmove(e){
  22. wx.showModal({
  23. title: '信息完善',
  24. content: "为校园人员使用,新用户请完善个人信息。",
  25. success(res) {},
  26. fail(res) {},
  27. showCancel: false,
  28. confirmText: "确定", //默认是“确定”
  29. })
  30. }
  31. })