diff --git a/src/components/market/ChipBuyDialog.vue b/src/components/market/ChipBuyDialog.vue index c31f045..27a3445 100644 --- a/src/components/market/ChipBuyDialog.vue +++ b/src/components/market/ChipBuyDialog.vue @@ -134,14 +134,6 @@ export default { }, methods: { async haldBuy() { - const data = { - currency: this.piece.s_currency - ? this.piece.s_currency - : this.data.s_currency, - price: this.piece.s_price ? this.piece.s_price : this.data.s_price, - marketAddress: CONTRACT_ADDRESS[AppModule.chainId].marketAddress, - }; - console.log(data, "beginApproveBuy"); try { this.showLoading(); const nftres = await this.chainManager.bc.beginApproveBuy( @@ -149,7 +141,6 @@ export default { this.piece.s_price ? this.piece.s_price : this.data.s_price, CONTRACT_ADDRESS[AppModule.chainId].marketAddress ); - console.log(nftres, "beginApproveBuy"); if (nftres.status == true) { this.isApprove = true; this.hideLoading(); diff --git a/src/components/market/ChipSellTop.vue b/src/components/market/ChipSellTop.vue index 1feefd2..7a0605d 100644 --- a/src/components/market/ChipSellTop.vue +++ b/src/components/market/ChipSellTop.vue @@ -89,7 +89,6 @@ export default { justify-content: space-between; margin-left: 12px; margin-right: 12px; - // margin-top: 9px; } .srabded { margin-top: 9px; @@ -103,10 +102,6 @@ export default { } .sellers { width: 299px; - // height: 24px; - // text-align: center; - // display: flex; - // justify-content: center; font-size: 13px; margin-top: 12px; margin-left: 19px; diff --git a/src/components/market/DefContent.vue b/src/components/market/DefContent.vue index 46680e7..c70a594 100644 --- a/src/components/market/DefContent.vue +++ b/src/components/market/DefContent.vue @@ -2,20 +2,16 @@