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.
38 lines
867 B
38 lines
867 B
2 years ago
|
import { Lang } from 'noob-mengyxu';
|
||
|
export default class Zh extends Lang.Zh {
|
||
|
table = {
|
||
|
title: '表格演示',
|
||
|
props: ['案件名称', '任务名称', '用户名', '日志内容', '产生时间'],
|
||
|
};
|
||
|
form = {
|
||
|
title: '表单演示',
|
||
|
input: '输入框',
|
||
|
select: '选择框',
|
||
|
datePicker: '时间选择框',
|
||
|
pass: '校验通过',
|
||
|
bishu: '必输',
|
||
|
bixuan: '必选',
|
||
|
maxLen: '最长',
|
||
|
char: '字符',
|
||
|
num: '整数',
|
||
|
hex: '十六进制数字',
|
||
|
lan: '经度',
|
||
|
lat: '纬度',
|
||
|
email: '电子邮箱',
|
||
|
phone: '手机号码',
|
||
|
idCard: '身份证号码',
|
||
|
pwd: '简单密码',
|
||
|
password: '普通密码',
|
||
|
};
|
||
|
menu = {
|
||
|
operator: '运维',
|
||
|
home: '主页',
|
||
|
base: '通用',
|
||
|
table: '表格',
|
||
|
form: '表单',
|
||
|
tool: '工具',
|
||
|
terminal: '终端',
|
||
|
color: '颜色',
|
||
|
};
|
||
|
}
|