Merge branch 'james_bc' of git.kingsome.cn:server/game2006api into james_bc

This commit is contained in:
hujiabin 2022-11-03 15:08:08 +08:00
commit 63377e1658

View File

@ -13,9 +13,7 @@ class GuideController extends BaseAuthedController {
'account_id' => $this->_getAccountId() 'account_id' => $this->_getAccountId()
) )
); );
echo json_encode(array( $this->_rspData(array(
'errcode' => 0,
'errmsg' => "OK",
'data' => $row ? $row['data'] : null 'data' => $row ? $row['data'] : null
)); ));
} }
@ -40,6 +38,7 @@ class GuideController extends BaseAuthedController {
'modifytime' => $this->_getNowTime() 'modifytime' => $this->_getNowTime()
) )
); );
$this->_rspOk();
} }
} }