cashier_app/pageTable/index/tableStatus.js

41 lines
553 B
JavaScript

export default [{
label: "未绑定",
type: "unbound",
color: "#909090",
},
{
label: "空闲",
type: "idle",
color: "#3F9EFF",
},
{
label: "点餐中",
type: "ordering",
color: "#63ACA4",
},
{
label: "未结账",
type: "unsettled",
color: "#CC4C48",
},
{
label: "支付中",
type: "paying",
color: "#909090",
},
{
label: "待清台",
type: "settled ",
color: "#F19A37",
},
{
label: "关台",
type: "closed",
color: "#DDDDDD",
},
{
label: "预定",
type: "subscribe",
color: "#6FB043",
},
];