|
@@ -31,11 +31,11 @@ if(count($dxContentData['items'])) {
|
|
<?= isset($item["icd"]) ? '/ ' . $item["icd"] : '' ?>
|
|
<?= isset($item["icd"]) ? '/ ' . $item["icd"] : '' ?>
|
|
<?= isset($item["coa"]) ? '/ ' . $item["coa"] : '' ?>
|
|
<?= isset($item["coa"]) ? '/ ' . $item["coa"] : '' ?>
|
|
</div>
|
|
</div>
|
|
- <?php if(isset($item["detail"])): ?>
|
|
|
|
|
|
+ <?php if(isset($item["detail"]) && !empty($item["detail"])): ?>
|
|
<div class="text-secondary font-weight-bold">Detail</div>
|
|
<div class="text-secondary font-weight-bold">Detail</div>
|
|
<div class="ml-2"><?= $item["detail"] ?></div>
|
|
<div class="ml-2"><?= $item["detail"] ?></div>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
- <?php if(isset($item["plan"])): ?>
|
|
|
|
|
|
+ <?php if(isset($item["plan"]) && !empty($item["plan"])): ?>
|
|
<div class="text-secondary font-weight-bold">Plan</div>
|
|
<div class="text-secondary font-weight-bold">Plan</div>
|
|
<div class="ml-2"><?= $item["plan"] ?></div>
|
|
<div class="ml-2"><?= $item["plan"] ?></div>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|