update ui

This commit is contained in:
weichengwu 2025-11-27 17:00:06 +08:00
parent 7e62031116
commit dfbf82670b
3 changed files with 6 additions and 6 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 45 KiB

View File

@ -73,27 +73,27 @@
<div v-if="formData.marriageNo"
class="w-full flex flex-col items-start border border-gray-200 rounded-lg p-5 bg-white/85 shadow-[0_6px_14px_rgba(232,66,77,0.06)]">
<div>
<span class="inline-block w-25 text-right">结婚证字号</span>
<span class="inline-block w-25 text-right whitespace-nowrap text-gray-500">结婚证字号</span>
<span class="pl-2">{{ formData.marriageNo }}</span>
</div>
<div class="mt-2">
<span class="inline-block w-25 text-right">男方姓名</span>
<span class="inline-block w-25 text-right whitespace-nowrap text-gray-500">男方姓名</span>
<span class="pl-2">{{ formData.husbandName }}</span>
</div>
<div class="mt-2">
<span class="inline-block w-25 text-right">男方身份证</span>
<span class="inline-block w-25 text-right whitespace-nowrap text-gray-500">男方身份证</span>
<span class="pl-2 break-all">{{ formData.husbandId || '-' }}</span>
</div>
<div class="mt-2">
<span class="inline-block w-25 text-right">女方姓名</span>
<span class="inline-block w-25 text-right whitespace-nowrap text-gray-500">女方姓名</span>
<span class="pl-2">{{ formData.wifeName }}</span>
</div>
<div class="mt-2">
<span class="inline-block w-25 text-right">女方身份证</span>
<span class="inline-block w-25 text-right whitespace-nowrap text-gray-500">女方身份证</span>
<span class="pl-2 break-all">{{ formData.wifeId || '-' }}</span>
</div>
<div class="mt-2">
<span class="inline-block w-25 text-right">登记日期</span>
<span class="inline-block w-25 text-right whitespace-nowrap text-gray-500">登记日期</span>
<span class="pl-2">{{ formData.registerDate || '-' }}</span>
</div>
</div>