43 lines
778 B
Vue
43 lines
778 B
Vue
<template>
|
|
<v-layout row wrap>
|
|
<v-flex xs12>
|
|
<v-card class="pa-1">
|
|
<one-sampling-info-detail></one-sampling-info-detail>
|
|
</v-card>
|
|
</v-flex>
|
|
|
|
<v-flex xs12>
|
|
<one-sampling-info-tube></one-sampling-info-tube>
|
|
</v-flex>
|
|
|
|
|
|
</v-layout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
<style scoped>
|
|
</style>
|
|
|
|
<script>
|
|
module.exports = {
|
|
components : {
|
|
'one-sampling-info-detail' : httpVueLoader('./oneSamplingInfoDetail.vue'),
|
|
'one-sampling-info-tube' : httpVueLoader('./oneSamplingInfoTube.vue')
|
|
},
|
|
|
|
data () {
|
|
return {
|
|
}
|
|
},
|
|
|
|
computed : {
|
|
|
|
}
|
|
}
|
|
</script>
|