1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
| 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 };
|
|