添加发布内容字数限制
This commit is contained in:
parent
f342062178
commit
890a5b7e76
@ -70,6 +70,10 @@ const submitComment = async () => {
|
|||||||
if (!commentBody) {
|
if (!commentBody) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (commentBody.length > 400) {
|
||||||
|
swal.tip('error', '太长了! ');
|
||||||
|
return;
|
||||||
|
}
|
||||||
commentSubmitLoading.value = true;
|
commentSubmitLoading.value = true;
|
||||||
try {
|
try {
|
||||||
const response = await api.post(`/comments/${props.commentId}/replies`, (() => {
|
const response = await api.post(`/comments/${props.commentId}/replies`, (() => {
|
||||||
|
@ -36,7 +36,7 @@ onMounted(async () => {
|
|||||||
// 根据返回的 code 判断是否成功
|
// 根据返回的 code 判断是否成功
|
||||||
if (code === 0) {
|
if (code === 0) {
|
||||||
textDisplay.value = '验证成功! ';
|
textDisplay.value = '验证成功! ';
|
||||||
swal.tip('success', '创建账户成功,即将跳转登录页面');
|
swal.tip('success', '创建账户成功', '即将跳转登录页面');
|
||||||
// 延迟跳转到登录页面
|
// 延迟跳转到登录页面
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
router.push('/login');
|
router.push('/login');
|
||||||
@ -51,7 +51,7 @@ onMounted(async () => {
|
|||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('验证请求失败:', error);
|
console.error('验证请求失败:', error);
|
||||||
textDisplay.value = '服务器错误,请稍后再试';
|
textDisplay.value = '服务器错误,请稍后再试';
|
||||||
swal.tip('error', '服务器错误,请稍后再试');
|
swal.tip('error', '服务器错误', '请稍后再试');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
@ -132,6 +132,10 @@ const submitComment = async () => {
|
|||||||
if (!commentBody) {
|
if (!commentBody) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (commentBody.length > 400) {
|
||||||
|
swal.tip('error', '太长了! ');
|
||||||
|
return;
|
||||||
|
}
|
||||||
commentSubmitLoading.value = true;
|
commentSubmitLoading.value = true;
|
||||||
try {
|
try {
|
||||||
const response = await api.post(`/blogs/${id}/comments`, (() => {
|
const response = await api.post(`/blogs/${id}/comments`, (() => {
|
||||||
|
@ -79,13 +79,18 @@ async function sendMessage() {
|
|||||||
swal.tip('info', '不得为空')
|
swal.tip('info', '不得为空')
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (userInput.value.trim().length > 500) {
|
||||||
|
swal.tip('error', '太长了!')
|
||||||
|
return;
|
||||||
|
}
|
||||||
sendCD.value = 'wait';
|
sendCD.value = 'wait';
|
||||||
try {
|
try {
|
||||||
const response = await api.post('/postmessage', {
|
const response = await api.post('/postmessage', {
|
||||||
TOKEN: AuthService.getToken(),
|
TOKEN: AuthService.getToken(),
|
||||||
CONTENT: userInput.value
|
CONTENT: userInput.value.trim()
|
||||||
});
|
});
|
||||||
if (response.code !== 0) {
|
if (response.code !== 0) {
|
||||||
|
sendCD.value = 0;
|
||||||
swal.tip('error', '发送失败');
|
swal.tip('error', '发送失败');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user