wip(freight): migration 0017 + model/column-list groundwork for add-freight-templates

This commit is contained in:
Chengdong Zhang
2026-09-23 17:39:45 +08:00
parent a83e857bdf
commit 5b426486ac
105 changed files with 6193 additions and 1566 deletions
+2 -3
View File
@@ -25,8 +25,8 @@ onMounted(() => {
<template>
<VCard class="min-h-[560px]">
<h1 class="mb-4 text-xl font-bold text-text">{{ t("user.invoicesTitle") }}</h1>
<div v-if="loading" class="px-0 py-5 text-muted">{{ t("common.loading") }}</div>
<h1 class="text-text mb-4 text-xl font-bold">{{ t("user.invoicesTitle") }}</h1>
<div v-if="loading" class="text-muted px-0 py-5">{{ t("common.loading") }}</div>
<UiEmptyState v-else-if="rows.length === 0" :text="t('user.noInvoices')" />
<VTable v-else>
<thead>
@@ -54,4 +54,3 @@ onMounted(() => {
</VTable>
</VCard>
</template>