修改台桌状态名称
This commit is contained in:
parent
14cb314a5a
commit
5bf0a90e67
|
|
@ -1,30 +1,34 @@
|
||||||
export const $status = {
|
export const $status = {
|
||||||
pending: {
|
pending: {
|
||||||
label: "挂单中",
|
label: "挂单中",
|
||||||
type: "#E6A23C",
|
type: "#E6A23C",
|
||||||
},
|
},
|
||||||
using: {
|
using: {
|
||||||
label: "开台中",
|
label: "开台中",
|
||||||
type: "rgb(250,85,85)",
|
type: "#fa5555",
|
||||||
},
|
},
|
||||||
paying: {
|
paying: {
|
||||||
label: "结算中",
|
label: "结算中",
|
||||||
type: "#E6A23C",
|
type: "#E6A23C",
|
||||||
},
|
},
|
||||||
idle: {
|
idle: {
|
||||||
label: "空闲",
|
label: "空闲",
|
||||||
type: "#318AFE",
|
type: "#3F9EFF",
|
||||||
},
|
},
|
||||||
subscribe: {
|
subscribe: {
|
||||||
label: "预定",
|
label: "预定",
|
||||||
type: "#E6A23C",
|
type: "rgb(34, 191, 100)",
|
||||||
},
|
},
|
||||||
closed: {
|
closed: {
|
||||||
label: "关台",
|
label: "关台",
|
||||||
type: "#ddd",
|
type: "rgb(221,221,221)",
|
||||||
},
|
},
|
||||||
cleaning: {
|
// opening: {
|
||||||
label: "台桌清理中",
|
// label: "开台中",
|
||||||
type: "#909399",
|
// type: "#67C23A",
|
||||||
},
|
// },
|
||||||
|
cleaning: {
|
||||||
|
label: "待清台",
|
||||||
|
type: "#FAAD14",
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue