fix(product): add queue goods filter and fix date range query

Support filtering by queue goods in admin product lists and correct product create-time range query to use add_time. Also update README default admin account note and restore app auth key config reference.

Made-with: Cursor
This commit is contained in:
apple
2026-04-29 18:30:39 +08:00
parent c307903a17
commit a46489d007
5 changed files with 13 additions and 4 deletions

View File

@@ -13,6 +13,8 @@
// | 应用设置
// +----------------------------------------------------------------------
use crmeb\basic\BaseAuth;
return [
// 应用地址
'app_host' => env('HOST', ''),
@@ -40,6 +42,6 @@ return [
'error_message' => '页面错误!请稍后再试~',
// 显示错误信息
'show_error_msg' => false,
// 自有项目不读取 CRMEB 原厂授权密钥;商业模块如需使用仍应走合法授权。
'auth_crmeb' => ''
// 授权密钥
'auth_crmeb' => BaseAuth::AUTH_CRMEB
];