|
@@ -6,10 +6,14 @@
|
|
|
<template #wrtradetype="{ row }">
|
|
<template #wrtradetype="{ row }">
|
|
|
{{ row.goodscode }}/{{ row.goodsname }}
|
|
{{ row.goodscode }}/{{ row.goodsname }}
|
|
|
</template>
|
|
</template>
|
|
|
- <!-- 方向 -->
|
|
|
|
|
- <template #buyorsell="{ value }">
|
|
|
|
|
|
|
+ <!-- 方向 -->
|
|
|
|
|
+ <template #buyorsell="{ value }">
|
|
|
{{ getBuyOrSellName(value) }}
|
|
{{ getBuyOrSellName(value) }}
|
|
|
</template>
|
|
</template>
|
|
|
|
|
+ <!-- 类型 -->
|
|
|
|
|
+ <template #pricemode="{ value }">
|
|
|
|
|
+ {{ value === 2 ? '固定价' : '浮动价' }}
|
|
|
|
|
+ </template>
|
|
|
<!-- 委托状态 -->
|
|
<!-- 委托状态 -->
|
|
|
<template #orderstatus="{ value }">
|
|
<template #orderstatus="{ value }">
|
|
|
{{ getWRTradeOrderStatusName(value) }}
|
|
{{ getWRTradeOrderStatusName(value) }}
|
|
@@ -63,6 +67,7 @@ const tableColumns = shallowRef<Model.TableColumn[]>([
|
|
|
{ prop: 'orderid', label: '委托单号' },
|
|
{ prop: 'orderid', label: '委托单号' },
|
|
|
{ prop: 'goodsname', label: '商品代码/名称' },
|
|
{ prop: 'goodsname', label: '商品代码/名称' },
|
|
|
{ prop: 'buyorsell', label: '方向' },
|
|
{ prop: 'buyorsell', label: '方向' },
|
|
|
|
|
+ { prop: 'pricemode', label: '类型' },
|
|
|
{ prop: 'orderqty', label: '委托数量' },
|
|
{ prop: 'orderqty', label: '委托数量' },
|
|
|
{ prop: 'orderprice', label: '委托价格' },
|
|
{ prop: 'orderprice', label: '委托价格' },
|
|
|
{ prop: 'tradeqty', label: '成交数量' },
|
|
{ prop: 'tradeqty', label: '成交数量' },
|