export default { enums: { buildType: { ExactIntelligent: 'ExactIntelligent', FullIntelligent: 'FullIntelligent', ExactHand: 'ExactHand', FullHand: 'FullHand' }, buildTypes: [ {id: 'ExactIntelligent', name: '定向智能'}, {id: 'FullIntelligent', name: '全量智能'}, {id: 'ExactHand', name: '定向手动'}, {id: 'FullHand', name: '全量手动'} ] }, config: { exactColumns: [ {label: '组卷已完成', prop: 'send'}, {label: '组卷未完成', prop: 'unfinish'}, {label: '定向未组卷', prop: 'unsend'}, {label: '未定向未组卷', prop: 'unexact'}, ], fullColumns: [ {label: '组卷已完成', prop: 'send'}, {label: '组卷未完成', prop: 'unfinish'}, {label: '未组卷', prop: 'unsend'}, ] } }