diff --git a/src/pages/Submissions.vue b/src/pages/Submissions.vue index af3a419..b577d87 100644 --- a/src/pages/Submissions.vue +++ b/src/pages/Submissions.vue @@ -226,9 +226,9 @@ const columns: DataTableColumn[] = [ width: 42, render: (row) => { const map: Record = { - featured: { label: "精", type: "success" }, - pending: { label: "评", type: "default" }, - low: { label: "改", type: "warning" }, + featured: { label: "夯", type: "success" }, + pending: { label: "N", type: "default" }, + low: { label: "拉", type: "warning" }, } if (!row.zone || !map[row.zone]) return null const { label, type } = map[row.zone]