my.js 399 B

12345678910111213141516
  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. //请求数据封装
  15. }