self_mall_xcx/pages/coupon/components/floating-button/index.js
2023-05-30 20:21:16 +08:00

18 lines
212 B
JavaScript

Component({
data: { icon: 'cart' },
properties: {
count: {
type: Number,
},
},
methods: {
goToCart() {
wx.switchTab({
url: '/pages/cart/index',
});
},
},
});