This commit is contained in:
shilin
2025-02-21 18:08:42 +08:00
parent 129037c757
commit e86cddd74a
3 changed files with 33 additions and 0 deletions

BIN
m.rar

Binary file not shown.

View File

@ -309,6 +309,17 @@
{{ orderTypes[row.orderType] ? orderTypes[row.orderType].l : '' }}
</template>
</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
label="补仓百分比"
align="center"
@ -327,6 +338,28 @@
<span :style="comStatusStyle(row)">{{ status[row.status] ? status[row.status].l : '' }}</span>
</template>
</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
label="订单描述"
align="center"

Binary file not shown.