import * as React from "react"; import ShopListItem from '../commen/proItem'; import ProWrapper from '../commen/wrapper' import MUtil from "../../../util/utils"; const date = new Date().getTime(); class TwoItems 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) =>{ if(index%2==0){ return ( ) } }) : '' } { content && content.length > 0 ? content.map((data, index) =>{ if(index%2!==0){ return ( ) } }) : '' }
) } } export default TwoItems;