cart.js 533 B

123456789101112131415161718192021
  1. /**
  2. *@des 购物车模块接口
  3. *@author zhengjinyi
  4. *@date 2020/03/19 14:56:57
  5. *@param registerByPass
  6. */
  7. // 获取省市区列表
  8. const provinceList = "/personalCenter/address";
  9. // 获取邮箱验证码
  10. const getEmailCode = "/tiny-shop/v1/common/collect/create";
  11. // 获取手机验证码
  12. const getMobileCode = "/tiny-shop/v1/common/collect/delete";
  13. // 获取图形验证码
  14. const verificationCode = "/tiny-shop/v1/common/transmit/create";
  15. export {
  16. provinceList,
  17. getEmailCode,
  18. getMobileCode,
  19. verificationCode
  20. };