feat: 兼容处理toolResult字段

This commit is contained in:
2026-02-04 12:00:55 +08:00
parent 76ead609d5
commit 8e27c27abf

View File

@@ -32,7 +32,7 @@ const props = defineProps({
const handleCall = () => {
const token = getAccessToken();
navigateTo(props.toolCall.data, { token: token });
navigateTo(props.toolCall.data || props.toolCall.toolResult, { token: token });
};
</script>