12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- // pages/my_mobile/my_mobile.js
- Page({
- data: {
- mobile:''
- },
- onLoad: function (options) {
- this.setData({
- mobile: my.getStorageSync({'key':'userInfo'}).data.mobile
- })
- },
- onReady: function () {
- },
- onShow: function () {
- },
- onHide: function () {
- },
- onUnload: function () {
- },
- onPullDownRefresh: function () {
- },
- onReachBottom: function () {
- },
- onShareAppMessage: function () {
- },
- changeMbile:function(){
- my.navigateTo({
- url: '/pages/change_mobile/change_mobile',
- })
- }
- })
|