register.ts 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. // pages/protocol/register.ts
  2. // 获取应用实例
  3. const app = getApp<IAppOption>()
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. src: app.globalData.baseUrl + '/classroom-app/#/preview-protocol?wx=1'
  10. },
  11. /**
  12. * 生命周期函数--监听页面加载
  13. */
  14. onLoad(options: any) {
  15. // console.log(options)
  16. if(options.type) {
  17. if(options.type === "privacy") {
  18. this.setData({
  19. src: app.globalData.baseUrl + '/classroom-app/#/privacy-protocol?wx=1'
  20. })
  21. } else if(options.type === "register") {
  22. this.setData({
  23. src: app.globalData.baseUrl + '/classroom-app/#/preview-protocol?wx=1'
  24. })
  25. } else if(options.type == 'activation') {
  26. this.setData({
  27. src: app.globalData.baseUrl + '/classroom-app/?random='+ Math.random() +'#/activationRegister?wx=wx_lite&code=' + options.code
  28. })
  29. }
  30. }
  31. },
  32. /**
  33. * 生命周期函数--监听页面初次渲染完成
  34. */
  35. onReady() {
  36. },
  37. /**
  38. * 生命周期函数--监听页面显示
  39. */
  40. onShow() {
  41. },
  42. /**
  43. * 生命周期函数--监听页面隐藏
  44. */
  45. onHide() {
  46. },
  47. /**
  48. * 生命周期函数--监听页面卸载
  49. */
  50. onUnload() {
  51. },
  52. /**
  53. * 页面相关事件处理函数--监听用户下拉动作
  54. */
  55. onPullDownRefresh() {
  56. },
  57. /**
  58. * 页面上拉触底事件的处理函数
  59. */
  60. onReachBottom() {
  61. },
  62. /**
  63. * 用户点击右上角分享
  64. */
  65. onShareAppMessage() {
  66. return {
  67. title: '器乐数字AI工具',
  68. path: '/pages/index/index',
  69. imageUrl: 'https://oss.dayaedu.com/ktyq/1733312164991.png'
  70. }
  71. }
  72. })