import React, { Component } from 'react'; import Img from '../../ImgLoad/index'; import { Sym } from '../../Icon/index'; import './style.styl'; class GoodsInfo extends Component { constructor(props: any) { super(props); } render() { const { goods } = this.props; return (
{goods.productName}
                            {goods.productDesc}
                        
{goods.salePrice} {/* .00 */}
{goods.price != goods.salePrice ? (
¥{goods.price}
) : null}
{goods.applyZone ? (
适用地区
{goods.applyZone}
) : null}
); } } export default GoodsInfo;