A modern vue admin. It is based on Vue3, vite and TypeScript. It's fast!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

29 lines
649 B

/**
* 文件表 国际化信息
*/
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: '请输入文件存储器',
},
},
};