|
@@ -1,5 +1,5 @@
|
|
<?php
|
|
<?php
|
|
-if(!$contentData) {
|
|
|
|
|
|
+if(!$contentData || !isset($contentData['items']) || !count($contentData['items'])) {
|
|
$contentData = [
|
|
$contentData = [
|
|
"items" => [
|
|
"items" => [
|
|
[
|
|
[
|
|
@@ -13,18 +13,6 @@ if(!$contentData) {
|
|
];
|
|
];
|
|
}
|
|
}
|
|
|
|
|
|
-if(!isset($contentData['items'])){
|
|
|
|
- $contentData['items'] = [
|
|
|
|
- [
|
|
|
|
- "title" => "",
|
|
|
|
- "icd" => "",
|
|
|
|
- "coa" => "",
|
|
|
|
- "detail" => "",
|
|
|
|
- "plan" => "",
|
|
|
|
- ]
|
|
|
|
- ];
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
$formID = rand(0, 100000);
|
|
$formID = rand(0, 100000);
|
|
?>
|
|
?>
|
|
<div id="dxSection">
|
|
<div id="dxSection">
|
|
@@ -49,7 +37,7 @@ $formID = rand(0, 100000);
|
|
</label>
|
|
</label>
|
|
</th>
|
|
</th>
|
|
<th class="px-2 text-secondary border-bottom-0 w-35">Title</th>
|
|
<th class="px-2 text-secondary border-bottom-0 w-35">Title</th>
|
|
- <th class="px-2 text-secondary border-bottom-0">ICD</th>
|
|
|
|
|
|
+ <th class="px-2 text-secondary border-bottom-0 min-width-140px">ICD</th>
|
|
<th class="px-2 text-secondary border-bottom-0 w-25">Detail</th>
|
|
<th class="px-2 text-secondary border-bottom-0 w-25">Detail</th>
|
|
<th class="px-2 text-secondary border-bottom-0 w-25">Plan</th>
|
|
<th class="px-2 text-secondary border-bottom-0 w-25">Plan</th>
|
|
<th class="px-2 text-secondary border-bottom-0"></th>
|
|
<th class="px-2 text-secondary border-bottom-0"></th>
|