Compare commits
4 Commits
babas/list
...
d23a0550e1
| Author | SHA1 | Date | |
|---|---|---|---|
| d23a0550e1 | |||
| c85d0344b7 | |||
|
|
67600d6a16 | ||
| 087bb1dc47 |
@@ -7,7 +7,7 @@
|
|||||||
</v-list-item>
|
</v-list-item>
|
||||||
<!-- LEVEL 0 -->
|
<!-- LEVEL 0 -->
|
||||||
<template v-for="(lev_0, i) in level_0" :key="lev_0.id" >
|
<template v-for="(lev_0, i) in level_0" :key="lev_0.id" >
|
||||||
<v-list-item v-if="!level_1['p_' + lev_0.id] && lev_0.is_parent === 'N'" @click="goto(lev_0.url)" color="primary" rounded="lg" class="my-2">
|
<v-list-item v-if="!level_1['p_' + lev_0.id] && lev_0.is_parent === 'N'" @click="goto(lev_0)" color="primary" rounded="lg" class="my-2">
|
||||||
<v-list-item-title >{{ lev_0.name }}</v-list-item-title>
|
<v-list-item-title >{{ lev_0.name }}</v-list-item-title>
|
||||||
</v-list-item>
|
</v-list-item>
|
||||||
<v-list-group v-else :value="lev_0.name" >
|
<v-list-group v-else :value="lev_0.name" >
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<!-- LEVEL 1 -->
|
<!-- LEVEL 1 -->
|
||||||
<template v-for="(lev_1, j) in level_1['p_' + lev_0.id]" :key="lev_1.id">
|
<template v-for="(lev_1, j) in level_1['p_' + lev_0.id]" :key="lev_1.id">
|
||||||
<v-list-item v-if="!level_2['p_' + lev_1.id] && lev_1.is_parent === 'N'" @click="goto(lev_1.url)" color="primary" rounded="lg" class="{'primary--text': activeItem === lev_2.id}">
|
<v-list-item v-if="!level_2['p_' + lev_1.id] && lev_1.is_parent === 'N'" @click="goto(lev_1)" color="primary" rounded="lg" class="{'primary--text': activeItem === lev_2.id}">
|
||||||
<v-list-item-title><v-icon>mdi-circle-small</v-icon>{{ lev_1.name }}</v-list-item-title>
|
<v-list-item-title><v-icon>mdi-circle-small</v-icon>{{ lev_1.name }}</v-list-item-title>
|
||||||
</v-list-item>
|
</v-list-item>
|
||||||
<v-list-group v-else :value="lev_1.state" v-show="level_2['p_' + lev_1.id]" sub-group no-action >
|
<v-list-group v-else :value="lev_1.state" v-show="level_2['p_' + lev_1.id]" sub-group no-action >
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<!-- LEVEL 2 -->
|
<!-- LEVEL 2 -->
|
||||||
<template v-for="(lev_2, k) in level_2['p_' + lev_1.id]" :key="lev_2.id">
|
<template v-for="(lev_2, k) in level_2['p_' + lev_1.id]" :key="lev_2.id">
|
||||||
<v-list-item class="" @click="goto(lev_2.url)" color="primary" rounded="lg">
|
<v-list-item class="" @click="goto(lev_2)" color="primary" rounded="lg">
|
||||||
<v-list-item-title><v-icon>mdi-circle-small</v-icon>{{ lev_2.name }}</v-list-item-title>
|
<v-list-item-title><v-icon>mdi-circle-small</v-icon>{{ lev_2.name }}</v-list-item-title>
|
||||||
</v-list-item>
|
</v-list-item>
|
||||||
</template>
|
</template>
|
||||||
@@ -73,10 +73,19 @@ export default {
|
|||||||
this.$store.commit("system/update_drawer", val);
|
this.$store.commit("system/update_drawer", val);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
active_menu: {
|
||||||
|
get() {
|
||||||
|
return this.$store.state.system.active_menu;
|
||||||
|
},
|
||||||
|
set(menu) {
|
||||||
|
this.$store.commit("system/update_active_menu", menu);
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
goto(url) {
|
goto(item) {
|
||||||
console.log("menuju ke- ", url)
|
console.log("menuju ke- ", item.url);
|
||||||
|
this.active_menu = item;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
50
globalcomponent/quick-menu.vue
Normal file
50
globalcomponent/quick-menu.vue
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
<template>
|
||||||
|
<div class="rounded-xl bg-primary-lighten mx-2 my-2">
|
||||||
|
<v-container fluid style="overflow-x: auto; white-space: nowrap">
|
||||||
|
<v-btn
|
||||||
|
class="mr-2"
|
||||||
|
size="small"
|
||||||
|
:variant="active_menu.id === qmenu.id ? 'elevated' : 'outlined'"
|
||||||
|
rounded="xl"
|
||||||
|
color="primary-darken"
|
||||||
|
v-for="qmenu in qmenus"
|
||||||
|
@click="redirect(qmenu)"
|
||||||
|
>
|
||||||
|
{{ qmenu.name }}
|
||||||
|
</v-btn>
|
||||||
|
</v-container>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script type="module">
|
||||||
|
export default {
|
||||||
|
name: "QuickAccessComponent",
|
||||||
|
mounted() {
|
||||||
|
this.$store.dispatch('system/loadQuickMenu');
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
pressed: false,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
qmenus() {
|
||||||
|
return this.$store.state.system.quick_menu;
|
||||||
|
},
|
||||||
|
active_menu: {
|
||||||
|
get() {
|
||||||
|
return this.$store.state.system.active_menu;
|
||||||
|
},
|
||||||
|
set(menu) {
|
||||||
|
this.$store.commit("system/update_active_menu", menu);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
redirect(item) {
|
||||||
|
this.active_menu = item;
|
||||||
|
console.log("redirect url ", item.url);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
@@ -19,6 +19,7 @@ var CustomTheme = {
|
|||||||
"success-darken": "#1B5E20",
|
"success-darken": "#1B5E20",
|
||||||
white: "#FFFFFF",
|
white: "#FFFFFF",
|
||||||
grey: "#9E9E9E",
|
grey: "#9E9E9E",
|
||||||
|
"grey-lighten-2": "#E0E0E0",
|
||||||
"grey-lighten-5": "#FAFAFA",
|
"grey-lighten-5": "#FAFAFA",
|
||||||
"grey-darken-1": "#757575"
|
"grey-darken-1": "#757575"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,6 +8,8 @@ const store = {
|
|||||||
menu_level_0: [],
|
menu_level_0: [],
|
||||||
menu_level_1: [],
|
menu_level_1: [],
|
||||||
menu_level_2: [],
|
menu_level_2: [],
|
||||||
|
quick_menu: [],
|
||||||
|
active_menu: {},
|
||||||
drawer: false,
|
drawer: false,
|
||||||
bread_crumb: "",
|
bread_crumb: "",
|
||||||
search_error_message: "",
|
search_error_message: "",
|
||||||
@@ -44,6 +46,12 @@ const store = {
|
|||||||
update_drawer(state, payload) {
|
update_drawer(state, payload) {
|
||||||
state.drawer = payload;
|
state.drawer = payload;
|
||||||
},
|
},
|
||||||
|
update_quick_menu(state, data) {
|
||||||
|
state.quick_menu = data;
|
||||||
|
},
|
||||||
|
update_active_menu(state, data) {
|
||||||
|
state.active_menu = data;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
actions: {
|
actions: {
|
||||||
async loadMenuData(context) {
|
async loadMenuData(context) {
|
||||||
@@ -76,6 +84,20 @@ const store = {
|
|||||||
console.error('Error loading menu data:', error);
|
console.error('Error loading menu data:', error);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
async loadQuickMenu(context) {
|
||||||
|
try {
|
||||||
|
let resp = await axios.get(URL);
|
||||||
|
if (resp.data.status != "OK") {
|
||||||
|
console.error('get api failed');
|
||||||
|
} else {
|
||||||
|
let item = resp.data.data;
|
||||||
|
if (item[1])
|
||||||
|
context.commit("update_quick_menu", item[1]['p_1'])
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error load quick menu data', error);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
export default store
|
export default store
|
||||||
245
status-patient/components/content.vue
Normal file
245
status-patient/components/content.vue
Normal file
@@ -0,0 +1,245 @@
|
|||||||
|
<template>
|
||||||
|
<v-container fluid class="bg-white rounded-lg my-5">
|
||||||
|
<div class="bg-secondary-lighten rounded-lg pa-5 mb-5">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="11">
|
||||||
|
<h3>{{ $t('message.table.title') }}</h3>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="1" align="end">
|
||||||
|
<h3>{{ datax.length }}</h3>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</div>
|
||||||
|
<v-data-table
|
||||||
|
:items="datax"
|
||||||
|
:headers="headers"
|
||||||
|
hide-default-footer
|
||||||
|
>
|
||||||
|
<template v-slot:headers="{ columns }">
|
||||||
|
<tr>
|
||||||
|
<template v-for="column in columns" :key="column.key">
|
||||||
|
<td :class="column.class" :style="{ width: column.width, textAlign: column.align }">
|
||||||
|
<span>{{ column.title }}</span>
|
||||||
|
</td>
|
||||||
|
</template>
|
||||||
|
</tr>
|
||||||
|
</template>
|
||||||
|
<template v-slot:item="{ item }">
|
||||||
|
<tr>
|
||||||
|
<td align="center" class="pa-2">
|
||||||
|
<p class="font-weight-medium">{{ item.xno }}</p>
|
||||||
|
</td>
|
||||||
|
<td align="center" class="pa-2">
|
||||||
|
<p class="font-weight-medium">{{ item.order_date }}</p>
|
||||||
|
<p class="font-weight-medium rounded-lg bg-grey-lighten-2 px-4" style="display: inline-block;">{{ item.order_promise }}</p>
|
||||||
|
</td>
|
||||||
|
<td align="start" class="pa-2">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="5" align="start">
|
||||||
|
<p class="font-weight-medium">{{ item.no_reg }}</p>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="7" align="end">
|
||||||
|
<p class="font-weight-bold text-blue">{{ item.no_reg_ext }}</p>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
<p class="font-weight-bold">{{ item.patient_name }}</p>
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="5" align="start">
|
||||||
|
<p class="font-weight-medium">{{ item.company_name }}</p>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="7" align="end">
|
||||||
|
<p class="font-weight-medium text-grey">{{ item.mou_name }}</p>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</td>
|
||||||
|
<td align="center" class="pa-2">
|
||||||
|
<p
|
||||||
|
:class="['font-weight-medium rounded-lg pointer', item.details_order[0].status === 'Y' ? 'bg-success' : 'bg-grey-lighten-2']"
|
||||||
|
style=" width: 80%; height: 60%; align-content: center;"
|
||||||
|
@click="openMultiDialog(true, 'order')"
|
||||||
|
>{{ item.details_order[0].group_name }}</p>
|
||||||
|
</td>
|
||||||
|
<td align="center" class="pa-2">
|
||||||
|
<p
|
||||||
|
:class="['font-weight-medium rounded-lg pointer', item.details_sampling[0].status === 'Y' ? 'bg-success' : 'bg-grey-lighten-2']"
|
||||||
|
style=" width: 80%; height: 60%; align-content: center;"
|
||||||
|
@click="openMultiDialog(true, 'sample')"
|
||||||
|
>{{ item.details_sampling[0].group_name }}</p>
|
||||||
|
</td>
|
||||||
|
<td align="center" class="pa-2">
|
||||||
|
<p
|
||||||
|
:class="['font-weight-medium rounded-lg pointer', item.details_process[0].status === 'Y' ? 'bg-success' : 'bg-grey-lighten-2']"
|
||||||
|
style=" width: 80%; height: 60%; align-content: center;"
|
||||||
|
@click="openMultiDialog(true, 'process')"
|
||||||
|
>{{ item.details_process[0].group_name }}</p>
|
||||||
|
</td>
|
||||||
|
<td align="center" class="pa-2">
|
||||||
|
<p
|
||||||
|
:class="['font-weight-medium rounded-lg pointer', item.details_result_verification[0].status === 'Y' ? 'bg-success' : 'bg-grey-lighten-2']"
|
||||||
|
style=" width: 80%; height: 60%; align-content: center;"
|
||||||
|
@click="openMultiDialog(true, 'verif')"
|
||||||
|
>{{ item.details_result_verification[0].group_name }}</p>
|
||||||
|
</td>
|
||||||
|
<td align="center" class="pa-2">
|
||||||
|
<p
|
||||||
|
:class="['font-weight-medium rounded-lg pointer', item.details_result_validation[0].status === 'Y' ? 'bg-success' : 'bg-grey-lighten-2']"
|
||||||
|
style=" width: 80%; height: 60%; align-content: center;"
|
||||||
|
@click="openMultiDialog(true, 'valid')"
|
||||||
|
>{{ item.details_result_validation[0].group_name }}</p>
|
||||||
|
</td>
|
||||||
|
<td align="center" class="pa-2">
|
||||||
|
<p
|
||||||
|
:class="['font-weight-medium rounded-lg pointer', item.details_print[0].status === 'Y' ? 'bg-success' : 'bg-grey-lighten-2']"
|
||||||
|
style=" width: 80%; height: 60%; align-content: center;"
|
||||||
|
@click="print_dialog=true"
|
||||||
|
>{{ item.details_print[0].group_name }}</p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</template>
|
||||||
|
</v-data-table>
|
||||||
|
<v-pagination :length="total_page"></v-pagination>
|
||||||
|
<sp-dialog></sp-dialog>
|
||||||
|
<print-dialog></print-dialog>
|
||||||
|
</v-container>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import PrintDialog from './print-dialog.vue';
|
||||||
|
import Sp_dialog from './sp_dialog.vue';
|
||||||
|
export default {
|
||||||
|
name: "contentcomp",
|
||||||
|
components: {
|
||||||
|
"sp-dialog": Sp_dialog,
|
||||||
|
"print-dialog": PrintDialog,
|
||||||
|
},
|
||||||
|
mounted() {},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
menu: false,
|
||||||
|
visible: false,
|
||||||
|
headers : [
|
||||||
|
{
|
||||||
|
title: this.$t('message.table.h_no'),
|
||||||
|
align: "center",
|
||||||
|
sortable: false,
|
||||||
|
key: "name",
|
||||||
|
width: "5%",
|
||||||
|
class: "font-weight-bold",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: this.$t('message.table.h_orderr'),
|
||||||
|
align: "center",
|
||||||
|
sortable: false,
|
||||||
|
key: "name",
|
||||||
|
width: "15%",
|
||||||
|
class: "font-weight-bold",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: this.$t('message.table.h_pasien'),
|
||||||
|
align: "center",
|
||||||
|
sortable: false,
|
||||||
|
key: "name",
|
||||||
|
width: "20%",
|
||||||
|
class: "font-weight-bold",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: this.$t('message.table.h_status'),
|
||||||
|
align: "center",
|
||||||
|
sortable: false,
|
||||||
|
key: "name",
|
||||||
|
width: "10%",
|
||||||
|
class: "font-weight-bold",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: this.$t('message.table.h_sample'),
|
||||||
|
align: "center",
|
||||||
|
sortable: false,
|
||||||
|
key: "name",
|
||||||
|
width: "10%",
|
||||||
|
class: "font-weight-bold",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: this.$t('message.table.h_proces'),
|
||||||
|
align: "center",
|
||||||
|
sortable: false,
|
||||||
|
key: "name",
|
||||||
|
width: "10%",
|
||||||
|
class: "font-weight-bold",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: this.$t('message.table.h_resver'),
|
||||||
|
align: "center",
|
||||||
|
sortable: false,
|
||||||
|
key: "name",
|
||||||
|
width: "10%",
|
||||||
|
class: "font-weight-bold",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: this.$t('message.table.h_resval'),
|
||||||
|
align: "center",
|
||||||
|
sortable: false,
|
||||||
|
key: "name",
|
||||||
|
width: "10%",
|
||||||
|
class: "font-weight-bold",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: this.$t('message.table.h_printt'),
|
||||||
|
align: "center",
|
||||||
|
sortable: false,
|
||||||
|
key: "name",
|
||||||
|
width: "10%",
|
||||||
|
class: "font-weight-bold",
|
||||||
|
},
|
||||||
|
]
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
datax: {
|
||||||
|
get() {
|
||||||
|
return this.$store.state.stored.data;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
total_page: {
|
||||||
|
get() {
|
||||||
|
return this.$store.state.stored.total_page;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
dialog: {
|
||||||
|
get() {
|
||||||
|
return this.$store.state.stored.sp_dialog;
|
||||||
|
},
|
||||||
|
set(bool) {
|
||||||
|
this.$store.commit("setDialog", bool);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
multi_dialog: {
|
||||||
|
get() {
|
||||||
|
return this.$store.state.stored.multi_dialog;
|
||||||
|
},
|
||||||
|
set(bool, nama) {
|
||||||
|
this.$store.commit("setMultiDialog", bool, nama)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
print_dialog: {
|
||||||
|
get() {
|
||||||
|
return this.$store.state.stored.print_dialog;
|
||||||
|
},
|
||||||
|
set(bool) {
|
||||||
|
this.$store.commit("setPrintDialog", bool);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
openMultiDialog(bool, nama) {
|
||||||
|
this.multi_dialog.open = bool;
|
||||||
|
this.multi_dialog.name = nama;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.pointer {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
114
status-patient/components/filter.vue
Normal file
114
status-patient/components/filter.vue
Normal file
@@ -0,0 +1,114 @@
|
|||||||
|
<template>
|
||||||
|
<v-container fluid class="bg-white rounded-lg">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="2">
|
||||||
|
<v-menu
|
||||||
|
v-model="menu"
|
||||||
|
:close-on-content-click="false"
|
||||||
|
transition="scale-transition"
|
||||||
|
offset-y
|
||||||
|
min-width="auto"
|
||||||
|
max-width="290px"
|
||||||
|
>
|
||||||
|
<template v-slot:activator="{ props }">
|
||||||
|
<v-text-field
|
||||||
|
:model-value="formatDate()"
|
||||||
|
:label="$t('message.filter.date')"
|
||||||
|
prepend-inner-icon="mdi-calendar"
|
||||||
|
hide-details
|
||||||
|
readonly
|
||||||
|
variant="outlined"
|
||||||
|
v-bind="props"
|
||||||
|
></v-text-field>
|
||||||
|
</template>
|
||||||
|
<v-date-picker
|
||||||
|
hide-header
|
||||||
|
show-adjacent-months
|
||||||
|
rounded="lg"
|
||||||
|
color="primary"
|
||||||
|
v-model="date"
|
||||||
|
@update:modelValue="menu=false"
|
||||||
|
></v-date-picker>
|
||||||
|
</v-menu>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="2">
|
||||||
|
<v-text-field
|
||||||
|
:label="$t('message.filter.noreg')"
|
||||||
|
variant="outlined"
|
||||||
|
hide-details
|
||||||
|
append-inner-icon="mdi-magnify"
|
||||||
|
></v-text-field>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="2">
|
||||||
|
<v-autocomplete
|
||||||
|
:label="$t('message.filter.group')"
|
||||||
|
variant="outlined"
|
||||||
|
hide-details
|
||||||
|
menu-icon="mdi-chevron-down"
|
||||||
|
:items="temp_dropdown"
|
||||||
|
></v-autocomplete>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="5"></v-col>
|
||||||
|
<v-col cols="1">
|
||||||
|
<div
|
||||||
|
style="height: 100%; display: flex; align-items: center; justify-content: center;"
|
||||||
|
class="rounded-lg bg-primary pa-2 h-100 pointer"
|
||||||
|
>
|
||||||
|
<iconify-icon
|
||||||
|
style="font-size: 2rem;"
|
||||||
|
icon="fluent:search-20-regular"
|
||||||
|
></iconify-icon>
|
||||||
|
</div>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</v-container>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "filtercomponent",
|
||||||
|
components: {},
|
||||||
|
mounted() {
|
||||||
|
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
menu: false,
|
||||||
|
visible: false,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
date: {
|
||||||
|
get() {
|
||||||
|
return this.$store.state.stored.date;
|
||||||
|
},
|
||||||
|
set(val) {
|
||||||
|
this.$store.commit("setDate", val);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
temp_dropdown: {
|
||||||
|
get() {
|
||||||
|
return this.$store.state.stored.temp_dropdown;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
formatDate() {
|
||||||
|
if (!this.date) return null;
|
||||||
|
|
||||||
|
return moment(this.date).format("DD-MM-YYYY");
|
||||||
|
},
|
||||||
|
deFormatedDate(date) {
|
||||||
|
if (!date) return null;
|
||||||
|
const [day, month, year] = date.split("-");
|
||||||
|
return `${year}-${month.padStart(2, "0")}-${day.padStart(2, "0")}`;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.pointer {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
42
status-patient/components/main.vue
Normal file
42
status-patient/components/main.vue
Normal file
@@ -0,0 +1,42 @@
|
|||||||
|
<template>
|
||||||
|
<v-app id="inspire">
|
||||||
|
<one-navbar></one-navbar>
|
||||||
|
<v-main>
|
||||||
|
<quick-menu></quick-menu>
|
||||||
|
<div class="pa-5 bg-primary-lighten mx-2 rounded-xl" style="height: 100%;">
|
||||||
|
<one-filter></one-filter>
|
||||||
|
<one-content></one-content>
|
||||||
|
</div>
|
||||||
|
</v-main>
|
||||||
|
</v-app>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script type="module">
|
||||||
|
import NavbarComponent from "../../globalcomponent/one-navbar.vue";
|
||||||
|
import QuickMenu from "../../globalcomponent/quick-menu.vue";
|
||||||
|
import Content from "./content.vue";
|
||||||
|
import Filter from "./filter.vue";
|
||||||
|
export default {
|
||||||
|
name: "Status Pasien",
|
||||||
|
components: {
|
||||||
|
"one-navbar": NavbarComponent,
|
||||||
|
"quick-menu": QuickMenu,
|
||||||
|
"one-content": Content,
|
||||||
|
"one-filter": Filter,
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visible: false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
196
status-patient/components/order-dialog.vue
Normal file
196
status-patient/components/order-dialog.vue
Normal file
@@ -0,0 +1,196 @@
|
|||||||
|
<template>
|
||||||
|
<v-timeline side="end" align="start">
|
||||||
|
<v-timeline-item
|
||||||
|
dot-color="white"
|
||||||
|
:fill-dot="true"
|
||||||
|
icon="mdi-check-circle"
|
||||||
|
icon-color="primary"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
<div style="min-width: 600px; max-width: 750px;">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="7" align="start">
|
||||||
|
<h4 class="font-weight-medium">Order diterima oleh ADMIN</h4>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="5" align="end">
|
||||||
|
<h4 class="font-weight-medium">21-08-2024 16:53</h4>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
<v-row no-gutters class="ml-2 mb-4 mt-2">
|
||||||
|
<v-col cols="3" align="start">
|
||||||
|
<h5 class="font-weight-medium text-grey">Kel. Pelanggan</h5>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="9" align="end">
|
||||||
|
<h5 class="font-weight-medium text-grey">PASIEN MANDIRI/PASIEN UMUM 2024</h5>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="3" align="start">
|
||||||
|
<h5 class="font-weight-medium text-grey">Pengirim</h5>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="9" align="end">
|
||||||
|
<h5 class="font-weight-medium text-grey">dr. A. B. WARDOYO, Sp. PD.</h5>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="3" align="start">
|
||||||
|
<h5 class="font-weight-medium text-grey">Alamat</h5>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="9" align="end">
|
||||||
|
<h5 class="font-weight-medium text-grey">JL. MH. THAMRIN NO. 1 BINTARO JAYA</h5>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="3" align="start">
|
||||||
|
<h5 class="font-weight-medium text-grey">Catatan</h5>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="9" align="end">
|
||||||
|
<h5 class="font-weight-medium text-grey">-</h5>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
|
||||||
|
<div class="bg-secondary-lighten rounded-lg pa-2 mb-2">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="4">
|
||||||
|
<h4>Janji Hasil</h4>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="8" align="end">
|
||||||
|
<p class="font-weight-regular rounded-lg bg-grey-lighten-2 px-2 mr-2" style="display: inline-block; font-size: 12px;">21-08-2024 16:53</p>
|
||||||
|
<p class="font-weight-regular rounded-lg bg-grey-lighten-2 px-2" style="display: inline-block; font-size: 12px;">21-08-2024 20:53</p>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</div>
|
||||||
|
<v-data-table
|
||||||
|
:items="orderdata"
|
||||||
|
:headers="headers"
|
||||||
|
hide-default-footer
|
||||||
|
>
|
||||||
|
<template v-slot:headers="{ columns }">
|
||||||
|
<tr>
|
||||||
|
<template v-for="column in columns" :key="column.key">
|
||||||
|
<td :class="column.class" :style="{ width: column.width, textAlign: column.align }">
|
||||||
|
<span>{{ column.title }}</span>
|
||||||
|
</td>
|
||||||
|
</template>
|
||||||
|
</tr>
|
||||||
|
</template>
|
||||||
|
<template v-slot:item="{ item }">
|
||||||
|
<tr :class="[item.pemeriksaan === 'TOTAL' ? 'bg-primary-lighten' : '']">
|
||||||
|
<td align="start">
|
||||||
|
<p class="font-weight-medium">{{ item.pemeriksaan }}</p>
|
||||||
|
</td>
|
||||||
|
<td align="center">
|
||||||
|
<p class="font-weight-medium">{{ item.bruto }}</p>
|
||||||
|
</td>
|
||||||
|
<td align="center">
|
||||||
|
<p class="font-weight-medium">{{ item.diskon }}</p>
|
||||||
|
</td>
|
||||||
|
<td align="center">
|
||||||
|
<p class="font-weight-medium">{{ item.total }}</p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</template>
|
||||||
|
</v-data-table>
|
||||||
|
<v-row no-gutters class="ml-2 mb-4 mt-2">
|
||||||
|
<v-col cols="3" align="start">
|
||||||
|
<h5 class="font-weight-medium text-grey">Alamat Sendiri</h5>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="9" align="end">
|
||||||
|
<h5 class="font-weight-medium text-grey">PASIEN MANDIRI/PASIEN UMUM 2024</h5>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="3" align="start">
|
||||||
|
<h5 class="font-weight-medium text-grey">Alamat Pasien</h5>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="9" align="end">
|
||||||
|
<h5 class="font-weight-medium text-grey">HRC 05/TELKOM MOJOKERTO Sawunggalung, Wonokromo, Surabaya</h5>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</div>
|
||||||
|
</v-timeline-item>
|
||||||
|
<v-timeline-item
|
||||||
|
dot-color="white"
|
||||||
|
:fill-dot="true"
|
||||||
|
icon="mdi-check-circle"
|
||||||
|
icon-color="primary"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
<div style="min-width: 600px; max-width: 750px;">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="7" align="start">
|
||||||
|
<h4 class="font-weight-medium">Pembayaran diterima oleh ADMIN</h4>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="5" align="end">
|
||||||
|
<h4 class="font-weight-medium">21-08-2024 21:53</h4>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
<div class="bg-secondary-lighten rounded-lg pa-2 mt-2">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="4">
|
||||||
|
<h4>Janji Hasil</h4>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="8" align="end">
|
||||||
|
<h4>176.000</h4>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</div>
|
||||||
|
<div class="bg-primary-lighten rounded-lg pa-2 mt-2">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="4">
|
||||||
|
<h4>TOTAL</h4>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="8" align="end">
|
||||||
|
<h4>176.000</h4>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</v-timeline-item>
|
||||||
|
</v-timeline>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "orderdialog",
|
||||||
|
components: {},
|
||||||
|
mounted() {},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
headers: [
|
||||||
|
{
|
||||||
|
title: 'PEMERIKSAAN',
|
||||||
|
align: "start",
|
||||||
|
sortable: false,
|
||||||
|
key: "pemeriksaan",
|
||||||
|
width: "40%",
|
||||||
|
class: "font-weight-bold",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'BRUTO',
|
||||||
|
align: "center",
|
||||||
|
sortable: false,
|
||||||
|
key: "bruto",
|
||||||
|
width: "20%",
|
||||||
|
class: "font-weight-bold",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'DISKON',
|
||||||
|
align: "center",
|
||||||
|
sortable: false,
|
||||||
|
key: "diskon",
|
||||||
|
width: "20%",
|
||||||
|
class: "font-weight-bold",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'TOTAL',
|
||||||
|
align: "center",
|
||||||
|
sortable: false,
|
||||||
|
key: "total",
|
||||||
|
width: "20%",
|
||||||
|
class: "font-weight-bold",
|
||||||
|
},
|
||||||
|
]
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
orderdata: {
|
||||||
|
get() {
|
||||||
|
return this.$store.state.stored.data_order;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
93
status-patient/components/print-dialog.vue
Normal file
93
status-patient/components/print-dialog.vue
Normal file
@@ -0,0 +1,93 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<v-dialog v-model="print_dialog" width="auto">
|
||||||
|
<v-card min-width="600" max-width="750" class="rounded-lg">
|
||||||
|
<v-card-item class="bg-primary mb-4">
|
||||||
|
<v-card-title>TIMELINE</v-card-title>
|
||||||
|
</v-card-item>
|
||||||
|
<v-card-text>
|
||||||
|
<div style="min-width: 600px; max-width: 750px;">
|
||||||
|
<v-row no-gutters class="ml-2 mb-4 mt-2">
|
||||||
|
<v-col cols="3" align="start">
|
||||||
|
<h4 class="font-weight-medium">No Lab</h4>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="9" align="end">
|
||||||
|
<h4 class="font-weight-medium text-grey">05600028LAB</h4>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="3" align="start">
|
||||||
|
<h4 class="font-weight-medium">Nama Pasien</h4>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="9" align="end">
|
||||||
|
<h4 class="font-weight-medium text-grey">Ny IMELDA JANICE</h4>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
<div class="bg-secondary-lighten rounded-lg pa-2 my-2">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="12">
|
||||||
|
<h4>SERAH TERIMA INTERNAL</h4>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</div>
|
||||||
|
<v-row no-gutters class="ml-2 mb-4 mt-2 pa-2">
|
||||||
|
<v-col cols="3" align="start">
|
||||||
|
<h5 class="font-weight-medium">Group</h5>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="9" align="end">
|
||||||
|
<h5>
|
||||||
|
<span class="font-weight-medium text-grey">LAB</span>
|
||||||
|
<span class="font-weight-medium text-primary"> PICK UP</span>
|
||||||
|
</h5>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="3" align="start">
|
||||||
|
<h5 class="font-weight-medium">Janji Hasil</h5>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="9" align="end">
|
||||||
|
<h5 class="font-weight-medium text-grey">ADMIN 21-08-2024 22:13</h5>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="3" align="start">
|
||||||
|
<h5 class="font-weight-medium">Diserahkan oleh</h5>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="9" align="end">
|
||||||
|
<h5 class="font-weight-medium text-grey">ADMIN 21-08-2024 22:35</h5>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="3" align="start">
|
||||||
|
<h5 class="font-weight-medium">Diterima oleh</h5>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="9" align="end">
|
||||||
|
<h5 class="font-weight-medium text-grey">ADMIN 21-08-2024 22:53</h5>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</div>
|
||||||
|
</v-card-text>
|
||||||
|
<template v-slot:actions>
|
||||||
|
<v-btn
|
||||||
|
class="ms-auto text-primary font-weight-medium"
|
||||||
|
text="TUTUP"
|
||||||
|
@click="print_dialog=false"
|
||||||
|
></v-btn>
|
||||||
|
</template>
|
||||||
|
</v-card>
|
||||||
|
</v-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "printdialog",
|
||||||
|
components: {},
|
||||||
|
mounted() {},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
print_dialog: {
|
||||||
|
get() {
|
||||||
|
return this.$store.state.stored.print_dialog;
|
||||||
|
},
|
||||||
|
set(bool) {
|
||||||
|
this.$store.commit("setPrintDialog", bool);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
41
status-patient/components/process-dialog.vue
Normal file
41
status-patient/components/process-dialog.vue
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
<template>
|
||||||
|
<v-timeline side="end" align="start">
|
||||||
|
<v-timeline-item
|
||||||
|
dot-color="white"
|
||||||
|
:fill-dot="true"
|
||||||
|
icon="mdi-check-circle"
|
||||||
|
icon-color="primary"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
<div style="min-width: 600px; max-width: 750px;">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="12" align="end">
|
||||||
|
<h4 class="font-weight-medium">21-08-2024 16:53</h4>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
<div class="bg-success-lighten rounded-lg pa-2 my-2">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="4">
|
||||||
|
<h4>Serum Kuning</h4>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="8" align="end">
|
||||||
|
<p class="font-weight-regular rounded-lg bg-grey-lighten-2 px-2" style="display: inline-block; font-size: 12px;">05600027LSK</p>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</v-timeline-item>
|
||||||
|
</v-timeline>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "processdialog",
|
||||||
|
components: {},
|
||||||
|
mounted() {},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
computed: {},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
100
status-patient/components/sample-dialog.vue
Normal file
100
status-patient/components/sample-dialog.vue
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
<template>
|
||||||
|
<v-timeline side="end" align="start">
|
||||||
|
<v-timeline-item
|
||||||
|
dot-color="white"
|
||||||
|
:fill-dot="true"
|
||||||
|
icon="mdi-check-circle"
|
||||||
|
icon-color="primary"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
<div style="min-width: 600px; max-width: 750px;">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="7" align="start">
|
||||||
|
<h4 class="font-weight-medium">Pembuatan barcode oleh system</h4>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="5" align="end">
|
||||||
|
<h4 class="font-weight-medium">21-08-2024 16:53</h4>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
<div class="bg-primary-lighten rounded-lg pa-2 my-2">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="4">
|
||||||
|
<h4>Serum Kuning</h4>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="8" align="end">
|
||||||
|
<p class="font-weight-regular rounded-lg bg-grey-lighten-2 px-2" style="display: inline-block; font-size: 12px;">05600027LSK</p>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</v-timeline-item>
|
||||||
|
<v-timeline-item
|
||||||
|
dot-color="white"
|
||||||
|
:fill-dot="true"
|
||||||
|
icon="mdi-check-circle"
|
||||||
|
icon-color="primary"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
<div style="min-width: 600px; max-width: 750px;">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="7" align="start">
|
||||||
|
<h4 class="font-weight-medium">Proses oleh admin</h4>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="5" align="end">
|
||||||
|
<h4 class="font-weight-medium">21-08-2024 20:53</h4>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
<div class="bg-secondary-lighten rounded-lg pa-2 my-2">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="4">
|
||||||
|
<h4>Serum Kuning</h4>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="8" align="end">
|
||||||
|
<p class="font-weight-regular rounded-lg bg-grey-lighten-2 px-2" style="display: inline-block; font-size: 12px;">05600027LSK</p>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</v-timeline-item>
|
||||||
|
<v-timeline-item
|
||||||
|
dot-color="white"
|
||||||
|
:fill-dot="true"
|
||||||
|
icon="mdi-check-circle"
|
||||||
|
icon-color="primary"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
<div style="min-width: 600px; max-width: 750px;">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="7" align="start">
|
||||||
|
<h4 class="font-weight-medium">Pengambilan sample</h4>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="5" align="end">
|
||||||
|
<h4 class="font-weight-medium">21-08-2024 21:53</h4>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
<div class="bg-success-lighten rounded-lg pa-2 my-2">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="4">
|
||||||
|
<h4>Serum Kuning</h4>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="8" align="end">
|
||||||
|
<p class="font-weight-regular rounded-lg bg-grey-lighten-2 px-2" style="display: inline-block; font-size: 12px;">05600027LSK</p>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</v-timeline-item>
|
||||||
|
</v-timeline>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "samplecolldialog",
|
||||||
|
components: {},
|
||||||
|
mounted() {},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
computed: {},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
100
status-patient/components/sp_dialog.vue
Normal file
100
status-patient/components/sp_dialog.vue
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<v-dialog v-model="multi_dialog.open" width="auto">
|
||||||
|
<v-card min-width="600" max-width="750" class="rounded-lg">
|
||||||
|
<v-card-item class="bg-primary mb-8">
|
||||||
|
<v-card-title>{{ titleDialog(multi_dialog.name) }}</v-card-title>
|
||||||
|
</v-card-item>
|
||||||
|
<v-card-text>
|
||||||
|
<v-row class="ga-4 mb-5">
|
||||||
|
<div class="rounded-lg bg-secondary-lighten" style="width: 80px; height: 80px;"></div>
|
||||||
|
<div>
|
||||||
|
<h4 class="font-weight-medium">05600027LA</h4>
|
||||||
|
<h4 class="font-weight-bold">Ny IMELDA JANICE</h4>
|
||||||
|
</div>
|
||||||
|
</v-row>
|
||||||
|
<div v-if="multi_dialog.name === 'order'">
|
||||||
|
<status-order-dialog></status-order-dialog>
|
||||||
|
</div>
|
||||||
|
<div v-else-if="multi_dialog.name === 'sample'">
|
||||||
|
<sampl-collec-dialog></sampl-collec-dialog>
|
||||||
|
</div>
|
||||||
|
<div v-else-if="multi_dialog.name === 'process'">
|
||||||
|
<process-dialog></process-dialog>
|
||||||
|
</div>
|
||||||
|
<div v-else-if="multi_dialog.name === 'verif'">
|
||||||
|
<verification-dialog></verification-dialog>
|
||||||
|
</div>
|
||||||
|
<div v-else-if="multi_dialog.name === 'valid'">
|
||||||
|
<validation-dialog></validation-dialog>
|
||||||
|
</div>
|
||||||
|
</v-card-text>
|
||||||
|
<template v-slot:actions>
|
||||||
|
<v-btn
|
||||||
|
class="ms-auto text-primary font-weight-medium"
|
||||||
|
text="TUTUP"
|
||||||
|
@click="multi_dialog.open=false"
|
||||||
|
></v-btn>
|
||||||
|
</template>
|
||||||
|
</v-card>
|
||||||
|
</v-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import OrderDialog from './order-dialog.vue';
|
||||||
|
import ProcessDialog from './process-dialog.vue';
|
||||||
|
import SampleDialog from './sample-dialog.vue';
|
||||||
|
import ValidDialog from './valid-dialog.vue';
|
||||||
|
import VerifDialog from './verif-dialog.vue';
|
||||||
|
export default {
|
||||||
|
name: "statuspasiendialog",
|
||||||
|
components: {
|
||||||
|
"status-order-dialog": OrderDialog,
|
||||||
|
"sampl-collec-dialog": SampleDialog,
|
||||||
|
"process-dialog": ProcessDialog,
|
||||||
|
"verification-dialog": VerifDialog,
|
||||||
|
"validation-dialog": ValidDialog,
|
||||||
|
},
|
||||||
|
mounted() {},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
dialog: {
|
||||||
|
get() {
|
||||||
|
return this.$store.state.stored.sp_dialog;
|
||||||
|
},
|
||||||
|
set(bool) {
|
||||||
|
this.$store.commit("setDialog", bool);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
multi_dialog: {
|
||||||
|
get() {
|
||||||
|
return this.$store.state.stored.multi_dialog;
|
||||||
|
},
|
||||||
|
set(bool, nama) {
|
||||||
|
this.$store.commit("setMultiDialog", bool, nama)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
titleDialog(name) {
|
||||||
|
switch (name) {
|
||||||
|
case 'order':
|
||||||
|
return "TIMELINE ORDER"
|
||||||
|
case 'sample':
|
||||||
|
return "TIMELINE SAMPLING"
|
||||||
|
case 'process':
|
||||||
|
return "TIMELINE PROCESS"
|
||||||
|
case 'verif':
|
||||||
|
return "TIMELINE VERIFICATION"
|
||||||
|
case 'valid':
|
||||||
|
return "TIMELINE VALIDATION"
|
||||||
|
default:
|
||||||
|
return "TIMELINE"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
56
status-patient/components/valid-dialog.vue
Normal file
56
status-patient/components/valid-dialog.vue
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
<template>
|
||||||
|
<v-timeline side="end" align="start">
|
||||||
|
<v-timeline-item
|
||||||
|
dot-color="white"
|
||||||
|
:fill-dot="true"
|
||||||
|
icon="mdi-check-circle"
|
||||||
|
icon-color="primary"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
<div style="min-width: 600px; max-width: 750px;">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="7" align="start">
|
||||||
|
<h4 class="font-weight-medium">Admin</h4>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="5" align="end">
|
||||||
|
<h4 class="font-weight-medium">21-08-2024 16:53</h4>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
<div class="bg-success-lighten rounded-lg pa-2 my-2">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="12">
|
||||||
|
<h4>SGOT</h4>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</div>
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="7" align="start">
|
||||||
|
<h4 class="font-weight-medium">Admin</h4>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="5" align="end">
|
||||||
|
<h4 class="font-weight-medium">21-08-2024 17:53</h4>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
<div class="bg-success-lighten rounded-lg pa-2 my-2">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="12">
|
||||||
|
<h4>SGPT</h4>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</v-timeline-item>
|
||||||
|
</v-timeline>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "validationdialog",
|
||||||
|
components: {},
|
||||||
|
mounted() {},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
computed: {},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
56
status-patient/components/verif-dialog.vue
Normal file
56
status-patient/components/verif-dialog.vue
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
<template>
|
||||||
|
<v-timeline side="end" align="start">
|
||||||
|
<v-timeline-item
|
||||||
|
dot-color="white"
|
||||||
|
:fill-dot="true"
|
||||||
|
icon="mdi-check-circle"
|
||||||
|
icon-color="primary"
|
||||||
|
size="small"
|
||||||
|
>
|
||||||
|
<div style="min-width: 600px; max-width: 750px;">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="7" align="start">
|
||||||
|
<h4 class="font-weight-medium">Admin</h4>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="5" align="end">
|
||||||
|
<h4 class="font-weight-medium">21-08-2024 16:53</h4>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
<div class="bg-success-lighten rounded-lg pa-2 my-2">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="12">
|
||||||
|
<h4>SGOT</h4>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</div>
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="7" align="start">
|
||||||
|
<h4 class="font-weight-medium">Admin</h4>
|
||||||
|
</v-col>
|
||||||
|
<v-col cols="5" align="end">
|
||||||
|
<h4 class="font-weight-medium">21-08-2024 17:53</h4>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
<div class="bg-success-lighten rounded-lg pa-2 my-2">
|
||||||
|
<v-row>
|
||||||
|
<v-col cols="12">
|
||||||
|
<h4>SGPT</h4>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</v-timeline-item>
|
||||||
|
</v-timeline>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "verficationdialog",
|
||||||
|
components: {},
|
||||||
|
mounted() {},
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
computed: {},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
125
status-patient/index.html
Normal file
125
status-patient/index.html
Normal file
@@ -0,0 +1,125 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Status Pasien</title>
|
||||||
|
<!-- Vuetify CSS -->
|
||||||
|
<link href="../css/vuetify.css" rel="stylesheet" />
|
||||||
|
<!-- Local Stylesheet for Fonts -->
|
||||||
|
<link rel="stylesheet" href="../css/styles.css" />
|
||||||
|
<link href="../css/materialdesignicon.css" rel="stylesheet" />
|
||||||
|
<script src="https://code.iconify.design/iconify-icon/2.1.0/iconify-icon.min.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="app"></div>
|
||||||
|
<!-- Moment -->
|
||||||
|
<script src="../libraries/moment.js"></script>
|
||||||
|
<!-- Vue.js -->
|
||||||
|
<!-- DEV -->
|
||||||
|
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
|
||||||
|
<!-- PROD -->
|
||||||
|
<!-- <script src="../libraries/vue3.4.36.global.prod.js"></script> -->
|
||||||
|
<!-- Vuex -->
|
||||||
|
<script src="../libraries/vuex.js"></script>
|
||||||
|
<!-- Vuetify -->
|
||||||
|
<script src="../libraries/vuetify3.js"></script>
|
||||||
|
<!-- vue-i18n -->
|
||||||
|
<script src="../libraries/vue-i18n.global.js"></script>
|
||||||
|
<!-- Axios -->
|
||||||
|
<script src="../libraries/axios.js"></script>
|
||||||
|
|
||||||
|
<script src="../globalscript/theme.js"></script>
|
||||||
|
<script src="../globalscript/global.js"></script>
|
||||||
|
<!-- loader single file component -->
|
||||||
|
<script src="../libraries/vue3-sfc-loader.js"></script>
|
||||||
|
<script src="./language.js"></script>
|
||||||
|
|
||||||
|
<script type="module">
|
||||||
|
const { loadModule } = window["vue3-sfc-loader"];
|
||||||
|
import system from "../globalstore/globalstore.js";
|
||||||
|
import stored from "./modules/store.js";
|
||||||
|
|
||||||
|
// if (one_token()) {
|
||||||
|
// let usr = JSON.parse(localStorage.getItem("user"));
|
||||||
|
// location.replace("/" + usr.M_UserGroupDashboard);
|
||||||
|
// }
|
||||||
|
|
||||||
|
const options = {
|
||||||
|
moduleCache: {
|
||||||
|
vue: Vue,
|
||||||
|
},
|
||||||
|
getFile(url) {
|
||||||
|
return fetch(url).then((response) =>
|
||||||
|
response.ok ? response.text() : Promise.reject(response)
|
||||||
|
);
|
||||||
|
},
|
||||||
|
addStyle(textContent) {
|
||||||
|
const style = document.createElement("style");
|
||||||
|
style.textContent = textContent;
|
||||||
|
const ref = document.head.getElementsByTagName("style")[0] || null;
|
||||||
|
document.head.insertBefore(style, ref);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
const messages = CustomMessages;
|
||||||
|
const browserLocale = navigator.language || navigator.languages[0];
|
||||||
|
const i18n = VueI18n.createI18n({
|
||||||
|
locale: browserLocale.startsWith("id") ? "id" : "en",
|
||||||
|
fallbackLocale: "en",
|
||||||
|
messages,
|
||||||
|
});
|
||||||
|
window.i18n = i18n;
|
||||||
|
|
||||||
|
moment.locale(browserLocale.startsWith("id") ? "id" : "en");
|
||||||
|
const store = Vuex.createStore({
|
||||||
|
modules: {
|
||||||
|
system: system,
|
||||||
|
stored: stored,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const app = Vue.createApp({
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visible: false,
|
||||||
|
bg_src: "",
|
||||||
|
loading: false,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
template: `
|
||||||
|
<main-component></main-component>
|
||||||
|
`,
|
||||||
|
});
|
||||||
|
|
||||||
|
const vuetify = Vuetify.createVuetify({
|
||||||
|
theme: {
|
||||||
|
themes: CustomTheme,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
app.use(store);
|
||||||
|
app.use(vuetify);
|
||||||
|
app.use(i18n);
|
||||||
|
|
||||||
|
const components = {
|
||||||
|
"main-component": "./components/main.vue",
|
||||||
|
};
|
||||||
|
|
||||||
|
Promise.all(
|
||||||
|
Object.entries(components).map(([name, path]) => {
|
||||||
|
return loadModule(path, options).then((component) => {
|
||||||
|
app.component(name, component);
|
||||||
|
});
|
||||||
|
})
|
||||||
|
)
|
||||||
|
.then(() => {
|
||||||
|
app.mount("#app");
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
console.error("Error loading components:", error);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
46
status-patient/language.js
Normal file
46
status-patient/language.js
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
var CustomMessages = {
|
||||||
|
en: {
|
||||||
|
message: {
|
||||||
|
filter: {
|
||||||
|
date: "Date",
|
||||||
|
noreg: "No. Reg / Name",
|
||||||
|
group: "Customer Group",
|
||||||
|
},
|
||||||
|
table: {
|
||||||
|
title: "TOTAL PATIENTS",
|
||||||
|
h_no: "NO",
|
||||||
|
h_orderr: "ORDER/JANJI HASIL",
|
||||||
|
h_pasien: "PATIENT",
|
||||||
|
h_status: "STATUS ORDER",
|
||||||
|
h_sample: "SAMP. COLLECT",
|
||||||
|
h_proces: "PROCESS",
|
||||||
|
h_resver: "RESULT VERIF",
|
||||||
|
h_resval: "RESULT VALID",
|
||||||
|
h_printt: "PRINT",
|
||||||
|
},
|
||||||
|
dobage: "Date of Birth and Age",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
id: {
|
||||||
|
message: {
|
||||||
|
filter: {
|
||||||
|
date: "Tanggal",
|
||||||
|
noreg: "No. Reg / Nama",
|
||||||
|
group: "Kel. Pelanggan",
|
||||||
|
},
|
||||||
|
table: {
|
||||||
|
title: "TOTAL PASIEN",
|
||||||
|
h_no: "NO",
|
||||||
|
h_orderr: "ORDER/JANJI HASIL",
|
||||||
|
h_pasien: "PASIEN",
|
||||||
|
h_status: "STATUS ORDER",
|
||||||
|
h_sample: "SAMP. COLLECT",
|
||||||
|
h_proces: "PROSES",
|
||||||
|
h_resver: "RESULT VERIF",
|
||||||
|
h_resval: "RESULT VALID",
|
||||||
|
h_printt: "PRINT",
|
||||||
|
},
|
||||||
|
dobage: "Tanggal Lahir dan Umur",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
207
status-patient/modules/store.js
Normal file
207
status-patient/modules/store.js
Normal file
@@ -0,0 +1,207 @@
|
|||||||
|
const store = {
|
||||||
|
state() {
|
||||||
|
return {
|
||||||
|
date: new Date(),
|
||||||
|
temp_dropdown: ["Lorem", "ipsum", "dolor", "sit", "amet"],
|
||||||
|
data: [
|
||||||
|
{
|
||||||
|
"xno": 1,
|
||||||
|
"xid": "132282",
|
||||||
|
"order_date": "27-08-2024 19:32",
|
||||||
|
"no_reg": "05600027LA",
|
||||||
|
"patient_name": "Ny IMELDA JANICE",
|
||||||
|
"company_name": "PASIEN KLINISI",
|
||||||
|
"mou_name": "PASIEN UMUM 2021",
|
||||||
|
"status_cito": "N",
|
||||||
|
"order_promise": "28-08-2024 12:00",
|
||||||
|
"details_order": [
|
||||||
|
{
|
||||||
|
"ids": "1626778,1626779",
|
||||||
|
"group_name": "LAB",
|
||||||
|
"group_id": "1",
|
||||||
|
"flag_nonlab": "N",
|
||||||
|
"status": "N"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"details_sampling": [
|
||||||
|
{
|
||||||
|
"ids": "1626778,1626779",
|
||||||
|
"group_name": "LAB",
|
||||||
|
"group_id": "1",
|
||||||
|
"flag_nonlab": "N",
|
||||||
|
"status": "N"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"details_verifications": [
|
||||||
|
{
|
||||||
|
"ids": "1626778,1626779",
|
||||||
|
"group_name": "LAB",
|
||||||
|
"group_id": "1",
|
||||||
|
"flag_nonlab": "N",
|
||||||
|
"status": "N"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"details_process": [
|
||||||
|
{
|
||||||
|
"ids": "1626778,1626779",
|
||||||
|
"group_name": "LAB",
|
||||||
|
"group_id": "1",
|
||||||
|
"flag_nonlab": "N",
|
||||||
|
"status": "N"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"details_result_verification": [
|
||||||
|
{
|
||||||
|
"ids": "1626778,1626779",
|
||||||
|
"group_name": "LAB",
|
||||||
|
"group_id": "1",
|
||||||
|
"flag_nonlab": "N",
|
||||||
|
"status": "N"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"details_result_validation": [
|
||||||
|
{
|
||||||
|
"ids": "1626778,1626779",
|
||||||
|
"group_name": "LAB",
|
||||||
|
"group_id": "1",
|
||||||
|
"flag_nonlab": "N",
|
||||||
|
"status": "N"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"details_print": [
|
||||||
|
{
|
||||||
|
"ids": "1626778,1626779",
|
||||||
|
"group_name": "LAB",
|
||||||
|
"group_id": "1",
|
||||||
|
"flag_nonlab": "N",
|
||||||
|
"status": "N"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"no_reg_ext": "056G3C17LA"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"xno": 2,
|
||||||
|
"xid": "132283",
|
||||||
|
"order_date": "28-08-2024 15:51",
|
||||||
|
"no_reg": "05600028LA",
|
||||||
|
"patient_name": "Ny COBA HENY",
|
||||||
|
"company_name": "PASIEN MANDIRI",
|
||||||
|
"mou_name": "PRAMITA PROMO PAKET IMLEK 2024",
|
||||||
|
"status_cito": "N",
|
||||||
|
"order_promise": "29-08-2024 12:00",
|
||||||
|
"details_order": [
|
||||||
|
{
|
||||||
|
"ids": "1626780",
|
||||||
|
"group_name": "Fisioterapi SWD",
|
||||||
|
"group_id": "26",
|
||||||
|
"flag_nonlab": "N",
|
||||||
|
"status": "Y"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"details_sampling": [
|
||||||
|
{
|
||||||
|
"ids": "1626780",
|
||||||
|
"group_name": "Fisioterapi SWD",
|
||||||
|
"group_id": "26",
|
||||||
|
"flag_nonlab": "N",
|
||||||
|
"status": "Y"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"details_verifications": [
|
||||||
|
{
|
||||||
|
"ids": "1626780",
|
||||||
|
"group_name": "Fisioterapi SWD",
|
||||||
|
"group_id": "26",
|
||||||
|
"flag_nonlab": "N",
|
||||||
|
"status": "Y"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"details_process": [
|
||||||
|
{
|
||||||
|
"ids": "1626780",
|
||||||
|
"group_name": "Fisioterapi SWD",
|
||||||
|
"group_id": "26",
|
||||||
|
"flag_nonlab": "N",
|
||||||
|
"status": "Y"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"details_result_verification": [
|
||||||
|
{
|
||||||
|
"ids": "1626780",
|
||||||
|
"group_name": "Fisioterapi SWD",
|
||||||
|
"group_id": "26",
|
||||||
|
"flag_nonlab": "N",
|
||||||
|
"status": "Y"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"details_result_validation": [
|
||||||
|
{
|
||||||
|
"ids": "1626780",
|
||||||
|
"group_name": "Fisioterapi SWD",
|
||||||
|
"group_id": "26",
|
||||||
|
"flag_nonlab": "N",
|
||||||
|
"status": "Y"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"details_print": [
|
||||||
|
{
|
||||||
|
"ids": "1626780",
|
||||||
|
"group_name": "Fisioterapi SWD",
|
||||||
|
"group_id": "26",
|
||||||
|
"flag_nonlab": "N",
|
||||||
|
"status": "Y"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"no_reg_ext": "056R2H68LA"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
total_page: 1,
|
||||||
|
sp_dialog: false,
|
||||||
|
print_dialog: false,
|
||||||
|
multi_dialog: {
|
||||||
|
open: false,
|
||||||
|
name: "",
|
||||||
|
},
|
||||||
|
data_order: [
|
||||||
|
{
|
||||||
|
"pemeriksaan": "SGOT",
|
||||||
|
"bruto": 88000,
|
||||||
|
"diskon": 0,
|
||||||
|
"total": 88000,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pemeriksaan": "SGPT",
|
||||||
|
"bruto": 88000,
|
||||||
|
"diskon": 0,
|
||||||
|
"total": 88000,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pemeriksaan": "TOTAL",
|
||||||
|
"bruto": 176000,
|
||||||
|
"diskon": 0,
|
||||||
|
"total": 176000,
|
||||||
|
},
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mutations: {
|
||||||
|
setDate(state, date) {
|
||||||
|
state.date = date;
|
||||||
|
},
|
||||||
|
setDialog(state, bool) {
|
||||||
|
state.sp_dialog = bool;
|
||||||
|
},
|
||||||
|
setPrintDialog(state, bool) {
|
||||||
|
state.print_dialog = bool;
|
||||||
|
},
|
||||||
|
setMultiDialog(state, bool, name) {
|
||||||
|
state.multi_dialog.open = bool;
|
||||||
|
state.multi_dialog.name = name;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
actions: {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default store
|
||||||
Reference in New Issue
Block a user