|
@@ -1,6 +1,6 @@
|
|
<div id="prescriptions-{{$patient->id}}" v-cloak>
|
|
<div id="prescriptions-{{$patient->id}}" v-cloak>
|
|
- <div class="d-flex align-items-center py-2">
|
|
|
|
- <h6 class="my-0 font-weight-bold font-size-16">ERx & Orders</h6>
|
|
|
|
|
|
+ <div class="d-flex align-items-center mb-3">
|
|
|
|
+ <div class="font-weight-bold text-secondary font-size-14 m-0">ERx & Orders</div>
|
|
@if(!request()->input('erx_category') || request()->input('erx_category') === 'DRUG')
|
|
@if(!request()->input('erx_category') || request()->input('erx_category') === 'DRUG')
|
|
<span class="mx-2 text-secondary on-hover-opaque">|</span>
|
|
<span class="mx-2 text-secondary on-hover-opaque">|</span>
|
|
<a href="#" v-on:click.prevent="newERx('DRUG')">+ Drug</a>
|
|
<a href="#" v-on:click.prevent="newERx('DRUG')">+ Drug</a>
|
|
@@ -33,7 +33,7 @@
|
|
</thead>
|
|
</thead>
|
|
<tbody>
|
|
<tbody>
|
|
<tr v-for="(prescription, index) in prescriptions" :class="currentPrescription && currentPrescription.id === prescription.id ? 'bg-aliceblue' : ''">
|
|
<tr v-for="(prescription, index) in prescriptions" :class="currentPrescription && currentPrescription.id === prescription.id ? 'bg-aliceblue' : ''">
|
|
- <td class="width-150px">
|
|
|
|
|
|
+ <td class="width-150px" :class="currentPrescription && currentPrescription.id === prescription.id ? 'row-selection-highlight' : ''">
|
|
<a href="#" v-on:click.prevent="currentPrescription=prescription; setAddMode('')"
|
|
<a href="#" v-on:click.prevent="currentPrescription=prescription; setAddMode('')"
|
|
class="text-nowrap"
|
|
class="text-nowrap"
|
|
:class="currentPrescription && currentPrescription.id === prescription.id ? 'font-weight-bold' : ''">
|
|
:class="currentPrescription && currentPrescription.id === prescription.id ? 'font-weight-bold' : ''">
|
|
@@ -96,7 +96,7 @@
|
|
</tbody>
|
|
</tbody>
|
|
</table>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
- <div v-if="currentPrescription" class="ml-2 border align-self-stretch p-3 flex-grow-1 min-width-50">
|
|
|
|
|
|
+ <div v-if="currentPrescription" class="border-top border-right border-bottom align-self-stretch p-3 flex-grow-1 min-width-50">
|
|
<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">
|
|
<b class="mr-1 font-size-16">@{{ currentPrescription.erx_category }}: @{{ currentPrescription.created_at_friendly_short }}</b>
|
|
<b class="mr-1 font-size-16">@{{ currentPrescription.erx_category }}: @{{ currentPrescription.created_at_friendly_short }}</b>
|