deming/pageC/cart/ConfirmOrder.vue
2020-06-09 17:33:12 +08:00

106 lines
2.5 KiB
Vue

<template>
<view class="order">
<view class="info-address">
<image src="../static/image/2.png" class="address-icon"></image>
<view class="address">
<view class="user-info">
<view>胖胖</view>
<view>18220171014</view>
</view>
<view class="address-text u-line-2">山东省泰安市泰山区东岳大街与克山路交汇口银山店四楼橙天影视南邻山东省泰安市泰山区东岳大街与克山路交汇口银山店四楼橙天影视南邻</view>
</view>
<image src="../static/image/1.png" class="right"></image>
</view>
<view class="main">
<view class="goods-info">
<view class="store">
<image></image>
<view>胖胖的店</view>
</view>
<view class="goods">
<view v-for="(goods, g_index) in 1" :key="g_index" class="goods-item">
<image></image>
<view class="info">
<view class="name u-line-2">木糖少女小紫薯西装领连衣裙夏季新款女装夏收腰格子格纹裙子</view>
<view class="cart-info">
<view class="price">99</view>
<view class="num">
<view class="reduce">-</view>
<view class="value">2</view>
<view class="increase">+</view>
</view>
</view>
</view>
</view>
</view>
</view>
<view class="order-info">
<view>
<view>优惠券折扣</view>
<view>
<view>-10.00</view>
<image src="../static/image/1.png"></image>
</view>
</view>
<view>
<view>配送方式</view>
<view>
<view>快递</view>
<image src="../static/image/1.png"></image>
</view>
</view>
<view>
<view>支付方式</view>
<view>
<view>微信</view>
<image src="../static/image/1.png"></image>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {}
}
};
</script>
<style lang="scss" scoped>
.order {
.info-address {
padding: 30rpx;
display: flex;
align-items: center;
margin-bottom: 10rpx;
background:rgba(255,255,255,1);
.address-icon {
width: 28rpx;
height: 34rpx;
margin-right: 31rpx;
flex-shrink: 0;
}
.address-right {
.user-info {
display: flex;
align-items: center;
font-size: 28rpx;
color: rgba(51,51,51,1);
margin-bottom: 20rpx;
margin-right: 13rpx;
}
.address-text {
font-size: 24rpx;
color: rgba(102,102,102,1);
line-height: 42rpx;
}
}
.right {
margin-left: auto;
width: 12rpx;
height: 22rpx;
}
}
}
</style>