This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop-wechat/components/diy/special/index.js
2021-07-16 16:37:55 +08:00

46 lines
731 B
JavaScript

const App = getApp();
Component({
options: {
addGlobalClass: true,
},
/**
* 组件的属性列表
* 用于组件自定义设置
*/
properties: {
itemIndex: String,
itemStyle: Object,
params: Object,
dataList: Object,
},
/**
* 组件的方法列表
* 更新属性和数据的方法与更新页面数据的方法类似
*/
methods: {
/**
* 跳转文章首页
*/
_onTargetIndex(e) {
wx.navigateTo({
url: '/pages/article/index'
});
},
/**
* 跳转文章详情页
*/
_onTargetDetail(e) {
wx.navigateTo({
url: '/pages/article/detail/index?article_id=' + e.detail.target.dataset.id
});
},
}
})