Merge pull request #2708 from dataease/pr@dev@fix_basic_setting

fix(系统管理): 系统参数基础设置消息保留时间正则验证规则错误
This commit is contained in:
fit2cloud-chenyw 2022-07-26 20:21:48 +08:00 committed by GitHub
commit b71c821b7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -99,7 +99,7 @@ export default {
],
msgTimeOut: [
{
pattern: '^([1-9]|[1-9]\\d|365)$',
pattern: '^([1-9]|[1-9][0-9]|[1-2][0-9][0-9]|3[0-5][0-9]|36[0-5])$',
message: this.$t('system_parameter_setting.msg_error'),
trigger: 'blur'
}