| 1234567891011121314151617181920212223242526 |
- /**
- *├── mall-gateway.js ← 统一入口(只做 re-export,一行一个)
- ├── gateway/
- │ ├── product.js ← 商品相关(16个函数)
- │ ├── shop.js ← 店铺相关(9个函数)
- │ ├── address.js ← 地址相关(3个函数)
- │ ├── order.js ← 订单相关(10个函数)
- │ └── refund.js ← 退款相关(8个函数)
- │ └── coupon.js ← 优惠券相关(5个函数)
- │ └── money.js ← 钱包/支付相关(18个函数)
- * */
- // 商品
- export * from './gateway/product'
- // 店铺
- export * from './gateway/shop'
- // 地址
- export * from './gateway/address'
- // 订单
- export * from './gateway/order'
- // 退款
- export * from './gateway/refund'
- // 优惠券
- export * from './gateway/coupon'
- // 钱包/支付
- export * from './gateway/money'
|