完善字符串类型的体验

This commit is contained in:
BBIT-Kai
2026-04-14 17:50:27 +08:00
parent 44181bcf5a
commit 55a2490e14
8 changed files with 92 additions and 16 deletions
@@ -275,7 +275,10 @@ onMounted(loadBatches);
>打开地图</a
>
</div>
<strong v-else :style="getFieldDisplayStyle(entry.field)">
<strong
v-else
:style="getFieldDisplayStyle(entry.field)"
>
{{ formatFieldValue(entry.value) }}
</strong>
</div>
@@ -349,10 +352,7 @@ onMounted(loadBatches);
>打开地图</a
>
</div>
<strong
v-else
:style="getFieldDisplayStyle(entry.field)"
>
<strong v-else :style="getFieldDisplayStyle(entry.field)">
{{ formatFieldValue(entry.value) }}
</strong>
</div>
@@ -549,6 +549,7 @@ onMounted(loadBatches);
.access-card strong {
line-height: 1.6;
word-break: break-word;
white-space: pre-wrap;
}
.section-stack {
@@ -578,6 +579,11 @@ onMounted(loadBatches);
color: #6b7280;
}
.timeline-card strong {
white-space: pre-wrap;
word-break: break-word;
}
.kv-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));