123456789101112131415161718192021 |
- /**
- *@des 购物车模块接口
- *@author zhengjinyi
- *@date 2020/03/19 14:56:57
- *@param registerByPass
- */
- // 获取省市区列表
- const provinceList = "/personalCenter/address";
- // 获取邮箱验证码
- const getEmailCode = "/tiny-shop/v1/common/collect/create";
- // 获取手机验证码
- const getMobileCode = "/tiny-shop/v1/common/collect/delete";
- // 获取图形验证码
- const verificationCode = "/tiny-shop/v1/common/transmit/create";
- export {
- provinceList,
- getEmailCode,
- getMobileCode,
- verificationCode
- };
|