fix: pc 文章提交提示语言未区分语言

This commit is contained in:
2025-07-02 15:06:28 +08:00
parent 8bb323f3f5
commit 6e2800f361

View File

@@ -170,9 +170,9 @@ class Article extends Common
]);
$ret = ArticleLeaveMessageModel::create($data);
if ($ret->isEmpty()) {
return error(lang('留言提交失败'));
return error(lang('信息提交失败'));
}
return success(lang('留言提交成功'));
return success(lang('信息已成功提交!'));
}
}