|
@@ -49,6 +49,10 @@
|
|
|
<template #pricetype="{ text }">
|
|
<template #pricetype="{ text }">
|
|
|
<a>{{ getPriceTypeName(text) }}</a>
|
|
<a>{{ getPriceTypeName(text) }}</a>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
+ <!-- 价格 -->
|
|
|
|
|
+ <template #price="{ text }">
|
|
|
|
|
+ <span>{{ handleNoneValue(text) }}</span>
|
|
|
|
|
+ </template>
|
|
|
</a-table>
|
|
</a-table>
|
|
|
</template>
|
|
</template>
|
|
|
</mtp-table-scroll>
|
|
</mtp-table-scroll>
|
|
@@ -69,6 +73,7 @@ import { formatTime, formatValue } from '@/common/methods';
|
|
|
import { getTableButton } from '@/common/setup/table/button';
|
|
import { getTableButton } from '@/common/setup/table/button';
|
|
|
import { useRoute } from 'vue-router';
|
|
import { useRoute } from 'vue-router';
|
|
|
import { getBizTypeName, getPriceTypeName } from '@/common/constants/enumsName';
|
|
import { getBizTypeName, getPriceTypeName } from '@/common/constants/enumsName';
|
|
|
|
|
+import { handleNoneValue } from '@/common/setup/table/tableQuote';
|
|
|
import { useTradeAccount } from '@/hooks/account'
|
|
import { useTradeAccount } from '@/hooks/account'
|
|
|
import moment from 'moment';
|
|
import moment from 'moment';
|
|
|
|
|
|
|
@@ -153,6 +158,7 @@ export default defineComponent({
|
|
|
handleBtnList,
|
|
handleBtnList,
|
|
|
getBizTypeName,
|
|
getBizTypeName,
|
|
|
getPriceTypeName,
|
|
getPriceTypeName,
|
|
|
|
|
+ handleNoneValue,
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
});
|
|
});
|