my_account.js 549 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // pages/my_mobile/my_mobile.js
  2. Page({
  3. data: {
  4. mobile:''
  5. },
  6. onLoad: function (options) {
  7. this.setData({
  8. mobile: my.getStorageSync({'key':'userInfo'}).data.mobile
  9. })
  10. },
  11. onReady: function () {
  12. },
  13. onShow: function () {
  14. },
  15. onHide: function () {
  16. },
  17. onUnload: function () {
  18. },
  19. onPullDownRefresh: function () {
  20. },
  21. onReachBottom: function () {
  22. },
  23. onShareAppMessage: function () {
  24. },
  25. changeMbile:function(){
  26. my.navigateTo({
  27. url: '/pages/change_mobile/change_mobile',
  28. })
  29. }
  30. })