...
|
...
|
@@ -64,11 +64,11 @@ router.post('/autouserinfo/relateMobile', bind.relateMobile); |
|
|
* 注册页面路由
|
|
|
*/
|
|
|
router.get('/reg', reg.index);
|
|
|
router.post('/reg/checkmobile', reg.checkMobileMiddleware, reg.checkMobile);
|
|
|
router.post('/reg/checkmobile', reg.checkMobile);
|
|
|
router.post('/reg/piccaptcha', reg.checkCode, reg.picCaptcha);
|
|
|
router.post('/reg/msgcaptcha', reg.checkMobileMiddleware, reg.msgCaptcha);
|
|
|
router.post('/reg/sendBindMsg', reg.checkMobileMiddleware, reg.checkCode, reg.sendBindMsg);
|
|
|
router.post('/reg/mobileregister', reg.checkMobileMiddleware, reg.checkPassword, reg.checkCode, reg.mobileRegister);
|
|
|
router.post('/reg/msgcaptcha', reg.msgCaptcha);
|
|
|
router.post('/reg/sendBindMsg', reg.checkCode, reg.sendBindMsg);
|
|
|
router.post('/reg/mobileregister', reg.checkPassword, reg.checkCode, reg.mobileRegister);
|
|
|
router.get('/reg/success', reg.success);
|
|
|
|
|
|
/**
|
...
|
...
|
|