better buttons on med feeds

This commit is contained in:
Paul Wilde 2023-03-17 16:10:37 +00:00
parent 28fc9e9629
commit 6991d1adfd

View file

@ -42,23 +42,25 @@
Repeat Prescription? : <v-icon v-if="item.repeat">mdi-refresh</v-icon>
</v-col>
<v-col>
<v-btn>
More
<v-overlay activator="parent" class="align-center justify-center">
<v-container>
<v-card width="600">
<v-card-title>Info</v-card-title>
<v-card-subtitle>Repeat Message</v-card-subtitle>
<v-card-text>{{ item.repeat_message }}</v-card-text>
<v-card-actions>
<v-btn class="mb-2 mr-2" color="blue" @click="reportScriptReq(item)">Script Request</v-btn>
<v-btn class="mb-2 mr-2" color="blue" @click="reportOrderForm(item)">Order Form</v-btn>
</v-card-actions>
</v-card>
</v-container>
</v-overlay>
</v-btn><br/>
<v-btn v-if="site_info.features.editmedfeed" color="warning" @click="editMedFeed(item)">Edit</v-btn>
<div class="d-flex justify-space-around align-center flex-column flex-sm-row fill-height">
<v-btn>
More
<v-overlay activator="parent" class="align-center justify-center">
<v-container>
<v-card width="600">
<v-card-title>Info</v-card-title>
<v-card-subtitle>Repeat Message</v-card-subtitle>
<v-card-text>{{ item.repeat_message }}</v-card-text>
<v-card-actions>
<v-btn class="mb-2 mr-2" color="blue" @click="reportScriptReq(item)">Script Request</v-btn>
<v-btn class="mb-2 mr-2" color="blue" @click="reportOrderForm(item)">Order Form</v-btn>
</v-card-actions>
</v-card>
</v-container>
</v-overlay>
</v-btn><br/>
<v-btn v-if="site_info.features.editmedfeed" color="warning" @click="editMedFeed(item)">Edit</v-btn>
</div>
</v-col>
</v-row>
</RecycleScroller>