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

View File

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

View File

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

View File

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