Merge branch 'dev-3.6' of git.mesalab.cn:nezha/nezha-fronted into dev-3.7

This commit is contained in:
zyh
2023-07-06 17:57:44 +08:00

View File

@@ -545,6 +545,15 @@ export default {
if (findIndex !== lastIndex) {
callback(new Error(this.$t('error.nameDuplicate')))
} else {
// 没有重复的 则清除校验
nameArr.forEach((item, index) => {
const findIndex = nameArr.indexOf(item)
const lastIndex = nameArr.lastIndexOf(item)
const reg = /^[a-zA-Z_][a-zA-Z0-9_]*$/
if (item && reg.test(item) && findIndex == lastIndex) {
this.$refs.form.clearValidate('param.variables.' + index + '.name')
}
})
callback()
}
}, 100)