Authored by huangyCode

修改文案

... ... @@ -14,6 +14,10 @@ Component({
damagesDesc: {
type: String,
value:''
},
isStore:{
type:Boolean,
value:false
}
},
data: {//组件内部数据
... ...
... ... @@ -3,7 +3,7 @@
<text class="priceLeft">{{item.promotion}}:</text>
<text class="{{item.promotion=='实付金额' ? 'priceRightTwo': 'priceRight'}}">{{item.promotionAmount}}</text>
</view>
<view>
<text class="priceInfo">{{damagesDesc}}</text>
<view class="priceInfo {{!isStore || 'des-store'}}">
{{damagesDesc}}
</view>
</view>
... ...
... ... @@ -42,6 +42,8 @@
font-family: PingFang-SC-Regular;
font-size: 24rpx;
color: #999999;
letter-spacing: 0;
}
.des-store{
background: #F0F0F0;
padding:20rpx;
}
... ...
... ... @@ -8,7 +8,7 @@
wx:else></storeAddress>
<productCell productInfo="{{good}}" isStore="{{isStore === 1}}"></productCell>
<priceCell promotionFormulaList="{{promotionFormulaList}}" damagesDesc="{{damagesDesc}}"></priceCell>
<priceCell promotionFormulaList="{{promotionFormulaList}}" damagesDesc="{{damagesDesc}}" isStore="{{isStore === 1}}"></priceCell>
<payDeliveryCell paymentWay="{{paymentWay}}" deliveryWay="{{deliveryWay}}"></payDeliveryCell>
</scroll-view>
<!-- </view> -->
... ...