| | |
| | | <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"> |
| | | <div class="income-detail-list-item-content-item">{{ item }}</div> |
| | | <div class="income-detail-list-item-content-value" v-if="showValue">{{ value }}</div> |
| | | <!-- <div class="income-detail-list-item-content-value" v-if="showValue">{{ value }}</div> --> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | </template> |
| | | |
| | | <script setup lang="ts"> |
| | | import { toThousand } from '@12333/utils'; |
| | | |
| | | defineOptions({ |
| | | name: 'IncomeDetailListItem', |
| | | }); |