fixissue_planIcon

This commit is contained in:
sunjun
2022-06-16 07:57:40 +00:00
parent 7383076af1
commit 8b4d326b90
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -252,7 +252,7 @@
$planIDList = explode(',', $planIDList);
foreach($planIDList as $planID)
{
if(isset($planGroups[$productID][$planID])) echo '<div class="col-xs-12">' . html::a($this->createLink('productplan', 'view', "planID={$planID}"), $product->name . '/' . $planGroups[$productID][$planID]) . '</div>';
if(isset($planGroups[$productID][$planID])) echo '<div class="col-xs-12">' . "<i class='icon icon-calendar text-muted'></i> " . html::a($this->createLink('productplan', 'view', "planID={$planID}"), $product->name . '/' . $planGroups[$productID][$planID]) . '</div>';
}
}
}