169 lines
4.8 KiB
PHP
169 lines
4.8 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>CPONE</title>
|
|
<link rel="stylesheet" href="../../../libs/vendor/css/google-fonts.css">
|
|
<link rel="stylesheet" href="../../../libs/vendor/css/icomoon-fonts.css">
|
|
<link rel="stylesheet" href="../../../libs/vendor/css/vuetify.min.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div v-cloak id="app">
|
|
<v-app id="smartApp">
|
|
<one-navbar></one-navbar>
|
|
<v-content class="blue lighten-5">
|
|
<v-container fluid pt-2 pb-2 pl-1 pr-1 fill-height>
|
|
<v-layout column fill-height>
|
|
<v-flex class="fixed-search" class="mb-8">
|
|
<one-process-re-search-box></one-process-re-search-box>
|
|
</v-flex>
|
|
<v-flex fill-height style="position:relative;top:62px" class="mt-2">
|
|
<v-layout fill-height>
|
|
<v-flex xs3 pr-1>
|
|
<one-process-re-patient-list></one-process-re-patient-list>
|
|
</v-flex>
|
|
|
|
<v-flex xs9 pl-1 fill-height>
|
|
<v-layout column fill-height>
|
|
<v-flex xs12 class="flex-0">
|
|
<one-process-re-patient-detail></one-process-re-patient-detail>
|
|
</v-flex>
|
|
|
|
<v-flex xs12 pt-2 class="flex-1">
|
|
<one-process-re-px-list></one-process-re-px-list>
|
|
</v-flex>
|
|
</v-layout>
|
|
|
|
</v-flex>
|
|
</v-layout>
|
|
<v-flex>
|
|
|
|
|
|
</v-layout>
|
|
</v-container>
|
|
</v-content>
|
|
<one-process-re-dialog-method></one-process-re-dialog-method>
|
|
<one-process-re-dialog-note></one-process-re-dialog-note>
|
|
<one-process-re-dialog-req></one-process-re-dialog-req>
|
|
<one-footer> </one-footer>
|
|
<one-info></one-info>
|
|
</v-app>
|
|
</div>
|
|
|
|
<!-- Vendor -->
|
|
<script src="../../../libs/vendor/axios.min.js"></script>
|
|
<script src="../../../libs/vendor/moment.min.js"></script>
|
|
<script src="../../../libs/vendor/lodash.js"></script>
|
|
<script src="../../../libs/vendor/moment-locale-id.js"></script>
|
|
<script src="../../../libs/vendor/vue-the-mask.min.js"></script>
|
|
<script src="../../../libs/vendor/vue.js"></script>
|
|
<script src="../../../libs/vendor/vuex.js"></script>
|
|
<script src="../../../libs/vendor/vuetify.js"></script>
|
|
<script src="../../../libs/vendor/httpVueLoader.js"></script>
|
|
<script src="../../../libs/one_global.js"></script>
|
|
<script src="/react-comp/critical_value/cv_widget.js<?php echo "?ts=" .
|
|
date("Y mdHis"); ?>"></script>
|
|
<!-- App Script -->
|
|
<?php $ts = "?ts=" . Date("ymdhis"); ?>
|
|
|
|
|
|
|
|
<style scoped>
|
|
.flex-0 {
|
|
|
|
flex: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-1 {
|
|
|
|
flex: 1 !important;
|
|
|
|
overflow: auto;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fixed-search {
|
|
|
|
position: fixed;
|
|
|
|
top: 68px;
|
|
|
|
left: 4px;
|
|
|
|
right: 4px;
|
|
|
|
z-index: 7;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fixed-search .v-card {}
|
|
|
|
|
|
|
|
.mt-6 {
|
|
|
|
margin-top: 66px;
|
|
|
|
}
|
|
</style>
|
|
|
|
|
|
|
|
<script type="module">
|
|
console.log("V18 preparasi sprema")
|
|
|
|
import {
|
|
store
|
|
} from './store.js<?php echo $ts; ?>';
|
|
//for testing
|
|
let ts = '?ts=' + moment().format('YYMMDDhhmmss')
|
|
window.store = store;
|
|
Vue.directive('mask', VueTheMask.mask)
|
|
new Vue({
|
|
store,
|
|
el: '#app',
|
|
components: {
|
|
'one-navbar': httpVueLoader('../../../apps/components/oneNavbarComponent.vue' + ts),
|
|
'one-footer': httpVueLoader('../../../apps/components/oneFooter.vue' + ts),
|
|
'one-process-re-search-box': httpVueLoader('./components/oneProcessReSearchBox.vue' + ts),
|
|
'one-process-re-patient-list': httpVueLoader('./components/oneProcessRePatientList.vue' + ts),
|
|
'one-process-re-patient-detail': httpVueLoader('./components/oneProcessRePatientDetail.vue' + ts),
|
|
'one-process-re-px-list': httpVueLoader('./components/oneProcessRePxList.vue' + ts),
|
|
'one-process-re-dialog-method': httpVueLoader('./components/oneProcessReDialogMethodChange.vue' + ts),
|
|
'one-process-re-dialog-note': httpVueLoader('./components/oneProcessReDialogNote.vue' + ts),
|
|
'one-info': httpVueLoader('./components/oneInfo.vue' + ts),
|
|
'one-process-re-dialog-req': httpVueLoader('./components/oneProcessReDialogReq.vue' + ts)
|
|
},
|
|
computed: {
|
|
tab_active() {
|
|
|
|
}
|
|
},
|
|
|
|
mounted() {
|
|
// store.dispatch('receive_patient/search')
|
|
}
|
|
})
|
|
</script>
|
|
<style>
|
|
[v-cloak] {
|
|
display: none
|
|
}
|
|
</style>
|
|
</body>
|
|
|
|
</html>
|