Files
cashier_app/pageTable/index/tableStatus.js
2025-06-03 10:09:56 +08:00

41 lines
553 B
JavaScript

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",
},
];