mirror of
https://github.com/JetSprow/J-Board-Lite.git
synced 2026-05-01 01:14:10 +05:30
16 lines
441 B
TypeScript
16 lines
441 B
TypeScript
import type { SupportTicketPriority, SupportTicketStatus } from "@prisma/client";
|
|
|
|
export const supportTicketStatusLabels: Record<SupportTicketStatus, string> = {
|
|
OPEN: "待处理",
|
|
USER_REPLIED: "用户已回复",
|
|
ADMIN_REPLIED: "管理员已回复",
|
|
CLOSED: "已关闭",
|
|
};
|
|
|
|
export const supportTicketPriorityLabels: Record<SupportTicketPriority, string> = {
|
|
LOW: "低",
|
|
NORMAL: "普通",
|
|
HIGH: "高",
|
|
URGENT: "紧急",
|
|
};
|