zhengyiming
2 小时以前 cf5941b97b6ad5c48928bcdaf3660e7bf457e9c8
packages/components/src/List/IncomeDetailListItem.vue
@@ -4,7 +4,7 @@
      <slot name="title">
        <div class="income-detail-list-item-title">
          <div class="income-detail-list-item-title-text">{{ title }}</div>
          <div class="income-detail-list-item-title-value">{{ funds }}</div>
          <div class="income-detail-list-item-title-value">{{ toThousand(funds) }}</div>
        </div>
      </slot>
      <div class="income-detail-list-item-content">
@@ -16,13 +16,15 @@
</template>
<script setup lang="ts">
import { toThousand } from '@12333/utils';
defineOptions({
  name: 'IncomeDetailListItem',
});
type Props = {
  title?: string;
  funds?: string;
  funds?: number;
  item?: string;
  value?: string;
  showValue?: boolean;