...
|
...
|
@@ -232,7 +232,9 @@ export default class ProductDetail extends Component { |
|
|
|
|
|
<View className="product-buy">
|
|
|
{/* <View className="sell-btn">出售</View> */}
|
|
|
<View className="buy-btn" onClick={this.onClickBuy}>购买<Text className="price">¥{productInfo.least_price}</Text></View>
|
|
|
<View className="buy-btn" onClick={this.onClickBuy}>购买
|
|
|
{ productInfo.least_price && <Text className="price">¥{productInfo.least_price}</Text>}
|
|
|
</View>
|
|
|
</View>
|
|
|
|
|
|
{
|
...
|
...
|
|