1234567891011121314151617181920212223 |
- // lionfish_comshop/components/fixed-cart/index.js
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- cartNum: {
- type: Number,
- default: 0
- }
- },
- /**
- * 组件的方法列表
- */
- methods: {
- goCart: function() {
- wx.switchTab({
- url: '/lionfish_comshop/pages/order/shopCart',
- })
- }
- }
- })
|