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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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