66 lines
2.2 KiB
Vue
66 lines
2.2 KiB
Vue
<template>
|
|
<v-layout column fill-height>
|
|
<!-- <v-flex xs12> -->
|
|
<v-card class="pa-1 mb-2">
|
|
<v-card-text class="pa-0">
|
|
<v-layout row wrap>
|
|
<v-flex xs12>
|
|
<patient-search-box></patient-search-box>
|
|
</v-flex>
|
|
</v-layout>
|
|
</v-card-text>
|
|
|
|
<!-- <v-card-actions class="text-xs-right">
|
|
|
|
<v-btn color="orange" class="white--text">Lanjut</v-btn>
|
|
</v-card-actions> -->
|
|
|
|
</v-card>
|
|
<!-- </v-flex> -->
|
|
|
|
<!-- <v-flex xs12 grow> -->
|
|
<v-card class="pa-1 p-left-side grow fill-height">
|
|
<v-card-text class="pa-0 grow">
|
|
<v-layout column>
|
|
|
|
<v-flex xs12>
|
|
<!-- <patient-detail></patient-detail> -->
|
|
<patient-search-result></patient-search-result>
|
|
|
|
</v-flex>
|
|
|
|
<v-flex xs12>
|
|
<!-- <patient-notes></patient-notes> -->
|
|
|
|
</v-flex>
|
|
</v-layout>
|
|
</v-card-text>
|
|
|
|
<!-- <v-card-actions class="text-xs-right">
|
|
|
|
<v-btn color="orange" class="white--text">Lanjut</v-btn>
|
|
</v-card-actions> -->
|
|
|
|
</v-card>
|
|
<!-- </v-flex> -->
|
|
</v-layout>
|
|
|
|
</template>
|
|
|
|
<style scoped>
|
|
/* .p-left-side {
|
|
min-height: 500px;
|
|
} */
|
|
</style>
|
|
|
|
<script>
|
|
module.exports = {
|
|
components : {
|
|
'patient-search-box' : httpVueLoader('./oneSamplingPatientSearchBox.vue'),
|
|
'patient-search-result' : httpVueLoader('./oneSamplingPatientSearchResult.vue')
|
|
// 'patient-detail': httpVueLoader('./patientDetail.vue'),
|
|
// 'patient-search-result' : httpVueLoader('./patientSearchResult.vue')
|
|
// 'patient-notes' : httpVueLoader('./patientNotes.vue')
|
|
}
|
|
}
|
|
</script> |