Authored by xiaowei

关联手机号

@@ -57,9 +57,6 @@ class BindController extends AbstractAction @@ -57,9 +57,6 @@ class BindController extends AbstractAction
57 $isReg = $this->get('isReg'); 57 $isReg = $this->get('isReg');
58 $phoneNum = $this->get('phoneNum'); 58 $phoneNum = $this->get('phoneNum');
59 59
60 - $data['relateCode'] = ($isReg == 3) ? true : false;//关联js  
61 - $data['bindCode'] = ($isReg == 3) ? false : true;//绑定js  
62 -  
63 $data = array( 60 $data = array(
64 'backUrl' => Helpers::url('/signin.html'), // 返回的URL链接 61 'backUrl' => Helpers::url('/signin.html'), // 返回的URL链接
65 'showHeaderImg' => true, // 控制显示头部图片 62 'showHeaderImg' => true, // 控制显示头部图片
@@ -71,6 +68,9 @@ class BindController extends AbstractAction @@ -71,6 +68,9 @@ class BindController extends AbstractAction
71 'areaCode' => $areaCode, //国别码 68 'areaCode' => $areaCode, //国别码
72 'phoneNum' => $phoneNum, //手机号码 69 'phoneNum' => $phoneNum, //手机号码
73 ); 70 );
  71 +
  72 + $data['relateCode'] = ($isReg == 3) ? true : false;//关联js
  73 + $data['bindCode'] = ($isReg == 3) ? false : true;//绑定js
74 74
75 // 渲染模板 75 // 渲染模板
76 $this->_view->display('code', $data); 76 $this->_view->display('code', $data);