This commit is contained in:
“wanyongkang”
2025-05-30 15:34:51 +08:00
parent c324ca598a
commit 48856a4d0e

View File

@@ -31,9 +31,9 @@ class UserPrice extends Model
if ($price < $package_info['Price']) { if ($price < $package_info['Price']) {
$package_info['Price'] = $price; $package_info['Price'] = $price;
} }
if ($price > $package_price && $price < 1000000) { if ($price > $package_info['Price'] && $price < 1000000) {
$package['Price'] = $price; $package_info['Price'] = $price;
} }
} }