|
@@ -3,7 +3,7 @@
|
|
|
<h2>{{ title }}</h2>
|
|
|
<div>
|
|
|
<p v-for="(label, key) in labelMap">
|
|
|
- <span>{{ typeof label === "string" ? label : label[0] }}:</span>
|
|
|
+ <span>{{ typeof label === "string" ? label : label[0] }}:</span>
|
|
|
{{ typeof label === "string" ? data[key] : label[1](data[key]) }}
|
|
|
</p>
|
|
|
</div>
|
|
@@ -38,7 +38,8 @@ defineProps<{
|
|
|
}
|
|
|
|
|
|
p {
|
|
|
- margin: 5px 0;
|
|
|
+ margin: 10px 0;
|
|
|
+ padding: 0 20px;
|
|
|
color: rgba(255, 255, 255, 1);
|
|
|
font-size: 14px;
|
|
|
display: flex;
|
|
@@ -50,7 +51,7 @@ defineProps<{
|
|
|
width: 70px;
|
|
|
text-align: right;
|
|
|
height: 100%;
|
|
|
- margin-right: 20px;
|
|
|
+ margin-right: 10px;
|
|
|
color: rgba(255, 255, 255, 0.7);
|
|
|
}
|
|
|
}
|