add workload plans
Some checks failed
Build and Publish / build-release (push) Failing after 18m53s

This commit is contained in:
2026-04-20 16:24:55 -05:00
parent 7a853b94b6
commit 59c4c4626d
6 changed files with 369 additions and 350 deletions

View File

@@ -308,7 +308,13 @@ const applicantRows = computed(() => {
<td v-for="plan in allPlans" :key="plan.plan_id"
class="py-3 px-4 text-center align-top pt-4"
:class="plan.plan_id === policy.accepted_plan_id ? 'bg-green-50' : ''">
<p class="text-xs text-gray-600 leading-relaxed">{{ plan.coverage_details }}</p>
<div v-if="plan.coverage_details" class="space-y-1">
<div v-for="(value, key) in plan.coverage_details" :key="key" class="flex text-xs">
<span class="font-medium text-gray-500">{{ key }}:</span>
<span class="text-gray-700 ml-1">{{ value }}</span>
</div>
</div>
<div v-else class="text-gray-400 text-xs"></div>
</td>
</tr>
<!-- Accept row -->