|
@@ -125,7 +125,7 @@
|
|
</tr>
|
|
</tr>
|
|
</tbody>
|
|
</tbody>
|
|
</table>
|
|
</table>
|
|
- <div v-if="currentPrescription" class="min-width-700px ml-2 border align-self-stretch p-3">
|
|
|
|
|
|
+ <div v-if="currentPrescription" class="ml-2 border align-self-stretch p-3">
|
|
<div class="d-flex align-items-center">
|
|
<div class="d-flex align-items-center">
|
|
<h3 class="font-size-16 m-0">
|
|
<h3 class="font-size-16 m-0">
|
|
<span class="mr-1 font-size-16">@{{ currentPrescription.erx_category }} / @{{ currentPrescription.created_at_friendly_short }}</span>
|
|
<span class="mr-1 font-size-16">@{{ currentPrescription.erx_category }} / @{{ currentPrescription.created_at_friendly_short }}</span>
|
|
@@ -230,7 +230,7 @@
|
|
<label for="" class="text-secondary font-weight-bold m-0">Add From Existing Medications</label>
|
|
<label for="" class="text-secondary font-weight-bold m-0">Add From Existing Medications</label>
|
|
<a href="#" v-on:click.prevent="setAddMode('')" class="ml-auto">Close</a>
|
|
<a href="#" v-on:click.prevent="setAddMode('')" class="ml-auto">Close</a>
|
|
</div>
|
|
</div>
|
|
- <table class="m-0 table table-sm border bg-white table-hover">
|
|
|
|
|
|
+ <table class="m-0 table table-sm border bg-white table-hover table-bordered">
|
|
<tr>
|
|
<tr>
|
|
<th>Medication</th>
|
|
<th>Medication</th>
|
|
<th>Dispense</th>
|
|
<th>Dispense</th>
|
|
@@ -239,8 +239,8 @@
|
|
</tr>
|
|
</tr>
|
|
<tr v-for="drug in existingDrugs" v-if="notAlreadyAdded(drug.data.name)">
|
|
<tr v-for="drug in existingDrugs" v-if="notAlreadyAdded(drug.data.name)">
|
|
<td class="min-width-200px">@{{ drug.data.name }}</td>
|
|
<td class="min-width-200px">@{{ drug.data.name }}</td>
|
|
- <td class="width-70px py-0 pr-0"><input type="text" class="form-control form-control-sm min-width-unset rounded-0 border-top-0 border-bottom-0 border-right-0 shadow-none" v-model="drug.data.dispense"></td>
|
|
|
|
- <td class="width-70px py-0 pl-0"><input type="text" class="form-control form-control-sm min-width-unset rounded-0 border-top-0 border-bottom-0 shadow-none" v-model="drug.data.refills"></td>
|
|
|
|
|
|
+ <td class="width-70px bg-white py-0 pr-0"><input type="text" class="form-control form-control-sm min-width-unset rounded-0 border-0 shadow-none" v-model="drug.data.dispense"></td>
|
|
|
|
+ <td class="width-70px bg-white py-0 pl-0"><input type="text" class="form-control form-control-sm min-width-unset rounded-0 border-0 shadow-none" v-model="drug.data.refills"></td>
|
|
<td class="text-right">
|
|
<td class="text-right">
|
|
<a href="#" v-on:click.prevent="addExistingDrugToERx(drug.uid)" class="text-nowrap">Add to eRx</a>
|
|
<a href="#" v-on:click.prevent="addExistingDrugToERx(drug.uid)" class="text-nowrap">Add to eRx</a>
|
|
</td>
|
|
</td>
|