number-table-column.vue 880 Bytes
<script setup lang="ts">
import { eq, get } from 'lodash';
import TableColumn from '@/components/filter/table-column.vue';

const props = withDefaults(
  defineProps<{ title?: string; dataIndex?: string; darkValue?: string | number; prefix?: string; suffix?: string }>(),
  { prefix: '', suffix: '' }
);

const getValue = (record: object) => {
  return get(record, props.dataIndex || '', '');
};
</script>

<template>
  <TableColumn v-bind="$attrs" :title="title" :data-index="dataIndex">
    <template #default="{ record }">
      <template v-if="darkValue !== undefined && eq(getValue(record), darkValue)">
        <span style="color: rgba(44, 44, 44, 0.5)">{{ `${prefix} 0 ${suffix}` }}</span>
      </template>
      <template v-else> {{ `${prefix} ${getValue(record)} ${suffix}` }} </template>
    </template>
  </TableColumn>
</template>

<style scoped lang="less"></style>