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