12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- import APIClient from '../../utils/APIClient'
- export const myInit = (that) => {
- that.setData({
- myData: {
- title: '修改资料',
- concern: '我的关注',
- wallet: '我的钱包',
- address:['北京海淀','中关村','三小'],
- playNum: 31549,
- attentionCount: 10254,
- point: 6317,
- flowerNum: 56245,
- user: {}
- }
- })
- that.toMyEdit = (e) => {
- let title = e.currentTarget.dataset.title;
- wx.navigateTo({
- url: `../user/myEdit/myEdit?title=${title}`
- });
- },
- that.toMyConcern = e => {
- let title = e.currentTarget.dataset.title;
- wx.navigateTo({
- url: `../user/myconcern/myconcern?title=${title}`
- });
- }
- that.toMyWallet = e => {
- let title = e.currentTarget.dataset.title;
- wx.navigateTo({
- url: `../user/myWallet/myWallet?title=${title}`
- });
- }
- that.userInfo = function () {
-
- const userInfo = wx.getStorageSync('user');
- console.log(userInfo);
-
-
-
-
-
-
-
-
-
- }()
- }
|