diff --git a/public/img/driveerror.png b/public/img/driveerror.png new file mode 100644 index 00000000..6691d6a7 Binary files /dev/null and b/public/img/driveerror.png differ diff --git a/public/img/loaderror.png b/public/img/loaderror.png new file mode 100644 index 00000000..15e8a8c4 Binary files /dev/null and b/public/img/loaderror.png differ diff --git a/src/components/MyPrint/MyPrint.vue b/src/components/MyPrint/MyPrint.vue index f3017af4..f9d4face 100644 --- a/src/components/MyPrint/MyPrint.vue +++ b/src/components/MyPrint/MyPrint.vue @@ -50,6 +50,10 @@ const props = defineProps({ type: Function, default: null, }, + type: { + type: String, + default: 'deliveryPrint' + } }); const $emit = defineEmits(['update:modelValue']); @@ -150,7 +154,7 @@ const printTemplate = () => { const printNode = document.querySelectorAll('.printCode > div > div'); console.log('printNode :>> ', printNode); - print(printNode); + print(printNode, props.type); }; diff --git a/src/components/webCameraIMG/webCamera.vue b/src/components/webCameraIMG/webCamera.vue index 2f16ba6f..85280172 100644 --- a/src/components/webCameraIMG/webCamera.vue +++ b/src/components/webCameraIMG/webCamera.vue @@ -1,22 +1,20 @@