Setuplist.js 438 B

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