Compare commits

..

No commits in common. "a02a50cc3cb1308546e10b3c84b02317061a7876" and "cb6c71cad1c094c258010e531d9aaa0431ce3690" have entirely different histories.

1 changed files with 1 additions and 1 deletions

View File

@ -1059,7 +1059,7 @@
$.get('/customer/service/sessions/' + sessionId, function(data) {
if (data.code === 0 && data.data) {
var session = data.data;
var html = '<strong>' + (session.customerName || '访客' + session.userId) + '</strong>';
var html = '<strong>' + (session.customerName || '访客' + session.sessionId) + '</strong>';
html += ' <span class="text-muted">(' + getStatusText(session.status) + ')</span>';
$('#currentSessionInfo').html(html);
}