接口统一返回处理

This commit is contained in:
Devil
2021-01-06 21:26:19 +08:00
parent e4032fc250
commit 36e22ff6d6
26 changed files with 146 additions and 101 deletions

View File

@ -35,7 +35,7 @@ class Base extends Common
// 参数
$params = $this->data_post;
$params['user'] = $this->user;
return DataReturn('success', 0, BaseService::Common($params));
return BaseService::Common($params);
}
}
?>