import React, { Component } from 'react'; import { Modal } from 'antd'; export function SetAppModel(options={}) { return function wrap(WrappedComponent) { return class Wrapper extends Component { constructor(props) { super(props); this.state = { } } modalCancel=()=>{ window.location.href = "/"; } setDownload=()=>{ window.location.href ='/account/profile'; } componentDidMount(){ console.log(this.props) } render() { const { titlemessage, Modallisttype, Modallist, singleButton } = this.state; return (

您尚未完善个人资料

请在完成资料后,提交试用申请

this.modalCancel()}>取消 this.setDownload()}>立即完善资料
) } } } }