| | |
| | | <template> |
| | | <div class="income-detail-info-money"> |
| | | <div class="income-detail-info-money-value"> |
| | | <div class="income-detail-info-money-value-unit">¥</div> |
| | | <div class="income-detail-info-money-value-num">{{ '33.33' }}</div> |
| | | </div> |
| | | <div class="income-detail-info-money-type">{{ '收入' }}</div> |
| | | </div> |
| | | <WithdrawMoneyCard :money="100" title="收入"></WithdrawMoneyCard> |
| | | <List> |
| | | <ListItem title="流水号" :show-arrow="false"> |
| | | <template #extra> |
| | |
| | | <div class="income-detail-info-value">{{ '2024.11.13' }}</div> |
| | | </template> |
| | | </ListItem> |
| | | <ListItem title="结算单内容" :show-arrow="false"> |
| | | <ListItem title="工资单内容" :show-arrow="false"> |
| | | <template #extra> |
| | | <div class="income-detail-info-value">{{ '33.33元' }}</div> |
| | | </template> |
| | | </ListItem> |
| | | <ListItem title="结算单内容" :show-arrow="false"> |
| | | <ListItem title="工资单内容" :show-arrow="false"> |
| | | <template #extra> |
| | | <div class="income-detail-info-value">{{ '33.33元' }}</div> |
| | | </template> |
| | |
| | | </template> |
| | | |
| | | <script setup lang="ts"> |
| | | import { List, ListItem } from '@12333/components'; |
| | | import { List, ListItem, WithdrawMoneyCard } from '@12333/components'; |
| | | import { useUserStore } from '@/stores/modules/user'; |
| | | |
| | | defineOptions({ |