Commit 5e34285c by 杨树贤

修改统一返回

parent 92ad7fd5
Showing with 4 additions and 0 deletions
......@@ -36,18 +36,22 @@ class Controller extends BaseController
{
if (is_array($errCode)) {
echo json_encode([
'code' => $errCode[0],
'err_code' => $errCode[0],
'err_msg' => $errCode[1],
'data' => !empty($errCode[2]) ? $errCode[2] : '',
'count' => $count,
'total' => $count,
]);
exit();
} else {
echo json_encode([
'err_code' => $errCode,
'code' => $errCode,
'err_msg' => $errMsg,
'data' => $data,
'count' => $count,
'total' => $count,
]);
exit();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment