index.js 357 B

1234567891011121314151617181920212223
  1. // lionfish_comshop/components/fixed-cart/index.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. cartNum: {
  8. type: Number,
  9. default: 0
  10. }
  11. },
  12. /**
  13. * 组件的方法列表
  14. */
  15. methods: {
  16. goCart: function() {
  17. wx.switchTab({
  18. url: '/lionfish_comshop/pages/order/shopCart',
  19. })
  20. }
  21. }
  22. })