|
@@ -115,7 +115,7 @@ $formID = rand(0, 100000);
|
|
|
v-on:change="includeChanged()">
|
|
|
</label>
|
|
|
</td>
|
|
|
- <td>
|
|
|
+ <td v-show="inclusion[index]" >
|
|
|
<input type="text" :data-index="index"
|
|
|
class="form-control form-control-sm font-weight-bold font-size-14"
|
|
|
data-field="title" placeholder="Title" v-model="item.title" autofocus required>
|
|
@@ -135,21 +135,7 @@ $formID = rand(0, 100000);
|
|
|
</div>
|
|
|
<textarea type="text" class="form-control form-control-sm" v-model="item.detail" placeholder="Updated HPI *"></textarea>
|
|
|
</td>
|
|
|
- {{--<td>
|
|
|
- <input type="text" :data-index="index"
|
|
|
- class="form-control form-control-sm canvas-dx-title"
|
|
|
- data-field="icd" placeholder="ICD" v-model="item.icd">
|
|
|
- <select v-model="item.coa" class="form-control form-control-sm pl-1" required>
|
|
|
- <option value="">-- select --</option>
|
|
|
- <option value="Chronic" selected>Chronic</option>
|
|
|
- <option value="Acute">Acute</option>
|
|
|
- </select>
|
|
|
- </td>
|
|
|
- <td><textarea type="text" class="form-control form-control-sm"
|
|
|
- dx-rte :data-index="index" data-field="detail"
|
|
|
- v-model="item.detail"></textarea>
|
|
|
- </td>--}}
|
|
|
- <td>
|
|
|
+ <td v-show="inclusion[index]" >
|
|
|
<div class="px-2 py-1 bg-white border-bottom text-secondary" v-if="item.previous_plan">
|
|
|
<b><i class="fa fa-clock mr-1 text-sm"></i>Previous Plan: </b><br>
|
|
|
<div v-html="item.previous_plan"></div>
|
|
@@ -158,7 +144,7 @@ $formID = rand(0, 100000);
|
|
|
dx-rte :data-index="index" data-field="plan"
|
|
|
v-model="item.plan"></textarea>
|
|
|
</td>
|
|
|
- <td class="px-2 text-nowrap">
|
|
|
+ <td v-show="inclusion[index]" class="px-2 text-nowrap">
|
|
|
<a href="#"
|
|
|
v-if="!isFavorite(item)" v-on:click.prevent="addToFavorites(item)"
|
|
|
class="mt-1 d-inline-block mr-1 text-secondary on-hover-opaque"
|
|
@@ -176,6 +162,9 @@ $formID = rand(0, 100000);
|
|
|
<i class="fa fa-trash-alt"></i>
|
|
|
</a>
|
|
|
</td>
|
|
|
+ <td v-show="!inclusion[index]" colspan="3" class="align-middle pl-2">
|
|
|
+ <span v-html="item.title"></span>
|
|
|
+ </td>
|
|
|
</tr>
|
|
|
</tbody>
|
|
|
</table>
|