You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ocr-web/src/config/home.ts

46 lines
582 B

export const timeOptions = [
{
label: '全部',
value: '',
},
{
label: '近3个月',
value: '3',
},
{
label: '近6个月',
value: '6',
},
{
label: '近9个月',
value: '9',
},
{
label: '近12个月',
value: '12',
},
{
label: '一年以上',
value: '99',
},
]
export const viewOptions = [
{
label: '平铺',
value: 'masonry',
},
{
label: '横版',
value: 'horizontalVersion',
},
{
label: '竖版',
value: 'verticalVersion',
},
{
label: '3:4',
value: '3:4',
},
]