This commit is contained in:
Tyrel Souza 2023-10-31 00:12:50 +00:00
parent 50cb23ccec
commit 983c630e6a
5 changed files with 22 additions and 10 deletions

View File

@ -0,0 +1,4 @@
{
"bail": 1,
"verbose": true
}

View File

@ -6,7 +6,7 @@
</button> </button>
<br> <br>
<br> <br>
<div :class="{ hide: hide }" class="px666"> <div :class="{ hide: hide }" class="px666 scroll-pdf">
<div v-for="table of tables"> <div v-for="table of tables">
<div id="pdf" ref="document"> <div id="pdf" ref="document">
<div class="header"> <div class="header">
@ -95,10 +95,10 @@
<br/> <br/>
<!-- End InstrumentInfo --> <!-- End InstrumentInfo -->
<!-- As Found --> <!-- As Found -->
<ReadingTable /> <ReadingTable :as_found="table.as_found" />
<br/> <br/>
<!-- As Left --> <!-- As Left -->
<ReadingTable /> <ReadingTable :as_left="table.as_left" />
<!-- End Instruments--> <!-- End Instruments-->
<div class="box"> <div class="box">
<p> <p>
@ -223,7 +223,7 @@ const output = () => {
} }
} }
return tables // return tables
} }

View File

@ -96,10 +96,13 @@
</table> </table>
</div> </div>
</template> </template>
<script> <script setup>
export default { import {defineProps, ref} from "vue";
name: 'ReadingTable'
} const props = defineProps({
as_found: Object,
as_left: Object,
});
</script> </script>
<style scoped> <style scoped>
@media print { @media print {

View File

@ -126,6 +126,6 @@ const emits = defineEmits([
<style scoped> <style scoped>
body { body {
margin: 1rem; margin: 1rem;
background: url("/public/funky-lines.webp"); background: url("/funky-lines.webp");
} }
</style> </style>

View File

@ -1,6 +1,6 @@
body { body {
margin: 1rem; margin: 1rem;
background: url("/public/funky-lines.webp"); background: url("/funky-lines.webp");
} }
.card { .card {
@ -94,3 +94,8 @@ h3 {
.px666 { .px666 {
width: 666px; width: 666px;
} }
.scroll-pdf {
height: 90vh;
overflow: scroll;
}