index.js 417 B

1234567891011121314151617181920212223
  1. // packageA/contacts/modules/list/index.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. phonebook: Array
  8. },
  9. data: {
  10. },
  11. methods: {
  12. toDetails(e) {
  13. const {
  14. item
  15. } = e.currentTarget.dataset;
  16. wx.navigateTo({
  17. url: './details?item=' + JSON.stringify(item),
  18. });
  19. },
  20. }
  21. })