Merge remote-tracking branch 'origin/master'

This commit is contained in:
ye1023
2026-07-29 13:50:44 +08:00
+3 -3
View File
@@ -83,7 +83,7 @@
<a-space direction="vertical" style="width: 100%">
<div v-if="responseInfo.success === true" style="margin-bottom: 8px">
<a-tag color="green">发送成功</a-tag>
<span v-if="responseInfo.messageId"> messageId: {{ responseInfo.messageId }}</span>
<span v-if="responseInfo.requestId"> requestId: {{ responseInfo.requestId }}</span>
</div>
<div v-else-if="responseInfo.success === false" style="margin-bottom: 8px">
<a-tag color="red">发送失败</a-tag>
@@ -212,12 +212,12 @@ async function handleSend() {
responseInfo.msgResponse = res.msgResponse;
}
responseInfo.success = res?.success;
responseInfo.messageId = res?.messageId;
responseInfo.requestId = res?.requestId;
responseInfo.errorMessage = res?.errorMessage;
responseInfo.responseCode = res?.responseCode;
if (res?.success) {
addLog('success', `发送成功!messageId: ${res?.messageId || '-'}`);
addLog('success', `发送成功!requestId: ${res?.requestId || '-'}`);
} else {
addLog('error', `发送失败: ${res?.errorMessage || '未知错误'}`);
}