123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- import APIClient from '../../utils/APIClient';
- const app = getApp();
- export const myInit = (that) => {
- that.setData({
- myData: {
- title: '修改资料',
- concern: '我的关注',
- course: '我的课程',
- read: '我的朗读',
- keep: '我的收藏',
- collage: '我的拼团',
- wallet: '我的钱包',
- schoolCity: '',
- schoolName: '',
- user: {},
- isIOS: app.globalData.isIOS
- }
- });
- that.getUserWorksInfo();
- 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.toMyCourse = e => {
- let title = e.currentTarget.dataset.title;
- wx.navigateTo({
- url: `../user/mycourse/mycourse?title=${title}`
- });
- },
- that.toMyRead = e => {
- let title = e.currentTarget.dataset.title;
- wx.navigateTo({
- url: `../user/myread/myread?title=${title}`
- });
- },
- that.toMyKeep = e => {
- let title = e.currentTarget.dataset.title;
- wx.navigateTo({
- url: `../user/mycollection/mycollection?title=${title}`
- });
- },
- that.toMyCollage = e => {
- let title = e.currentTarget.dataset.title;
- wx.navigateTo({
- url: `../../pages/groupPage/my-group/my-group?title=${title}`
- });
- }
-
- }
|