email.js 179 B

1234567891011
  1. const app = getApp();
  2. Page({
  3. data: {
  4. email:'',
  5. userId:''
  6. },
  7. onLoad: function (options) {
  8. const {email,userId} = options;
  9. this.setData({email,userId})
  10. },
  11. })