|
|
@@ -17,10 +17,6 @@
|
|
|
<template #goodsname="{ row }">
|
|
|
{{ row.goodscode }}/{{ row.goodsname }}
|
|
|
</template>
|
|
|
- <!-- 成交金额 -->
|
|
|
- <template #tradeamount="{ row }">
|
|
|
- {{ formatDecimal(row.tradeqty*row.tradeprice) }}
|
|
|
- </template>
|
|
|
<!-- 成交时间 -->
|
|
|
<template #tradetime="{ value }">
|
|
|
{{ formatDate(value) }}
|
|
|
@@ -30,7 +26,7 @@
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
import { shallowRef } from 'vue'
|
|
|
-import { formatDate, formatDecimal, tmMatchAccountID } from '@/filters'
|
|
|
+import { formatDate, tmMatchAccountID } from '@/filters'
|
|
|
import { useRequest } from '@/hooks/request'
|
|
|
import { queryTradeDetail } from '@/services/api/order'
|
|
|
import { getBuildTypeName, getBuyOrSellName } from '@/constants/order'
|