code
This commit is contained in:
@ -309,6 +309,17 @@
|
|||||||
{{ orderTypes[row.orderType] ? orderTypes[row.orderType].l : '' }}
|
{{ orderTypes[row.orderType] ? orderTypes[row.orderType].l : '' }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="交易对类型"
|
||||||
|
align="center"
|
||||||
|
prop="symbolType"
|
||||||
|
min-width="90"
|
||||||
|
:show-overflow-tooltip="true"
|
||||||
|
>
|
||||||
|
<template #default="{row}">
|
||||||
|
{{ ['现货','合约'][row.symbolType-1] }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<!-- <el-table-column
|
<!-- <el-table-column
|
||||||
label="补仓百分比"
|
label="补仓百分比"
|
||||||
align="center"
|
align="center"
|
||||||
@ -327,6 +338,28 @@
|
|||||||
<span :style="comStatusStyle(row)">{{ status[row.status] ? status[row.status].l : '' }}</span>
|
<span :style="comStatusStyle(row)">{{ status[row.status] ? status[row.status].l : '' }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="减仓状态"
|
||||||
|
align="center"
|
||||||
|
prop="reduce_status"
|
||||||
|
width="100"
|
||||||
|
:show-overflow-tooltip="true"
|
||||||
|
>
|
||||||
|
<template #default="{row}">
|
||||||
|
<el-tag v-if="row.pid===0" size="mini" :type="['danger','success'][row.reduce_status]">{{ ['未减仓','已减仓'][row.reduce_status] }}</el-tag>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="加仓状态"
|
||||||
|
align="center"
|
||||||
|
prop="add_position_status"
|
||||||
|
width="100"
|
||||||
|
:show-overflow-tooltip="true"
|
||||||
|
>
|
||||||
|
<template #default="{row}">
|
||||||
|
<el-tag v-if="row.pid===0" size="mini" :type="['danger','success'][row.add_position_status]">{{ ['未加仓','已加仓'][row.add_position_status] }}</el-tag>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="订单描述"
|
label="订单描述"
|
||||||
align="center"
|
align="center"
|
||||||
|
|||||||
Binary file not shown.
Reference in New Issue
Block a user