import * as React from 'react' class GoodsLinkWrapper extends React.Component { constructor(props) { super(props); } componentDidMount(): void { } goDetail(href) { if (this.props.env == 'isMp') { this.props.goMpPath(href); } else { // window.open(href); window.location.href = href } } render() { return (
{this.props.children}
); } } export default GoodsLinkWrapper;