1234567891011121314151617181920212223 |
- // packageA/contacts/modules/list/index.js
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- phonebook: Array
- },
- data: {
- },
- methods: {
- toDetails(e) {
- const {
- item
- } = e.currentTarget.dataset;
- wx.navigateTo({
- url: './details?item=' + JSON.stringify(item),
- });
- },
- }
- })
|