最新版本已经修复此问题
文件地址:app\controller\api\v2\PublicController.php
1、22行左右,有这句就不用加
use crmeb\services\SystemConfigService;
2、方法名称:getCustomerType
行数:160行左右,具体直接搜此方法名称,行数可能不是很准确
代码:
public function getCustomerType()
{
$data = SystemConfigService::more(['customer_type', 'customer_phone', 'customer_url']);
$data['userInfo'] = [];
return app('json')->success($data);
}