<div></div>

This commit is contained in:
Tyrel Souza 2024-07-04 23:37:28 -04:00
parent 5001030746
commit 098b616db2
No known key found for this signature in database
GPG Key ID: F3614B02ACBE438E
10 changed files with 516 additions and 498 deletions

View File

@ -1,4 +1,5 @@
<template> <template>
<div>
<div class="card-header"> <div class="card-header">
Primary Cal Device Primary Cal Device
<button class="custom-button" role="button" @click="showNewCalibrationClick">+ New</button> <button class="custom-button" role="button" @click="showNewCalibrationClick">+ New</button>
@ -27,6 +28,7 @@
</p> </p>
</div> </div>
</div> </div>
</div>
</template> </template>
<script setup> <script setup>
import { ref, defineEmits, watchEffect } from "vue"; import { ref, defineEmits, watchEffect } from "vue";

View File

@ -1,4 +1,5 @@
<template> <template>
<div>
<div class="card-header">Calibration Devices</div> <div class="card-header">Calibration Devices</div>
<div class="card-body"> <div class="card-body">
<h3>Primary Device</h3> <h3>Primary Device</h3>
@ -25,6 +26,7 @@
<VueDatePicker v-model="secondary_calibration_date" auto-apply :enableTimePicker="false" :flow="flow"></VueDatePicker> <VueDatePicker v-model="secondary_calibration_date" auto-apply :enableTimePicker="false" :flow="flow"></VueDatePicker>
</div> </div>
</div> </div>
</div>
</template> </template>
<script setup> <script setup>
import { ref, defineEmits, watchEffect } from "vue"; import { ref, defineEmits, watchEffect } from "vue";

View File

@ -1,4 +1,5 @@
<template> <template>
<div>
<div class="card-header">Customer</div> <div class="card-header">Customer</div>
<div class="card-body"> <div class="card-body">
<table class="table"> <table class="table">
@ -37,6 +38,7 @@
</tbody> </tbody>
</table> </table>
</div> </div>
</div>
</template> </template>
<script setup> <script setup>

View File

@ -1,4 +1,5 @@
<template> <template>
<div>
<div class="card-header">Environment</div> <div class="card-header">Environment</div>
<div class="card-body"> <div class="card-body">
<table class="table"> <table class="table">
@ -33,6 +34,7 @@
</tbody> </tbody>
</table> </table>
</div> </div>
</div>
</template> </template>
<script setup> <script setup>
import { ref, defineEmits, watchEffect } from 'vue' import { ref, defineEmits, watchEffect } from 'vue'

View File

@ -1,4 +1,5 @@
<template> <template>
<div>
<div class="card-header"> <div class="card-header">
Instrument Instrument
<button class="custom-button" role="button" @click="showNewInstrumentClick">+ New</button> <button class="custom-button" role="button" @click="showNewInstrumentClick">+ New</button>
@ -27,6 +28,7 @@
</p> </p>
</div> </div>
</div> </div>
</div>
</template> </template>
<script setup> <script setup>
import { ref, defineEmits, watchEffect } from "vue"; import { ref, defineEmits, watchEffect } from "vue";

View File

@ -1,4 +1,5 @@
<template> <template>
<div>
<div class="card-header">Instrument</div> <div class="card-header">Instrument</div>
<div class="card-body"> <div class="card-body">
<table class="table"> <table class="table">
@ -97,6 +98,7 @@
</tbody> </tbody>
</table> </table>
</div> </div>
</div>
</template> </template>
<script setup> <script setup>
import { ref, defineEmits, watchEffect } from "vue"; import { ref, defineEmits, watchEffect } from "vue";

View File

@ -1,4 +1,5 @@
<template> <template>
<div>
<div class="card-header">Finished?</div> <div class="card-header">Finished?</div>
<div class="card-body"> <div class="card-body">
<button class="custom-button" @click="exportToPDF"> <button class="custom-button" @click="exportToPDF">
@ -118,6 +119,7 @@
<div> <div>
{{ output() }} {{ output() }}
</div> </div>
</div>
</template> </template>
<script setup> <script setup>

View File

@ -1,4 +1,5 @@
<template> <template>
<div>
<div class="readings"> <div class="readings">
<table class="table table-striped"> <table class="table table-striped">
<thead> <thead>
@ -95,6 +96,7 @@
</tbody> </tbody>
</table> </table>
</div> </div>
</div>
</template> </template>
<script setup> <script setup>
import {defineProps, ref} from "vue"; import {defineProps, ref} from "vue";

View File

@ -110,7 +110,7 @@ const showNewCalibration = (val) => {
show_new_calibration.value = val; show_new_calibration.value = val;
}; };
const emit = defineEmits([ const emits = defineEmits([
"uploadForm", "uploadForm",
"customerForm", "customerForm",
"environmentForm", "environmentForm",

View File

@ -1,4 +1,5 @@
<template> <template>
<div>
<div class="card-header">Report Uploads</div> <div class="card-header">Report Uploads</div>
<div class="card-body"> <div class="card-body">
<table class="table"> <table class="table">
@ -82,6 +83,7 @@
@change="readFile($event)" @change="readFile($event)"
/> />
</div> </div>
</div>
</template> </template>
<script setup> <script setup>
@ -152,7 +154,7 @@ const readFile = ($event) => {
const emit = defineEmits(); const emit = defineEmits();
watchEffect(() => { watchEffect(() => {
emit("upload-form", { emit("uploadForm", {
report_type, report_type,
files, files,
}); });