diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f7f2c9bebd4c56ac29de0b89af892d9681e2937..8192dd5ce41d5349e032ce11f4a5836e5ab00ce0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ - modal工具补充extendConfirm弹出确认操作方法 - 树节点新增title +- 直接内容新增title ## [0.7.41-alpha.35] - 2025-11-04 diff --git a/src/common/rawitem/rawitem.tsx b/src/common/rawitem/rawitem.tsx index 51599f60be539ac03b4d34ff6f29dfff4ebedbf7..6b392ff9f817607e70dfbfd433d22bead5c146d5 100644 --- a/src/common/rawitem/rawitem.tsx +++ b/src/common/rawitem/rawitem.tsx @@ -327,6 +327,10 @@ export const IBizRawItem = defineComponent({ return null; }; - return
{renderContent()}
; + return ( +
+ {renderContent()} +
+ ); }, });