index.js 335 B

123456789101112131415161718192021222324
  1. // pages/activityDet/index.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. },
  8. /**
  9. * 生命周期函数--监听页面加载
  10. */
  11. onLoad(options) {
  12. },
  13. jumpGreeing(){
  14. },
  15. jumpMyGreeing(){
  16. wx.navigateTo({
  17. url: '/pages/greeting/index',
  18. })
  19. },
  20. })