| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // components/goodList/index.js
- Component({
- properties: {
- status: {
- type: String,
- value: 0,
- },
- bastList: {
- type: Object,
- value: [],
- }
- },
- data: {},
-
- methods: {
- /**
- * 商品详情跳转
- */
- goDetail: function (e) {
- let item = e.currentTarget.dataset.items
- if (item.activity && item.activity.type === "1") {
- wx.navigateTo({
- url: `/pages/activity/goods_seckill_details/index?id=${item.activity.id}&time=${item.activity.time}&status=1`
- });
- } else if (item.activity && item.activity.type === "2") {
- wx.navigateTo({
- url: `/pages/activity/goods_bargain_details/index?id=${item.activity.id}`
- });
- } else if (item.activity && item.activity.type === "3") {
- wx.navigateTo({
- url: `/pages/activity/goods_combination_details/index?id=${item.activity.id}`
- });
- } else {
- wx.navigateTo({
- url: `/pages/goods_details/index?id=${item.id}`
- });
- }
- },
- }
- })
|