fix: bug#16312

This commit is contained in:
haodd 2023-07-13 11:57:57 +08:00
parent 089a7efbd7
commit 1d60415203
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ const vailId = async (_: Record<string, any>, value: string) => {
if (!props?.data?.id && value) {
const resp = await isExists(value);
if (resp.status === 200 && resp.result) {
return Promise.reject('ID重复');
return Promise.reject('该ID已存在');
} else {
return Promise.resolve();
}