|
@@ -12,51 +12,57 @@
|
|
<div class="p-0 mcp-theme-1" id="fdb-pg">
|
|
<div class="p-0 mcp-theme-1" id="fdb-pg">
|
|
<div class="px-3 py-2 bg-light border-bottom d-flex align-items-center font-weight-bold font-size-14">FDB Playground</div>
|
|
<div class="px-3 py-2 bg-light border-bottom d-flex align-items-center font-weight-bold font-size-14">FDB Playground</div>
|
|
<div class="p-3">
|
|
<div class="p-3">
|
|
- <div class="d-flex align-items-baseline mb-2">
|
|
|
|
- <span class="font-size-14 font-weight-bold">Allergies</span>
|
|
|
|
- <a href="#" v-on:click.prevent="addAllergy()" class="ml-3">+ Add</a>
|
|
|
|
- </div>
|
|
|
|
- <table class="table table-sm table-striped table-bordered m-0" style="table-layout: fixed">
|
|
|
|
- <thead>
|
|
|
|
- <tr>
|
|
|
|
- <th class="border-bottom-0 text-secondary">Allergy</th>
|
|
|
|
- </tr>
|
|
|
|
- </thead>
|
|
|
|
- <tbody>
|
|
|
|
- <tr v-for="(item, index) in allergies">
|
|
|
|
- <td class="p-0 position-relative">
|
|
|
|
- <input type="text" class="rounded-0 border-0 form-control form-control-sm min-width-unset"
|
|
|
|
- fdb-allergy-suggest-search :fdb-suggest-group="index">
|
|
|
|
- </td>
|
|
|
|
- </tr>
|
|
|
|
- </tbody>
|
|
|
|
- </table>
|
|
|
|
- <hr class="m-neg-4 my-4">
|
|
|
|
- <div class="d-flex align-items-baseline mb-2">
|
|
|
|
- <span class="font-size-14 font-weight-bold">Current Problems</span>
|
|
|
|
- <a href="#" v-on:click.prevent="addDx()" class="ml-3">+ Add</a>
|
|
|
|
|
|
+ <div class="row">
|
|
|
|
+ <div class="col-6">
|
|
|
|
+ <div class="d-flex align-items-baseline mb-2">
|
|
|
|
+ <span class="font-size-14 font-weight-bold">Allergies</span>
|
|
|
|
+ <a href="#" v-on:click.prevent="addAllergy()" class="ml-3">+ Add</a>
|
|
|
|
+ </div>
|
|
|
|
+ <table class="table table-sm table-striped table-bordered m-0" style="table-layout: fixed">
|
|
|
|
+ <thead>
|
|
|
|
+ <tr>
|
|
|
|
+ <th class="border-bottom-0 text-secondary">Allergy</th>
|
|
|
|
+ </tr>
|
|
|
|
+ </thead>
|
|
|
|
+ <tbody>
|
|
|
|
+ <tr v-for="(item, index) in allergies">
|
|
|
|
+ <td class="p-0 position-relative">
|
|
|
|
+ <input type="text" class="rounded-0 border-0 form-control form-control-sm min-width-unset"
|
|
|
|
+ fdb-allergy-suggest-search :fdb-suggest-group="index">
|
|
|
|
+ </td>
|
|
|
|
+ </tr>
|
|
|
|
+ </tbody>
|
|
|
|
+ </table>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="col-6">
|
|
|
|
+ <div class="d-flex align-items-baseline mb-2">
|
|
|
|
+ <span class="font-size-14 font-weight-bold">Current Problems</span>
|
|
|
|
+ <a href="#" v-on:click.prevent="addDx()" class="ml-3">+ Add</a>
|
|
|
|
+ </div>
|
|
|
|
+ <table class="table table-sm table-striped table-bordered m-0" style="table-layout: fixed">
|
|
|
|
+ <thead>
|
|
|
|
+ <tr>
|
|
|
|
+ <th class="border-bottom-0 text-secondary">Problem</th>
|
|
|
|
+ </tr>
|
|
|
|
+ </thead>
|
|
|
|
+ <tbody>
|
|
|
|
+ <tr v-for="(item, index) in dx">
|
|
|
|
+ <td class="p-0 position-relative">
|
|
|
|
+ <input type="text" class="rounded-0 border-0 form-control form-control-sm min-width-unset"
|
|
|
|
+ fdb-dx-suggest-search :fdb-suggest-group="index">
|
|
|
|
+ </td>
|
|
|
|
+ </tr>
|
|
|
|
+ </tbody>
|
|
|
|
+ </table>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
- <table class="table table-sm table-striped table-bordered m-0" style="table-layout: fixed">
|
|
|
|
- <thead>
|
|
|
|
- <tr>
|
|
|
|
- <th class="border-bottom-0 text-secondary">Problem</th>
|
|
|
|
- </tr>
|
|
|
|
- </thead>
|
|
|
|
- <tbody>
|
|
|
|
- <tr v-for="(item, index) in dx">
|
|
|
|
- <td class="p-0 position-relative">
|
|
|
|
- <input type="text" class="rounded-0 border-0 form-control form-control-sm min-width-unset"
|
|
|
|
- fdb-dx-suggest-search :fdb-suggest-group="index">
|
|
|
|
- </td>
|
|
|
|
- </tr>
|
|
|
|
- </tbody>
|
|
|
|
- </table>
|
|
|
|
<hr class="m-neg-4 my-4">
|
|
<hr class="m-neg-4 my-4">
|
|
<div class="d-flex align-items-baseline mb-2">
|
|
<div class="d-flex align-items-baseline mb-2">
|
|
<span class="font-size-14 font-weight-bold">Medications</span>
|
|
<span class="font-size-14 font-weight-bold">Medications</span>
|
|
<a href="#" v-on:click.prevent="addRx()" class="ml-3">+ Add</a>
|
|
<a href="#" v-on:click.prevent="addRx()" class="ml-3">+ Add</a>
|
|
</div>
|
|
</div>
|
|
- <table class="table table-sm table-striped table-bordered m-0" style="table-layout: fixed">
|
|
|
|
|
|
+ <table class="table table-sm table-bordered m-0" style="table-layout: fixed">
|
|
<thead>
|
|
<thead>
|
|
<tr>
|
|
<tr>
|
|
<th class="border-bottom-0 text-secondary">Medication</th>
|
|
<th class="border-bottom-0 text-secondary">Medication</th>
|