diff --git a/src/mixins/nft.js b/src/mixins/nft.js index ed7eafd5e..f498b1cbc 100644 --- a/src/mixins/nft.js +++ b/src/mixins/nft.js @@ -952,6 +952,7 @@ export default { name: this.NFTName, }, ], + isNFTBook: this.nftIsNFTBook, }; logPurchaseFlowEvent(this, 'add_to_cart', purchaseEventParams); logPurchaseFlowEvent(this, 'begin_checkout', purchaseEventParams); @@ -1088,6 +1089,7 @@ export default { ], price: this.NFTPriceUSD, currency: 'USD', + isNFTBook: this.nftIsNFTBook, }); if (this.uiTxTargetClassId === classId) { this.uiSetTxStatus(TX_STATUS.COMPLETED); diff --git a/src/pages/nft/class/_classId/_nftId.vue b/src/pages/nft/class/_classId/_nftId.vue index 37494f836..ac64c00f7 100644 --- a/src/pages/nft/class/_classId/_nftId.vue +++ b/src/pages/nft/class/_classId/_nftId.vue @@ -634,6 +634,7 @@ export default { ], price: this.NFTPriceUSD, currency: 'USD', + isNFTBook: this.nftIsNFTBook, }); } }, diff --git a/src/pages/nft/class/_classId/index.vue b/src/pages/nft/class/_classId/index.vue index ac84a02aa..e5cc9a4dd 100644 --- a/src/pages/nft/class/_classId/index.vue +++ b/src/pages/nft/class/_classId/index.vue @@ -1013,6 +1013,7 @@ export default { ], price: this.NFTPriceUSD, currency: 'USD', + isNFTBook: this.nftIsNFTBook, }); } @@ -1063,7 +1064,7 @@ export default { ], price: totalPrice, currency: 'USD', - isNFTBook: true, + isNFTBook: this.nftIsNFTBook, }; }, async handleClickMoreCollector() { @@ -1493,6 +1494,7 @@ export default { ], price: this.NFTPriceUSD, currency: 'USD', + isNFTBook: this.nftIsNFTBook, }); }, handleInputCustomPrice(price) { diff --git a/src/pages/nft/collection/_collectionId/index.vue b/src/pages/nft/collection/_collectionId/index.vue index 0cdb9446b..dd0bb0dc6 100644 --- a/src/pages/nft/collection/_collectionId/index.vue +++ b/src/pages/nft/collection/_collectionId/index.vue @@ -411,6 +411,7 @@ export default { ], price: this.collectionPrice, currency: 'USD', + isNFTBook: this.collectionIsBook, }); }, methods: {