|
|
@@ -144,7 +144,6 @@
|
|
|
<span>滞纳金</span>
|
|
|
<span>{{ handleNumberValue(selectedRow.tHDetailEx.callAteFee) }}</span>
|
|
|
</li>
|
|
|
-
|
|
|
<!-- <li>
|
|
|
<span>订单金额</span>
|
|
|
<span>{{ item.tHDetailEx.holderAmount }}</span>
|
|
|
@@ -157,8 +156,7 @@
|
|
|
v-if="riskType === 1 && selectedRow.tHDetailEx.holderQty">补充</Button>
|
|
|
<template v-if="enableqty(selectedRow)">
|
|
|
<Button size="small" @click="showComponent('delivery')" round>
|
|
|
- {{ selectedRow.tHDetailEx.buyOrSell === BuyOrSell.Buy ? $t('enum.BuyOrSell.Buy') :
|
|
|
- $t('enum.BuyOrSell.Sell') }}
|
|
|
+ {{ selectedRow.tHDetailEx.buyOrSell === BuyOrSell.Buy ? '提料' : '交料' }}
|
|
|
</Button>
|
|
|
<Button v-if="canClose" size="small" @click="showComponent('closeholder')" round>终止</Button>
|
|
|
</template>
|
|
|
@@ -203,9 +201,9 @@ const goodscode = getQueryString('goodscode') ?? ''
|
|
|
const quote = futuresStore.getGoodsQuote(goodscode)
|
|
|
const goods = futuresStore.getGoods(goodscode)
|
|
|
const qtyStep = shallowRef(1) // 数量步长
|
|
|
+const orderQty = shallowRef(1) // 数量
|
|
|
const subscribe = quoteSocket.createSubscribe()
|
|
|
const selectedRow = shallowRef<Model.SBYJMyOrderRsp>()
|
|
|
-const orderQty = shallowRef(1) // 数量
|
|
|
const show = shallowRef(false)
|
|
|
/// 能否下单交易
|
|
|
const canBankSign = shallowRef(false)
|
|
|
@@ -374,8 +372,9 @@ onActivated(() => {
|
|
|
|
|
|
onMounted(() => {
|
|
|
subscribe.start(goodscode)
|
|
|
- orderQty.value = qtyStepList.value[0]
|
|
|
- qtyStep.value = qtyStepList.value[0]
|
|
|
+ formData.IsAutoAddDeposit = 1
|
|
|
+ orderQty.value = qtyStepList.value.at(-1) ?? 1
|
|
|
+ qtyStep.value = qtyStepList.value.at(-1) ?? 1
|
|
|
getSBYJMyOrders()
|
|
|
})
|
|
|
|