const NoticeTypes = [ { label: '工作要求', value: 1, }, { label: '执法通知', value: 2, }, { label: '培训通知', value: 3, }, { label: '会议通知', value: 4, }, ]; const noticeTypeList = function () { return NoticeTypes; }; function toLabel(value) { const r = NoticeTypes.find(item => { return item.value == value; }); return r.label; } function toValue(label) { const r = NoticeTypes.find(item => { return item.label == label; }); return r.value; } export { NoticeTypes, noticeTypeList, toLabel, toValue };