|
@@ -7,7 +7,8 @@
|
|
|
</template>
|
|
</template>
|
|
|
<div class="order-detail__container g-form__container">
|
|
<div class="order-detail__container g-form__container">
|
|
|
<CellGroup :title="$t('order.pricingorder.subtitle')">
|
|
<CellGroup :title="$t('order.pricingorder.subtitle')">
|
|
|
- <Cell :title="$t('order.pricingorder.goodsname')" :value="selectedRow.goodscode + '/' + selectedRow.goodsname" />
|
|
|
|
|
|
|
+ <Cell v-if="selectedRow.trademode != 10" :title="$t('order.pricingorder.goodsname')" :value="selectedRow.goodscode + '/' + selectedRow.goodsname" />
|
|
|
|
|
+ <Cell v-else :title="$t('order.pricingorder.goodsname')" :value="selectedRow.goodscode" />
|
|
|
<Cell :title="$t('order.pricingorder.buyorsell')" :value="getBuyOrSellName(selectedRow.buyorsell)" />
|
|
<Cell :title="$t('order.pricingorder.buyorsell')" :value="getBuyOrSellName(selectedRow.buyorsell)" />
|
|
|
<Cell :title="$t('order.pricingorder.orderqty')" :value="formatDecimal(selectedRow.orderqty)" />
|
|
<Cell :title="$t('order.pricingorder.orderqty')" :value="formatDecimal(selectedRow.orderqty)" />
|
|
|
<Cell :title="$t('order.pricingorder.orderprice')" :value="formatDecimal(selectedRow.orderprice)" />
|
|
<Cell :title="$t('order.pricingorder.orderprice')" :value="formatDecimal(selectedRow.orderprice)" />
|
|
@@ -51,6 +52,8 @@ const onCancelSumit = () => {
|
|
|
console.log('goodsid')
|
|
console.log('goodsid')
|
|
|
dialog({
|
|
dialog({
|
|
|
message: t('order.pricingorder.tips1'),
|
|
message: t('order.pricingorder.tips1'),
|
|
|
|
|
+ confirmButtonText: t('operation.confirm'),
|
|
|
|
|
+ cancelButtonText: t('operation.cancel'),
|
|
|
showCancelButton: true,
|
|
showCancelButton: true,
|
|
|
}).then(() => {
|
|
}).then(() => {
|
|
|
const { marketid, goodsid } = props.selectedRow
|
|
const { marketid, goodsid } = props.selectedRow
|