index.js 358 B

1234567891011121314151617181920
  1. const app = getApp();
  2. Page({
  3. /**
  4. * 生命周期函数--监听页面加载
  5. */
  6. onLoad: async function (options) {
  7. wx.setNavigationBarTitle({
  8. title: '防疫须知'
  9. });
  10. },
  11. /**
  12. * 打开邀请函页面
  13. */
  14. openLetter: function() {
  15. wx.redirectTo({
  16. url: '/pages/invitation/letter/index?pageCode=protocol',
  17. });
  18. }
  19. })