提交 e60e1bfa authored 作者: 钟是志's avatar 钟是志

32462 阿坝请假管理,请假时签名保存成功实际没有显示202101011124密ABzy@123456

上级 bf89e6cb
......@@ -19,6 +19,7 @@ export default class Signature extends Component {
constructor(props) {
super(props);
const value = props.value;
this.timeOut = null;
this.state = {
url: value || getUserInfo().userSign,
showModal: false,
......@@ -98,9 +99,11 @@ export default class Signature extends Component {
};
componentDidMount() {
if (!this.props.value && this.state.url) {
setTimeout(() => {
if (!this.props.value && this.state.url && !this.timeOut) {
this.timeOut = setTimeout(() => {
console.log('签名组件componentDidMount setValue', this.state.url);
this.triggerChange(this.state.url);
clearTimeout(this.timeOut);
}, 2000);
}
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论