88 lines
2.0 KiB
Vue
88 lines
2.0 KiB
Vue
<template>
|
|
<v-dialog
|
|
v-model="dialog"
|
|
persistent
|
|
max-width="500px"
|
|
transition="dialog-transition"
|
|
>
|
|
|
|
<v-layout class="fill-height" column>
|
|
<v-card class="grow" color="blue-grey lighten-2">
|
|
<v-card-title primary-title class="title white--text pb-2">
|
|
HISTORI PEMERIKSAAN
|
|
</v-card-title>
|
|
<v-card-text class="pt-2 pb-2">
|
|
|
|
|
|
|
|
</v-card-text>
|
|
<v-card-actions>
|
|
<v-spacer></v-spacer>
|
|
<v-btn color="white" flat @click="dialog = false">Tutup</v-btn>
|
|
</v-card-actions>
|
|
|
|
|
|
</v-card>
|
|
</v-layout>
|
|
</v-dialog>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|
|
|
|
<script>
|
|
module.exports = {
|
|
data() {
|
|
return {
|
|
query: "",
|
|
items: [],
|
|
headers: [
|
|
{
|
|
text: "PEMERIKSAAN",
|
|
align: "left",
|
|
sortable: false,
|
|
width: "45%",
|
|
class: "pa-2 blue lighten-3 white--text"
|
|
},
|
|
{
|
|
text: "HASIL",
|
|
align: "left",
|
|
sortable: false,
|
|
value: "mr",
|
|
width: "35%",
|
|
class: "pa-2 blue lighten-3 white--text"
|
|
},
|
|
{
|
|
text: "FLAG",
|
|
align: "left",
|
|
sortable: false,
|
|
value: "mr",
|
|
width: "20%",
|
|
class: "pa-2 blue lighten-3 white--text"
|
|
}
|
|
],
|
|
|
|
|
|
isLoading: false
|
|
|
|
};
|
|
},
|
|
|
|
methods : {
|
|
|
|
},
|
|
|
|
computed : {
|
|
dialog : {
|
|
get () { return this.$store.state.re_history.dialog_history },
|
|
set (v) { this.$store.commit('re_history/update_dialog_history', v) }
|
|
}
|
|
},
|
|
|
|
mounted () {
|
|
|
|
}
|
|
}
|
|
</script>
|