| 1234567891011121314151617181920212223242526272829 |
- /**
- * 文件表 国际化信息
- */
- export default {
- trans: true,
- key: 'system.views.file',
- data: {
- title: {
- fileId: '文件ID',
- fileStorageId: '文件存储器',
- fileName: '文件名',
- type: '类型',
- contentType: '文件类型',
- fileSize: '文件大小',
- },
- validate: {
- fileId: '请输入文件ID',
- fileStorageId: '请输入文件存储器',
- fileName: '请输入文件名',
- type: '请输入类型',
- },
- rules: {},
- search: {
- fileName: '请输入文件名',
- type: '请输入类型',
- fileStorageId: '请输入文件存储器',
- },
- },
- };
|