* [task#131071] modify the display of multicolumn.

This commit is contained in:
wangzemei
2024-10-29 09:45:50 +08:00
committed by 朱金勇
parent 2e033518d0
commit 2b66b7692b
+8 -1
View File
@@ -101,7 +101,14 @@ class thinkModel extends wg
if($step->link['showMethod'] == 2)
{
$className = "card-{$step->options->questionType}";
$resultCard = $this->buildQuestionItem($step);
if($step->options->questionType == 'multicolumn' && $this->checkEmptyOfMulticolumn($step->answer->result))
{
$resultCard = array();
}
else
{
$resultCard = $this->buildQuestionItem($step);
}
}
elseif($step->link['showMethod'] == '1')
{