index.js 334 B

12345678910111213141516
  1. Component({
  2. properties: {
  3. list: {
  4. type: Array
  5. }
  6. },
  7. methods: {
  8. distribution({
  9. currentTarget
  10. }) {
  11. wx.navigateTo({
  12. url: `/packageA/publicClue/distribution?data=${JSON.stringify(currentTarget.dataset.item)}`,
  13. })
  14. }
  15. }
  16. })