Authored by Rock Zhang

Merge branch 'develop/wap' into beta/wap

... ... @@ -58,7 +58,8 @@ class YuanxiaoController extends HuodongAction
$uid = $this->getUid();
// POST提交请求
if (!empty($this->post())) {
$posts = $this->post();
if (!empty($posts)) {
$nickName = $this->post('nick', '');
$birthday = $this->post('birthday', '');
$gender = $this->post('gender', 0);
... ... @@ -66,7 +67,7 @@ class YuanxiaoController extends HuodongAction
// 调用接口
$result = YuanxiaoModel::getChouqianInfo($uid, $nickName, $birthday, $gender);
$result['code'] = 200;
$result['data'] = array('name' => '王五', 'type' => 'M2');
$result['data'] = array('name' => $nickName, 'type' => 'M2');
if ($result['code'] === 200) { // 处理成功就跳转到等待页
// 将返回的结果存入cookeie中15分钟
$this->setCookie('yuanxiaochouqian', json_encode($result['data']), time() + 15*60);
... ...