Browse Source

修复签收

dev-xx
马远东 9 months ago
parent
commit
2db0c29fd2
  1. 156
      src/components/webCameraIMG/webCamera.vue
  2. 3
      src/utils/webCamera/eloamWebCamera.js

156
src/components/webCameraIMG/webCamera.vue

@ -4,14 +4,8 @@
<el-tab-pane label="拍摄">
<div class="IMG_VIEW_container">
<!-- 主摄像头 -->
<div class="IMG_VIEW1">
<img
id="IMG_VIEW1"
v-if="IMG_camera"
ref="IMG_VIEW"
src="../../../public/img/load.gif"
alt="主摄像头"
/>
<div id="IMG_VIEW_Content" class="IMG_VIEW1">
<img id="IMG_VIEW1" ref="IMG_VIEW" src="http://127.0.0.1:38088/video=stream&camidx=0" alt="主摄像头" />
<el-icon v-if="!IMG_startUp" @click="Devicerestart" class="SwitchButton"
><SwitchButton
/></el-icon>
@ -34,7 +28,11 @@
<!-- 缩略图 -->
<div id="suoluetu" ref="IMG_Thumbnail">
<el-empty style="margin: auto;" description="暂无缩略图" v-if="!IMG_suoluetuList.length" />
<el-empty
style="margin: auto"
description="暂无缩略图"
v-if="!IMG_suoluetuList.length"
/>
<template v-for="(item, index) in IMG_suoluetuList" :key="index">
<el-image
ref="el => setImagePreviewRef(el, index)"
@ -61,38 +59,47 @@
</template>
<script setup>
import { reactive, ref } from 'vue';
import axios from 'axios';
import { reactive, ref, onMounted } from 'vue';
// import axios_serve from '../../../src/axios_IMG.js';
import { ElMessage } from 'element-plus';
import IMG_error from '../../../public/img/loaderror.png'; //
import IMG_drive from '../../../public/img/driveerror.png'; //
import IMG_load from '../../../public/img/load.gif'; //
import Axios_IMG from '../../axiosimg.js';
const IMG_camera = ref(false); //
const IMG_URL = 'http://127.0.0.1:38088/video=stream&camidx=0'; //
const IMG_error = '../../../public/img/loaderror.png'; //
const IMG_drive = '../../../public/img/driveerror.png'; //
// const IMG_URL = 'http://127.0.0.1:38088/video=stream&camidx=0';
const IMG_URL = "http://127.0.0.1:38088/video=stream&camidx=0";//
// const IMG_error = '../../../public/img/loaderror.png'; //
// const IMG_drive = '../../../public/img/driveerror.png'; //
const IMG_VIEW = ref(null); //
const IMG_Thumbnail = ref(null); //
const IMG_TITLE = ref('设备正在初始化中...');
const IMG_suoluetuList = ref([]); //
const initialIndex = ref(0); //
const imagePreviewRefs = ref([]);
let IMG_API_SERVER = reactive(true); //true线false
let IMG_Trimming_edge = ref(false); //
let IMG_startUp = ref(false); //
let IMG_API = ref('/api/blade-resource/oss/endpoint/put-file');
let zoom = ref(5); //
let IMGstate=ref(1);//
let IMGstate = ref(1); //
const $emit = defineEmits(['upload-success']);
const props = defineProps({
IMGstate: {
type: Number,//
required: false,//
default: 1 //;0,.1
}
type: Number, //
required: false, //
default: 1, //;0,.1
},
});
watch(() => props.IMGstate, (newValue, oldValue) => {
if(newValue !=IMGstate.value){
IMGstate.value = props.IMGstate
IMG_suoluetuList.value=[];//
watch(
() => props.IMGstate,
(newValue, oldValue) => {
if (newValue != IMGstate.value) {
IMGstate.value = props.IMGstate;
IMG_suoluetuList.value = []; //
}
});
}
);
//
const mylog = val => {
let element = document.getElementById('log');
@ -100,6 +107,7 @@ const mylog = val => {
let date = new Date().toString().slice(16, 24);
element.innerHTML = date + '&nbsp;&nbsp;' + val + '<br>' + old_val;
};
// el-image
const setImagePreviewRef = (el, index) => {
if (el) {
@ -116,11 +124,19 @@ const showPreview = async index => {
};
//
const IsConnect = async () => {
IMG_startUp.value = true; //
return true
let timeoutMs = 6000; // 6
let startTime = Date.now();
while (Date.now() - startTime < timeoutMs) {
try {
const response = await axios.post('/imgapi/device=isconnect', {}, { timeout: timeoutMs });
const response = await axios.post(
`${
IMG_API_SERVER ? 'http://127.0.0.1:38088/device=isconnect' : '/imgapi/device=isconnect'
}`,
{},
{ timeout: timeoutMs }
);
console.log(response.data, 'res');
if (response.data.code === '0') {
@ -153,8 +169,9 @@ const Opentrimming = () => {
//
const Deviceinitialization = async () => {
IMG_camera.value = true; //
let IMG_state = await IsConnect();
IMG_startUp.value = true; //
return
// let IMG_state = await IsConnect();
console.log(IMG_state, 'IMG_state');
//
if (IMG_state == false) {
@ -187,15 +204,14 @@ const Deviceinitialization = async () => {
const onLoad = async () => {
await Deviceinitialization(); //
};
onLoad();
onLoad()
//
const Devicerestart=()=>{
const Devicerestart = () => {
IMG_camera.value = true; //
mylog('重启设备');
IMG_VIEW.value.src = '../../../public/img/load.gif'; //
IMG_VIEW.value.src = IMG_load; //
Deviceinitialization(); //
}
};
// API
const zoomAPI = attribute => {
@ -204,7 +220,10 @@ const zoomAPI = attribute => {
corp: JSON.stringify(zoom.value), // 0~909
};
axios
.post('/imgapi/stream=zoominout', JSON.stringify(data))
.post(
`${IMG_API_SERVER ? 'http://127.0.0.1:38088/stream=zoominout' : '/imgapi/stream=zoominout'}`,
JSON.stringify(data)
)
.then(() => {})
.catch(error => {
console.error('请求出错', error);
@ -242,7 +261,7 @@ const Turnoffcamera = () => {
camidx: 0,
};
axios
.post('/imgapi/video=close', data)
.post(`${IMG_API_SERVER ? 'http://127.0.0.1:38088/video=close' : '/imgapi/video=close'}`, data)
.then(() => {
IMG_VIEW.value.src = ''; //
IMG_startUp.value = false; //
@ -321,7 +340,12 @@ const IMG_add = img_base64 => {
const Rotatingcamera = angle => {
// angle:
let data = { camidx: '0', rotate: String(angle) };
axios.post('/imgapi/video=rotate', JSON.stringify(data)).then(res => {
axios
.post(
`${IMG_API_SERVER ? 'http://127.0.0.1:38088/video=rotate' : '/imgapi/video=rotate'}`,
JSON.stringify(data)
)
.then(res => {
console.log(res);
mylog('旋转摄像头成功');
});
@ -330,15 +354,59 @@ const Rotatingcamera = angle => {
//
let view1_scan = async () => {
let data = {
filepath: 'base64', //["", "D:\\1.jpg", "base64"]
rotate: '0', // 90"0"
camidx: '0', // 0:1:
ColorMode: '0', // 0 1 2 3 4() 5:()
deskew: IMG_Trimming_edge.value ? '1' : '0', //0:1:()
bAutoAdjust: '0', // 0 1
quality: '2', //0:1:2:3:4:5:
};
axios.post('/imgapi/video=grabimage', JSON.stringify(data)).then(res => {
"filepath": "",
"rotate": "",
"deskew": "",
"deskewval": "",
"camidx": "0",
"ColorMode": "",
"quality": "1",
"bAutoAdjust": "",
"bIsPrint1to1": "",
"watermark": {
"pos": "",
"content": "",
"transparency": "",
"fontsize": "",
"font": "",
"color": ""
}
};
const xhr = new XMLHttpRequest();
xhr.open('POST', 'http://127.0.0.1:38088/video=grabimage', true);
// xhr.setRequestHeader('Content-Type', 'application/json');
xhr.onload = function() {
if (xhr.status >= 200 && xhr.status < 300) {
const response = JSON.parse(xhr.responseText);
console.log(response, 'response');
console.log(response, '图片地址');
// : res.photoBase64 'data:image/jpeg;base64,' base64
if (response.code !== '0') {
return ElMessage.error('拍摄失败请重新尝试');
}
ElMessage({ message: '拍摄成功', type: 'success' });
IMG_add(response.photoBase64); //
} else {
console.error('Error:', xhr.statusText);
}
};
xhr.onerror = function() {
console.error('Error:', xhr.statusText);
};
xhr.send(JSON.stringify(data));
return
Axios_IMG.post(
`${
IMG_API_SERVER ? 'http://127.0.0.1:38088/video=grabimage' : '/imgapi/video=grabimage'
}`,
data
)
.then(res => {
console.log(res, '图片地址');
// : res.data.photoBase64 'data:image/jpeg;base64,' base64
if (res.data.code !== '0') {

3
src/utils/webCamera/eloamWebCamera.js

@ -17,7 +17,7 @@ var __ELOAM_OBJ = {
autoTakePhotosStatus: false
}
var WebCamera = function (_$, data, suc, fail) {
var WebCamera = function (_$, data, suc, fail) {
// 初始化数额及
if (!_$) {
fail("jquery 不能为空")
@ -857,4 +857,5 @@ var WebCamera = function (_$, data, suc, fail) {
}
// 使用vue 项目需要打开这个注释
export default WebCamera
Loading…
Cancel
Save