千分位
This commit is contained in:
@ -15,6 +15,18 @@
|
||||
</template>
|
||||
</template>
|
||||
<template #bodyCell="{ column, record }">
|
||||
<template v-if="column.dataIndex === 'qtyGjAll'">
|
||||
{{ Number.format(Number.parse(record.qtyGjAll),numFormat) }}
|
||||
</template>
|
||||
<template v-if="column.dataIndex === 'qtyGjGd'">
|
||||
{{ Number.format(Number.parse(record.qtyGjGd),numFormat) }}
|
||||
</template>
|
||||
<template v-if="column.dataIndex === 'qtyGjXs'">
|
||||
{{ Number.format(Number.parse(record.qtyGjXs),numFormat) }}
|
||||
</template>
|
||||
<template v-if="column.dataIndex === 'qtyGjYsp'">
|
||||
{{ Number.format(Number.parse(record.qtyGjYsp),numFormat) }}
|
||||
</template>
|
||||
<template v-if="column.dataIndex === 'action'">
|
||||
<TableAction :actions="getActions(record)" />
|
||||
</template>
|
||||
@ -52,7 +64,7 @@
|
||||
import rejectReplyModal from '/@/components/common/rejectReplyModal.vue';
|
||||
|
||||
const { bus, CREATE_FLOW, FLOW_PROCESSED, FORM_LIST_MODIFIED } = useEventBus();
|
||||
|
||||
const numFormat = "###,###,###,###,###,###.000"
|
||||
const { notification } = useMessage();
|
||||
const { t } = useI18n();
|
||||
defineEmits(['register']);
|
||||
|
||||
Reference in New Issue
Block a user