config.ts
405 Bytes
import type { EnumArrayItem } from "@/@type/module/basic"
interface EnumArrayItemWithMatch extends EnumArrayItem {
match: boolean
}
/**
* 栏目类型
*/
export const types: EnumArrayItemWithMatch[] = [
{
label: '权威资讯',
value: '1',
match: false
}, {
label: '公益活动',
value: '2',
match: true
}, {
label: '服务',
value: '3',
match: false
}
]