9 lines
306 B
JavaScript
9 lines
306 B
JavaScript
|
|
/**
|
||
|
|
* 签到/打卡/出差
|
||
|
|
* @type {{"1": {label: 签到, bgc: string}, "2": {label: 打卡, bgc: string}, "3": {label: 出差, bgc: string}}}
|
||
|
|
*/
|
||
|
|
export const MapType = {
|
||
|
|
'1': {label:'签到', color:'#F5813A'},
|
||
|
|
'2': {label:'打卡', color:'#1989FA'},
|
||
|
|
'3': {label:'出差', color:'#42b883'}
|
||
|
|
}
|