Showing
1 changed file
with
3 additions
and
3 deletions
@@ -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, // 控制显示头部图片 |
@@ -72,6 +69,9 @@ class BindController extends AbstractAction | @@ -72,6 +69,9 @@ class BindController extends AbstractAction | ||
72 | 'phoneNum' => $phoneNum, //手机号码 | 69 | 'phoneNum' => $phoneNum, //手机号码 |
73 | ); | 70 | ); |
74 | 71 | ||
72 | + $data['relateCode'] = ($isReg == 3) ? true : false;//关联js | ||
73 | + $data['bindCode'] = ($isReg == 3) ? false : true;//绑定js | ||
74 | + | ||
75 | // 渲染模板 | 75 | // 渲染模板 |
76 | $this->_view->display('code', $data); | 76 | $this->_view->display('code', $data); |
77 | } | 77 | } |
-
Please register or login to post a comment