1234567891011121314151617181920212223242526272829303132 |
- Page({
- data: {
- },
-
- onLoad: function (options) {
- },
- register:function(){
- var user = wx.getStorageSync('user');
- var Jurisdiction = wx.getStorageSync('wx_id');
- wx.clearStorageSync();
- try {
- wx.setStorageSync('user', user)
- wx.setStorageSync('wx_id', Jurisdiction)
- } catch (e) {
- }
- wx.reLaunch({
- url: '/pages/Landpage/Land/Land' //传递登陆过手机号码
- });
- }
- })
|