import * as React from "react"; import ShopListItem from '../commen/proItem'; import ProWrapper from '../commen/wrapper' import MUtil from "../../../util/utils"; import DistriTimer from "../commen/timer"; const timerType = MUtil.timerType(); const date = new Date().getTime(); class SlideItem extends React.Component { state: any; constructor(props) { super(props); this.state = { style: { key: 'shop-product-wrapper' + new Date().getTime(), } } } componentDidMount(): void { } goBuy(data) { this.props.goBuy ? this.props.goBuy(data) : '' } render() { let source = this.props; let content = this.props.content; return (
{ content && content.length > 0 ? content.map((data, index) => ( )) : '' }
); } } export default SlideItem;