index.js 238 B

123456789101112131415
  1. const app = getApp();
  2. Page({
  3. pid: '',
  4. onLoad: function (options) {
  5. this.pid = options.id;
  6. },
  7. /**
  8. * 跳转海报分享页面,分享海报
  9. */
  10. toShare: function(){
  11. app.redirect('poster/index?id=' + this.pid);
  12. }
  13. })