You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
624 B
Vue
35 lines
624 B
Vue
<!-- components/TaxHealthReport/TaxReportItem.vue -->
|
|
<template>
|
|
<view class="tax-report-item">
|
|
<text class="tax-report-item-label">{{ label }}</text>
|
|
<text class="tax-report-item-value">{{ value }}</text>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps<{
|
|
label: string;
|
|
value: string;
|
|
}>();
|
|
</script>
|
|
|
|
<style scoped>
|
|
.tax-report-item {
|
|
flex-direction: row;
|
|
margin-bottom: 12rpx;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.tax-report-item-label {
|
|
font-size: 26rpx;
|
|
color: #666;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.tax-report-item-value {
|
|
font-size: 26rpx;
|
|
color: #333;
|
|
line-height: 1.5;
|
|
flex: 1;
|
|
}
|
|
</style> |