|
@@ -2,28 +2,19 @@
|
|
|
<view>
|
|
|
<view>
|
|
|
<view style="padding: 30rpx;">
|
|
|
- <view class="box1">
|
|
|
- <view class="box1_t1">
|
|
|
- <u-icon name="checkmark-circle" color="#34C759" size="32"></u-icon><text style="margin-left: 8rpx;">订单提交成功,请您尽快付款!</text></view>
|
|
|
- <view class="box1_t2">请在24小时内付款,否则订单将自动取消</view>
|
|
|
- </view>
|
|
|
<view class="box2">
|
|
|
<view class="title2">支付信息</view>
|
|
|
<u-line color="#D6D6DB" />
|
|
|
- <view style="padding:10rpx 30rpx;">
|
|
|
+ <view style="padding:10rpx 30rpx;" v-for="(item,index) in shoppingCartList">
|
|
|
<view class="list_item">
|
|
|
<view class="txt_left">商品名称</view>
|
|
|
- <view class="txt_right">2020年二建建筑工程管理与实务(实务专题班)</view>
|
|
|
+ <view class="txt_right">{{item.goodsName}}</view>
|
|
|
</view>
|
|
|
<view class="list_item">
|
|
|
<view class="txt_left">应付金额</view>
|
|
|
- <view class="txt_right_price">¥ 999.00</view>
|
|
|
- </view>
|
|
|
- <view class="list_item">
|
|
|
- <view class="txt_left">订单编号</view>
|
|
|
- <view class="txt_right_sn">20211013105634GZ</view>
|
|
|
+ <view class="txt_right_price">¥ {{item.standPrice}}</view>
|
|
|
</view>
|
|
|
- <view class="tip">*您可在“我的>我的订单”中查询</view>
|
|
|
+ <u-line color="#D6D6DB"/>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="box3">
|
|
@@ -100,7 +91,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
onReachBottom() {},
|
|
|
- computed: { ...mapGetters(['userInfo']) }
|
|
|
+ computed: { ...mapGetters(['userInfo','shoppingCartList']) }
|
|
|
};
|
|
|
</script>
|
|
|
<style >
|