优化台桌状态

This commit is contained in:
gyq
2025-05-10 15:15:43 +08:00
parent 4d939b2889
commit 2ba61eab19
7 changed files with 113 additions and 105 deletions

View File

@@ -0,0 +1,42 @@
export default [
{
label: "未绑定",
type: "unbound",
color: "#909090",
},
{
label: "空闲",
type: "idle",
color: "#187CAA",
},
{
label: "点餐中",
type: "ordering",
color: "#46AEA4",
},
{
label: "未结账",
type: "unsettled",
color: "#DD3F41",
},
{
label: "支付中",
type: "paying",
color: "#909090",
},
{
label: "待清台",
type: "settled ",
color: "#FF9500",
},
{
label: "关台",
type: "closed",
color: "#DDDDDD",
},
{
label: "预定",
type: "subscribe",
color: "#58B22C",
},
];