|
|
@ -650,8 +650,20 @@ |
|
|
|
}); |
|
|
|
|
|
|
|
if (response.ok) { |
|
|
|
// 清空消息容器 |
|
|
|
const container = document.getElementById('messageContainer'); |
|
|
|
container.innerHTML = ''; |
|
|
|
|
|
|
|
// 清空查询结果 |
|
|
|
const resultText = document.getElementById('resultText'); |
|
|
|
resultText.textContent = ''; |
|
|
|
|
|
|
|
// 隐藏处理过程容器 |
|
|
|
hideProcessResult(); |
|
|
|
|
|
|
|
// 隐藏查询结果容器 |
|
|
|
hideResult(); |
|
|
|
|
|
|
|
showStatus('queryStatus', '消息已清空', 'success'); |
|
|
|
} else { |
|
|
|
showStatus('queryStatus', '清空消息失败', 'error'); |
|
|
|