+ [task#128784] add the title prop of multicolumn of thinkresult widget.

This commit is contained in:
wangzemei
2024-09-23 11:23:20 +08:00
committed by 孙浩
parent 52c183e317
commit b85eee8bbd
2 changed files with 9 additions and 1 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ class thinkPffa extends thinkModel
setClass('w-full h-full p-2.5 outline overflow-auto col justify-between gap-2 bg-' . $blockColor . '-100', $blockColor . '-outline'),
div
(
setClass('col items-center gap-2'),
setClass('block-content col items-center gap-2'),
div
(
setClass('item-step-title text-clip', 'text-' . $blockColor),
+8
View File
@@ -15,4 +15,12 @@ window.initThinkResult = function()
{
$(this).attr('title', $(this).val());
});
setTimeout(function()
{
$('.think-result-content .form-batch-table input').each(function()
{
$(this).attr('title', $(this).val());
});
}, 50);
}