...
|
...
|
@@ -16,10 +16,10 @@ class BackController extends AbstractAction |
|
|
public function emailAction()
|
|
|
{
|
|
|
$data = array(
|
|
|
'backUrl' => 'm.yohobuy.com',
|
|
|
'backUrl' => '/passport/login/index',
|
|
|
'headerText' => '找回密码',
|
|
|
'isPassportPage' => true,
|
|
|
'modulePath' => 'passport/back/email'
|
|
|
'backEmail' => true
|
|
|
);
|
|
|
|
|
|
$this->_view->assign('title', 'YOHO!有货');
|
...
|
...
|
@@ -49,7 +49,7 @@ class BackController extends AbstractAction |
|
|
'backUrl' => 'm.yohobuy.com',
|
|
|
'headerText' => '找回密码',
|
|
|
'isPassportPage' => true,
|
|
|
'modulePath' => 'passport/back/email-success',
|
|
|
'backEmailSuccess' => true,
|
|
|
'goEmail' => '',
|
|
|
'resendUrl' => ''
|
|
|
);
|
...
|
...
|
@@ -89,7 +89,7 @@ class BackController extends AbstractAction |
|
|
// 处理地区信息
|
|
|
foreach ($areas as &$val) {
|
|
|
$val['areaCode'] = $val['area'];
|
|
|
if($val['area'] == 86)
|
|
|
if($val['area'] === '86')
|
|
|
{
|
|
|
$val['selected'] = true;
|
|
|
}
|
...
|
...
|
@@ -104,12 +104,12 @@ class BackController extends AbstractAction |
|
|
|
|
|
return ($a['id'] < $b['id'] ? -1 : 1);
|
|
|
});*/
|
|
|
|
|
|
|
|
|
$data = array(
|
|
|
'backUrl' => 'm.yohobuy.com',
|
|
|
'backUrl' => '/passport/back/login',
|
|
|
'headerText' => '找回密码',
|
|
|
'isPassportPage' => true,
|
|
|
'modulePath' => 'passport/back/mobile',
|
|
|
'backMobile' => true,
|
|
|
'countrys' => $areas,
|
|
|
'countryCode' => '+86'
|
|
|
);
|
...
|
...
|
@@ -139,13 +139,13 @@ class BackController extends AbstractAction |
|
|
{
|
|
|
$mobile = $this->get('mobile', '');
|
|
|
$area = $this->get('area', 86);
|
|
|
$areacode = '+'.$area;
|
|
|
|
|
|
$data = array(
|
|
|
'backUrl' => 'm.yohobuy.com',
|
|
|
'backUrl' => '/passport/back/mobile',
|
|
|
'headerText' => '找回密码',
|
|
|
'isPassportPage' => true,
|
|
|
'modulePath' => 'passport/back/code',
|
|
|
'areaCode' => '+86',
|
|
|
'areaCode' => $areacode,
|
|
|
'phoneNum' => $mobile
|
|
|
);
|
|
|
|
...
|
...
|
@@ -180,19 +180,10 @@ class BackController extends AbstractAction |
|
|
$area = $this->get('area', 86);
|
|
|
|
|
|
$data = array(
|
|
|
'backUrl' => 'm.yohobuy.com',
|
|
|
'backUrl' => '/passport/back/login',
|
|
|
'headerText' => '找回密码',
|
|
|
'isPassportPage' => true,
|
|
|
'modulePath' => 'passport/back/new-password',
|
|
|
'pageHeader' => array(
|
|
|
'navBack' => 'm.yohobuy.com',
|
|
|
'navHome' => 'm.yohobuy.com',
|
|
|
'navTitle' => '上衣'
|
|
|
),
|
|
|
'pageFooter' => array(
|
|
|
'loginUrl' => 'm.yohobuy.com/login.html',
|
|
|
'signupUrl' => 'm.yohobuy.com/signup.html'
|
|
|
)
|
|
|
'backNewPwd' => true,
|
|
|
);
|
|
|
|
|
|
$this->_view->assign('title', 'YOHO!有货');
|
...
|
...
|
|