src/components/chat/chatComponents/summaryCom/components/recordSetTable/RecordSetTable.vue
@@ -339,7 +339,8 @@ // 计算每一列最长的标题字符串和标题字符串长度 for (const item of tableValues.value) { item.map((subItem, index) => { const subItemLen = subItem?.gblen(); // subItem 可能是 数字 const subItemLen = (subItem +'')?.gblen(); if (maxLenList[index] < subItemLen) { maxLenList[index] = subItemLen; maxStrList[index] = subItem;