|
|
@@ -63,7 +63,7 @@ class ItemController extends BaseController
|
|
|
$price = $item->skPrice ?? 0;
|
|
|
$price = floatval($price);
|
|
|
$name = $item->name ?? '';
|
|
|
- echo '<div style="font-size:80px;margin-top:80px;margin-left:60px;">' . $name . '元</div>';
|
|
|
+ echo '<div style="font-size:80px;margin-top:80px;margin-left:60px;">' . $name . '</div>';
|
|
|
echo '<div style="font-size:80px;margin-top:20px;margin-left:60px;">' . $price . '元</div>';
|
|
|
}
|
|
|
|