Authored by 郭成尧

Merge branch 'feature/loginview' into release/6.0.1

@@ -5,6 +5,7 @@ class BackNew { @@ -5,6 +5,7 @@ class BackNew {
5 backByMobile(req, res) { 5 backByMobile(req, res) {
6 res.render('back/mobile-new', { 6 res.render('back/mobile-new', {
7 width750: true, 7 width750: true,
  8 + localCss: true,
8 module: 'passport', 9 module: 'passport',
9 page: 'back-mobile-new' 10 page: 'back-mobile-new'
10 }); 11 });
@@ -16,6 +17,7 @@ class BackNew { @@ -16,6 +17,7 @@ class BackNew {
16 backByEmail(req, res) { 17 backByEmail(req, res) {
17 res.render('back/email-new', { 18 res.render('back/email-new', {
18 width750: true, 19 width750: true,
  20 + localCss: true,
19 module: 'passport', 21 module: 'passport',
20 page: 'back-email-new' 22 page: 'back-email-new'
21 }); 23 });
@@ -27,6 +29,7 @@ class BackNew { @@ -27,6 +29,7 @@ class BackNew {
27 backByEmailSuccess(req, res) { 29 backByEmailSuccess(req, res) {
28 res.render('back/email-success-new', { 30 res.render('back/email-success-new', {
29 width750: true, 31 width750: true,
  32 + localCss: true,
30 module: 'passport', 33 module: 'passport',
31 page: 'back-email-success-new' 34 page: 'back-email-success-new'
32 }); 35 });
@@ -25,6 +25,7 @@ class Login { @@ -25,6 +25,7 @@ class Login {
25 res.render('login/login-new', { 25 res.render('login/login-new', {
26 module: 'passport', 26 module: 'passport',
27 page: 'login-new', 27 page: 'login-new',
  28 + localCss: true,
28 width750: true, 29 width750: true,
29 banner: banner, 30 banner: banner,
30 captchaShow: req.yoho.captchaShow, 31 captchaShow: req.yoho.captchaShow,
@@ -59,6 +60,7 @@ class Login { @@ -59,6 +60,7 @@ class Login {
59 res.render('login/international-new', { 60 res.render('login/international-new', {
60 module: 'passport', 61 module: 'passport',
61 page: 'international-new', 62 page: 'international-new',
  63 + localCss: true,
62 width750: true, 64 width750: true,
63 captchaShow: req.yoho.captchaShow, 65 captchaShow: req.yoho.captchaShow,
64 countrys: RegService.getAreaData() 66 countrys: RegService.getAreaData()
@@ -50,6 +50,7 @@ class Reg { @@ -50,6 +50,7 @@ class Reg {
50 res.render('reg/reg-new', { 50 res.render('reg/reg-new', {
51 module: 'passport', 51 module: 'passport',
52 page: 'reg-new', 52 page: 'reg-new',
  53 + localCss: true,
53 width750: true, 54 width750: true,
54 countrys: RegService.getAreaData() // 地区信息列表 55 countrys: RegService.getAreaData() // 地区信息列表
55 }); 56 });
@@ -13,6 +13,7 @@ class SmsNew { @@ -13,6 +13,7 @@ class SmsNew {
13 module: 'passport', 13 module: 'passport',
14 page: 'sms-login-new', 14 page: 'sms-login-new',
15 width750: true, 15 width750: true,
  16 + localCss: true,
16 countrys: RegService.getAreaData(), // 地区信息列表 17 countrys: RegService.getAreaData(), // 地区信息列表
17 }); 18 });
18 } 19 }