vipcart.js 210 B

1234567891011121314151617
  1. 'use strict'
  2. class VipCart {
  3. constructor(props) {
  4. }
  5. async useCart(req, res, next){
  6. res.send({
  7. status: 0,
  8. type: 'INVALID_CART',
  9. message: '无效的卡号'
  10. })
  11. }
  12. }
  13. export default new VipCart()