Setuplist.js 340 B

123456789101112131415161718192021222324252627282930
  1. Page({
  2. data: {
  3. },
  4. onLoad: function (options) {
  5. },
  6. register:function(){
  7. var user = wx.getStorageSync('user');
  8. wx.clearStorageSync();
  9. try {
  10. wx.setStorageSync('user', user)
  11. } catch (e) {
  12. }
  13. wx.reLaunch({
  14. url: '/pages/Landpage/Land/Land' //传递登陆过手机号码
  15. });
  16. }
  17. })