diff --git a/hwe/sammo/Auction.php b/hwe/sammo/Auction.php index 07bbf5e1..3d60501e 100644 --- a/hwe/sammo/Auction.php +++ b/hwe/sammo/Auction.php @@ -281,6 +281,9 @@ abstract class Auction $general = $this->general; $highestBid = $this->getHighestBid(); + if ($highestBid !== null && $amount < $highestBid->amount * 1.01) { + return '현재입찰가보다 1% 높게 입찰해야 합니다.'; + } if ($highestBid !== null && $amount < $highestBid->amount + 10) { return '현재입찰가보다 10 포인트 높게 입찰해야 합니다.'; } diff --git a/hwe/ts/components/AuctionUniqueItem.vue b/hwe/ts/components/AuctionUniqueItem.vue index bea79c7f..68febee3 100644 --- a/hwe/ts/components/AuctionUniqueItem.vue +++ b/hwe/ts/components/AuctionUniqueItem.vue @@ -51,7 +51,7 @@