@ -729,7 +729,7 @@ function trim(str) {
//校验只可输入大小写字母及数字
export function validateYS(rule, value, callback) {
if (value) {
const regs = /^[a-zA-Z0-9-_]+$/
const regs = /^[a-zA-Z0-9-_.]+$/
if(regs.test(value)){
callback()
} else {
@ -383,7 +383,7 @@ export const Itemarea = useCrudSchemas(reactive<CrudSchema[]>([
dictClass: 'string',
form: {
component: 'Switch',
value: 'FALSE',
value: 'TRUE',
componentProps: {
inactiveValue: 'FALSE',
activeValue: 'TRUE'
@ -401,7 +401,8 @@ export const Itemarea = useCrudSchemas(reactive<CrudSchema[]>([
activeValue: 'TRUE',
disabled: 'TRUE',
}
},
@ -428,7 +429,7 @@ export const Itemarea = useCrudSchemas(reactive<CrudSchema[]>([