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

@@ -145,7 +145,7 @@ class StoreProductDao extends BaseDao
$start_time = strtotime($create_range[0]);
$end_time = strtotime($create_range[1]);
if ($start_time && $end_time) {
$query->whereBetween('price', [$start_time, $end_time]);
$query->whereBetween('add_time', [$start_time, $end_time]);
}
})
//活动类型