|
@@ -31,7 +31,10 @@
|
|
|
<view>
|
|
|
<view class="ellipsis-two">{{item.goodsName}}</view>
|
|
|
<view class="bundle-num">
|
|
|
- <view><text class="price-num">{{item.payGold}}</text> <text class="price-text">乐豆</text></view>
|
|
|
+ <view class="num-cont">
|
|
|
+ <text class="price-num">{{item.payGold}}</text>
|
|
|
+ <u-image mode="scaleToFill" width="40rpx" height="40rpx" src="/static/ledou.png"></u-image>
|
|
|
+ </view>
|
|
|
<view>X {{item.buyQty}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -39,25 +42,31 @@
|
|
|
<u-gap height="10" bg-color="#f8f8f8"></u-gap>
|
|
|
<!-- 订单信息 -->
|
|
|
<u-cell-group>
|
|
|
- <u-cell-item title="订单编号" :value-style="{color: '#000',fontSize: '28upx'}" :arrow="false">
|
|
|
+ <u-cell-item title="订单编号" :value-style="{color: '#000'}" :arrow="false">
|
|
|
{{orderInfo.orderSn}}
|
|
|
</u-cell-item>
|
|
|
- <u-cell-item title="下单时间" :value-style="{color: '#000',fontSize: '28upx'}" :arrow="false">
|
|
|
+ <u-cell-item title="下单时间" :value-style="{color: '#000'}" :arrow="false">
|
|
|
{{orderInfo.orderTime}}
|
|
|
</u-cell-item>
|
|
|
- <u-cell-item v-if="orderInfo.payTime" title="支付时间" :value-style="{color: '#000',fontSize: '28upx'}" :arrow="false">
|
|
|
+ <u-cell-item v-if="orderInfo.payTime" title="支付时间" :value-style="{color: '#000'}" :arrow="false">
|
|
|
{{orderInfo.payTime}}
|
|
|
</u-cell-item>
|
|
|
<u-gap height="10" bg-color="#f8f8f8"></u-gap>
|
|
|
- <u-cell-item title="商品合计" :value-style="{color: '#000',fontSize: '28upx'}" :arrow="false">
|
|
|
- <text class="price-num">{{orderInfo.originalGold}}</text> <text class="price-text">乐豆</text>
|
|
|
+ <u-cell-item title="商品合计" :value-style="{color: '#000'}" :arrow="false">
|
|
|
+ <view class="num-cont">
|
|
|
+ <text class="price-num">{{orderInfo.originalGold}}</text>
|
|
|
+ <u-image mode="scaleToFill" width="40rpx" height="40rpx" src="/static/ledou.png"></u-image>
|
|
|
+ </view>
|
|
|
</u-cell-item>
|
|
|
- <u-cell-item title="运费" :value-style="{color: '#000',fontSize: '28upx'}" :arrow="false">
|
|
|
+ <u-cell-item title="运费" :value-style="{color: '#000'}" :arrow="false">
|
|
|
免运费
|
|
|
</u-cell-item>
|
|
|
- <u-cell-item :title="(orderInfo.orderState=='WAIT_PAY'||orderInfo.orderState=='CANCEL') ? '待支付':'实际支付'" :value-style="{color: '#000',fontSize: '28upx'}"
|
|
|
+ <u-cell-item :title="(orderInfo.orderState=='WAIT_PAY'||orderInfo.orderState=='CANCEL') ? '待支付':'实际支付'" :value-style="{color: '#000'}"
|
|
|
:arrow="false">
|
|
|
- <text class="price-num">{{orderInfo.originalGold}}</text> <text class="price-text">乐豆</text>
|
|
|
+ <view class="num-cont">
|
|
|
+ <text class="price-num">{{orderInfo.originalGold}}</text>
|
|
|
+ <u-image mode="scaleToFill" width="40rpx" height="40rpx" src="/static/ledou.png"></u-image>
|
|
|
+ </view>
|
|
|
</u-cell-item>
|
|
|
</u-cell-group>
|
|
|
</view>
|
|
@@ -349,13 +358,19 @@
|
|
|
.price-num {
|
|
|
font-size: 32upx;
|
|
|
color: red;
|
|
|
+ font-weight: 600;
|
|
|
}
|
|
|
|
|
|
.u-cell {
|
|
|
padding: 10rpx 32rpx;
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+ // 乐豆数量
|
|
|
+ .num-cont{
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ float: right;
|
|
|
+ }
|
|
|
.footer {
|
|
|
padding: 20rpx;
|
|
|
}
|