11 lines
430 B
JavaScript
11 lines
430 B
JavaScript
export default {
|
|
pending: { label: '挂单中', type: '#E6A23C' },
|
|
cleaning: { label: '待清台', type: '#FAAD14' },
|
|
using: { label: '开台中', type: '#FF4D4F' },
|
|
idle: { label: '空闲', type: '#3F9EFF' },
|
|
paying: { label: '结算中', type: '#E6A23C' },
|
|
closed: { label: '关台', type: '#DDDDDD' },
|
|
subscribe: { label: '预约', type: '#52C41A ' },
|
|
unbind: { label: '未绑定', type: 'rgb(221,221,221)' }
|
|
}
|