Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix] 주문내역 천단위 콤마 추가 #253

Merged
merged 3 commits into from
Jan 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/order/OrderComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const toggleCard = async (orderNo: string) => {
<tr @click='toggleCard(order.orderNo)' class='table-inner-header'>
<th>{{ order.orderNo }}</th>
<th>{{ order.productsName }}</th>
<th>{{ order.totalAmount }}</th>
<th>{{ order.totalAmount.toLocaleString() }}</th>
<th>{{ order.status }}</th>
<th>{{ order.createdAt }}</th>
</tr>
Expand Down
10 changes: 0 additions & 10 deletions src/views/ChatView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -243,14 +243,6 @@ const validation = (bidAmount: number): boolean => {
}
return true
}

const test = async () => {
const response = await startBid(auctionDetail.value!.id)
}

const end = async () => {
await endBid(auctionDetail.value!.id)
}
</script>

<template>
Expand Down Expand Up @@ -286,8 +278,6 @@ const end = async () => {
>
<span>상품 정가 : {{ productDetail?.price.toLocaleString() }} 원</span>
<span>최대 낙찰 인원 : {{ auctionDetail?.maximumWinner }} 명</span>
<button @click="test">start</button>
<button @click="end">end</button>
</div>
<!-- 경매 정보 끝 -->
</div>
Expand Down