ec9ec2ce
wuxw
开发完成物业公告问题
|
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
|
export const messages = {
en: {
noticeDetail: {
title: 'Notice Details',
back: 'Back',
titleLabel: 'Title',
noticeType: 'Notice Type',
startTime: 'Start Time',
endTime: 'End Time',
createTime: 'Create Time',
content: 'Content',
fetchError: 'Failed to fetch notice details'
}
},
zh: {
noticeDetail: {
title: '公告详情',
back: '返回',
titleLabel: '标题',
noticeType: '公告类型',
startTime: '开始时间',
endTime: '结束时间',
createTime: '创建时间',
content: '公告内容',
fetchError: '获取公告详情失败'
}
}
}
|