mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-05 01:12:55 +01:00
d51e5ab65d
- fix: Translation fixes - fix: Various fixes - feat: PB translations, configuration changes - fix: Bugfixes GitOrigin-RevId: 55f8b148c42a296162fc707c36a5146ca0073b4b
50 lines
861 B
Vue
50 lines
861 B
Vue
<template lang="pug">
|
|
div.document
|
|
v-scimag(v-if="schema === 'scimag' && document", :document="document")
|
|
v-scitech(v-if="schema === 'scitech' && document", :document="document")
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Document',
|
|
props: {
|
|
document: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
schema: {
|
|
required: true
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.document {
|
|
.top {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
h6 {
|
|
margin-right: 10px;
|
|
margin-bottom: 0;
|
|
}
|
|
img {
|
|
max-height: 200px;
|
|
max-width: 200px;
|
|
object-fit: contain;
|
|
width: auto;
|
|
}
|
|
}
|
|
padding: 30px 0;
|
|
table {
|
|
font-size: 12px;
|
|
tr {
|
|
word-break: break-all;
|
|
}
|
|
th {
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
}
|
|
</style>
|