84 lines
2.8 KiB
Vue
84 lines
2.8 KiB
Vue
|
|
<template>
|
|
<v-card flat>
|
|
<v-data-table :headers="headers" :items="orders"
|
|
:loading="isLoading"
|
|
hide-actions class="elevation-1">
|
|
<template slot="items" slot-scope="props">
|
|
<td class="text-xs-left pa-2" >
|
|
|
|
<v-checkbox :label="`${props.item.px}`"></v-checkbox>
|
|
</td>
|
|
<td class="text-xs-right pa-2" >{{ props.item.bruto }}</td>
|
|
<td class="text-xs-right pa-2">{{ props.item.disc }}</td>
|
|
<td class="text-xs-right pa-2">{{ props.item.total }}</td>
|
|
</template>
|
|
|
|
</v-data-table>
|
|
</v-card>
|
|
</template>
|
|
|
|
<style scoped>
|
|
table.v-table tbody td,table.v-table tbody th {
|
|
height: 40px;
|
|
}
|
|
|
|
table.v-table thead tr {
|
|
height: 40px;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
module.exports = {
|
|
data () {
|
|
return {
|
|
headers: [
|
|
{
|
|
text: "PEMERIKSAAN",
|
|
align: "left",
|
|
sortable: false,
|
|
value: "px",
|
|
class: "pa-2 blue lighten-3 white--text"
|
|
},
|
|
{
|
|
text: "BRUTO",
|
|
align: "left",
|
|
sortable: false,
|
|
value: "bruto",
|
|
width: "25%",
|
|
class: "text-xs-right pa-2 blue lighten-3 white--text",
|
|
width: "15%"
|
|
},
|
|
{
|
|
text: "DISKON",
|
|
align: "left",
|
|
sortable: false,
|
|
value: "disc",
|
|
class: "text-xs-right pa-2 blue lighten-3 white--text",
|
|
width: "15%"
|
|
},
|
|
{
|
|
text: "TOTAL",
|
|
align: "left",
|
|
sortable: false,
|
|
value: "total",
|
|
class: "text-xs-right pa-2 blue lighten-3 white--text",
|
|
width: "15%"
|
|
}
|
|
],
|
|
query : "",
|
|
|
|
isLoading: true,
|
|
orders: [
|
|
{"px":"Hemoglobin", "bruto":"30,000", "disc":"10,000", "total":"20,000"},
|
|
{"px":"Trombosit", "bruto":"30,000", "disc":"10,000", "total":"20,000"},
|
|
{"px":"Eritrosit", "bruto":"30,000", "disc":"10,000", "total":"20,000"},
|
|
// {"px":"SGOT", "bruto":"30,000", "disc":"10,000", "total":"20,000"},
|
|
// {"px":"SGPT", "bruto":"30,000", "disc":"10,000", "total":"20,000"},
|
|
// {"px":"Urine Lengkap", "bruto":"30,000", "disc":"10,000", "total":"20,000"}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
</script>
|