mall-gateway.js 925 B

1234567891011121314151617181920212223242526
  1. /**
  2. *├── mall-gateway.js ← 统一入口(只做 re-export,一行一个)
  3. ├── gateway/
  4. │ ├── product.js ← 商品相关(16个函数)
  5. │ ├── shop.js ← 店铺相关(9个函数)
  6. │ ├── address.js ← 地址相关(3个函数)
  7. │ ├── order.js ← 订单相关(10个函数)
  8. │ └── refund.js ← 退款相关(8个函数)
  9. │ └── coupon.js ← 优惠券相关(5个函数)
  10. │ └── money.js ← 钱包/支付相关(18个函数)
  11. * */
  12. // 商品
  13. export * from './gateway/product'
  14. // 店铺
  15. export * from './gateway/shop'
  16. // 地址
  17. export * from './gateway/address'
  18. // 订单
  19. export * from './gateway/order'
  20. // 退款
  21. export * from './gateway/refund'
  22. // 优惠券
  23. export * from './gateway/coupon'
  24. // 钱包/支付
  25. export * from './gateway/money'