Files
fe_service_ebtp_frontend/src/pages/userformal/faceLogin/FrameFaceLogin.tsx
2022-10-28 17:23:46 +08:00

43 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from "react";
import FrameLoader from "./FrameLoader";
export default class FrameFaceLogin extends React.Component {
constructor(props:any) {
super(props);
this.state = {
transferData: {
image: ''
},
};
}
componentDidMount() {
// 接收Iframe传递的数据
window.addEventListener("message", (e) => {
const{image,detectResult,actionAndTimer} = e.data|| {};
if(image){
this.props.faceCompareEvent2(image);
}
else if(detectResult){
this.props.faceCompareEvent(detectResult);
}else if(actionAndTimer){
this.props.faceDetectStatusEvent(actionAndTimer.arg1, actionAndTimer.arg2);
}
});
}
render() {
const { transferData } = this.state || {};
console.log(transferData, "数据");
return (
<div style={{ height: "100%" }}>
{/* 设置Iframe 盒子的宽度 */}
<div style={{ minHeight: "200px", position: "relative" }}>
{/* 这个是打包后的Iframe 地址要到webpack中配置打包地址 */}
<FrameLoader url="/faceLoginIE/index.html" />
</div>
</div>
);
}
}