|
@@ -25,7 +25,7 @@
|
|
|
<Cell v-if="selectedRow.tHDetailEx.buyOrSell === BuyOrSell.Sell" :title="$t('position.goods.totalfees')" :value="formatDecimal(serivcefee+pricemove+shipping+otherfees)" />
|
|
<Cell v-if="selectedRow.tHDetailEx.buyOrSell === BuyOrSell.Sell" :title="$t('position.goods.totalfees')" :value="formatDecimal(serivcefee+pricemove+shipping+otherfees)" />
|
|
|
</CellGroup>
|
|
</CellGroup>
|
|
|
<CellGroup :title="$t('position.goods.subtitle2')" inset>
|
|
<CellGroup :title="$t('position.goods.subtitle2')" inset>
|
|
|
- <Cell :title="$t('position.goods.deliveryqty')" :value="((formData.DeliveryLot ?? 0) * selectedRow.agreeUnit) + getGoodsUnitName(selectedRow.goodsUnitID)" />
|
|
|
|
|
|
|
+ <Cell :title="$t('position.goods.deliveryqty')" :value="formData.DeliveryLot" />
|
|
|
<Field :label="selectedRow.tHDetailEx.buyOrSell === BuyOrSell.Buy ? $t('position.goods.address') : $t('position.goods.deliveryid')"
|
|
<Field :label="selectedRow.tHDetailEx.buyOrSell === BuyOrSell.Buy ? $t('position.goods.address') : $t('position.goods.deliveryid')"
|
|
|
name="DeliveryInfo" v-model="formData.DeliveryInfo" type="textarea" autosize clearable
|
|
name="DeliveryInfo" v-model="formData.DeliveryInfo" type="textarea" autosize clearable
|
|
|
:rules="formRules.DeliveryInfo" maxlength="50"
|
|
:rules="formRules.DeliveryInfo" maxlength="50"
|
|
@@ -54,7 +54,6 @@ import { formatDecimal, handleRequestBigNumber } from '@/filters'
|
|
|
import { useOfflineDelivery } from '@/business/trade'
|
|
import { useOfflineDelivery } from '@/business/trade'
|
|
|
import { dialog, fullloading } from '@/utils/vant'
|
|
import { dialog, fullloading } from '@/utils/vant'
|
|
|
import { i18n, useFuturesStore } from '@/stores'
|
|
import { i18n, useFuturesStore } from '@/stores'
|
|
|
-import { getGoodsUnitName } from '@/constants/unit'
|
|
|
|
|
import AppModal from '@/components/base/modal/index.vue'
|
|
import AppModal from '@/components/base/modal/index.vue'
|
|
|
import AppContact from '@mobile/components/modules/contact/index.vue'
|
|
import AppContact from '@mobile/components/modules/contact/index.vue'
|
|
|
|
|
|
|
@@ -138,8 +137,8 @@ const shipping = computed(() => {
|
|
|
|
|
|
|
|
// 可用重量
|
|
// 可用重量
|
|
|
const enableqty = computed(() => {
|
|
const enableqty = computed(() => {
|
|
|
- const { tHDetailEx, agreeUnit } = props.selectedRow
|
|
|
|
|
- return (tHDetailEx.holderQty - tHDetailEx.freezeQty) * agreeUnit
|
|
|
|
|
|
|
+ const { tHDetailEx } = props.selectedRow
|
|
|
|
|
+ return tHDetailEx.holderQty - tHDetailEx.freezeQty
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
// 需补足尾款
|
|
// 需补足尾款
|