Merge branch 'new-CounterFire' of http://git.kingsome.cn/huangjinming/CounterFireGames into new-CounterFire
This commit is contained in:
commit
ba8e204044
@ -134,6 +134,7 @@ import {DownOutlined, UpOutlined} from "@ant-design/icons-vue";
|
|||||||
// import LoadingDialog from "@/components/Dialogs/loadingDialog.vue"
|
// import LoadingDialog from "@/components/Dialogs/loadingDialog.vue"
|
||||||
import {priceCalculated, timeFormat, royaltiesPrice, feePrice, totalPrice} from "@/configs/priceCalculate.js";
|
import {priceCalculated, timeFormat, royaltiesPrice, feePrice, totalPrice} from "@/configs/priceCalculate.js";
|
||||||
import {BlockChain} from "@/components/chain/BlockChain";
|
import {BlockChain} from "@/components/chain/BlockChain";
|
||||||
|
import { ethers } from "ethers"
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
sellDialogVisible: {
|
sellDialogVisible: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
@ -182,7 +183,7 @@ const sellConfirm = async () => {
|
|||||||
contractAddress: props.sellDataArr.contract_address,
|
contractAddress: props.sellDataArr.contract_address,
|
||||||
tokenId: props.sellDataArr.token_id,
|
tokenId: props.sellDataArr.token_id,
|
||||||
currencyAddress: currency,
|
currencyAddress: currency,
|
||||||
currencyAmount: BigInt(totalPrice(priceValue.value) * 1e18),
|
currencyAmount: ethers.utils.parseEther(totalPrice(priceValue.value)).toString(),
|
||||||
orderExpiry: orderData,
|
orderExpiry: orderData,
|
||||||
};
|
};
|
||||||
const bc = new BlockChain();
|
const bc = new BlockChain();
|
||||||
@ -196,6 +197,7 @@ const sellConfirm = async () => {
|
|||||||
}, 2000);
|
}, 2000);
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
console.log(e.message)
|
||||||
message.error("Your product failed to be listed");
|
message.error("Your product failed to be listed");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -44,7 +44,7 @@ export const feePrice = (price) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const totalPrice = (price) => {
|
export const totalPrice = (price) => {
|
||||||
return Number(Number(price) + Number(price) * 0.02 + Number(price) * 0.02).toFixed(5)
|
return Number(Number(price) + Number(price) * 0.04).toFixed(5)
|
||||||
}
|
}
|
||||||
|
|
||||||
// 处理时间回显
|
// 处理时间回显
|
||||||
|
Loading…
x
Reference in New Issue
Block a user