yuminge-app/yun-min-program-plugin-master/packageA/member/supplier/component/activity/activity.js

34 lines
525 B
JavaScript

// packageA/member/supplier/component/activity/activity.js
// const app = getApp();
Component({
/**
* 组件的属性列表
*/
properties: {
arr: {
type: null
},
showMask: {
type: Boolean
}
},
/**
* 组件的初始数据
*/
data: {
},
/**
* 组件的方法列表
*/
methods: {
goToDetail(e) {
let id = e.currentTarget.dataset.id;
wx.navigateTo({
url: '/packageA/detail_v2/detail_v2?id=' + id
});
},
}
});