|
|
@@ -204,7 +204,17 @@ export default defineComponent({
|
|
|
isFloat,
|
|
|
canUseMoney,
|
|
|
};
|
|
|
- const { getFloatPrice, getMoney } = useListingTradeNumAndPrice<FormParam>(param);
|
|
|
+ // 挂牌金额
|
|
|
+ // function getMoney() {
|
|
|
+
|
|
|
+ // }
|
|
|
+ // 估算价
|
|
|
+ function getAppraise() {}
|
|
|
+ // 合约单位
|
|
|
+ const agreeunit = getGoodsAgreeunitByGoodsCode(props.selectedRow.goodscode);
|
|
|
+ console.log();
|
|
|
+ console.log('合约单位', agreeunit);
|
|
|
+ const { getFloatPrice, getMoney } = useListingTradeNumAndPrice<FormParam>(param, agreeunit);
|
|
|
// 保证金
|
|
|
const getMargin = () => {
|
|
|
let result = '--';
|
|
|
@@ -235,8 +245,6 @@ export default defineComponent({
|
|
|
if (marginType && money && formState.FixedPrice) {
|
|
|
// 保证金方式 1:比率 2:固定
|
|
|
if (marginType === 1) {
|
|
|
- // 合约单位
|
|
|
- const agreeunit = getGoodsAgreeunitByGoodsCode(props.selectedRow.goodscode);
|
|
|
// 最大可挂牌数量=可用/(价格*合约单位*保证金比例
|
|
|
result = money / (((formState.FixedPrice * marginValue) / 100) * agreeunit);
|
|
|
} else {
|