my.js 474 B

1234567891011121314151617181920
  1. export const myInit = (that) => {
  2. that.setData({
  3. myData: {
  4. title: '我的',
  5. imgUrl: 'https://developers.weixin.qq.com/miniprogram/dev/image/cat/0.jpg?t=18102320',
  6. name: 'ABC',
  7. address:['北京海淀','中关村','三小'],
  8. playNum: 31549,
  9. attentionCount: 10254,
  10. point: 6317,
  11. flowerNum: 56245
  12. }
  13. })
  14. that.toAttentionMe = (e) => {
  15. wx.navigateTo({
  16. url: '../user/myEdit/myEdit'
  17. })
  18. }
  19. }