From 607b254b53f223a0b39b9e6743d3b35f5d39df74 Mon Sep 17 00:00:00 2001 From: clunt Date: Fri, 14 Nov 2025 16:24:42 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E5=A4=8Dbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/templates/customer/service/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ruoyi-admin/src/main/resources/templates/customer/service/index.html b/ruoyi-admin/src/main/resources/templates/customer/service/index.html index fad2669e..2224f445 100644 --- a/ruoyi-admin/src/main/resources/templates/customer/service/index.html +++ b/ruoyi-admin/src/main/resources/templates/customer/service/index.html @@ -957,7 +957,7 @@ console.log('处理转人工请求 ' + (index + 1) + ':', request); html += '
'; html += '
'; - html += '
会话ID: ' + request.sessionId + '
'; + html += '
会话ID: ' + request.userId + '
'; html += '
原因: ' + (request.reason || '无') + '
'; html += '
' + formatTime(request.createTime) + '
'; html += '
'; @@ -1059,7 +1059,7 @@ $.get('/customer/service/sessions/' + sessionId, function(data) { if (data.code === 0 && data.data) { var session = data.data; - var html = '' + (session.customerName || '访客' + session.sessionId) + ''; + var html = '' + (session.customerName || '访客' + session.userId) + ''; html += ' (' + getStatusText(session.status) + ')'; $('#currentSessionInfo').html(html); }