待付款完成

This commit is contained in:
2019-12-14 15:07:50 +08:00
parent fdfdfbb950
commit a3537ff5e6
22 changed files with 274 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
Component({
properties: {
},
data: {
},
methods: {
}
})

View File

@@ -0,0 +1,6 @@
{
"component": true,
"usingComponents": {
"message":"../../order/message/index"
}
}

View File

@@ -0,0 +1,38 @@
.content {
background-color: #fff;
width: 750rpx;
// height: ;
padding-bottom: 33rpx;
.aggregate {
display: flex;
box-sizing: border-box;
padding: 30rpx;
justify-content: flex-end;
font-size: 22rpx;
color: #999;
height: 78rpx;
border-bottom: 1rpx solid #f2f2f2;
> text {
color: #333;
margin: 0 5rpx;
}
}
.message {
display: flex;
padding: 0 30rpx;
justify-content: space-between;
font-size: 26rpx;
color: #333;
align-items: center;
height: 77rpx;
border-bottom: 1rpx solid #f2f2f2;
}
.leave {
display: flex;
height: 77rpx;
padding: 0 30rpx;
align-items: center;
}
}

View File

@@ -0,0 +1,24 @@
<view class="content">
<message></message>
<view class="aggregate">
共计1件商品 合计:
<text>¥29.80</text>
(含运费¥0.00)
</view>
<view class="message">
<text>订单编号</text>
<text>123456789123456789</text>
</view>
<view class="message">
<text>下单时间</text>
<text>2018-10-01 18:00:06</text>
</view>
<view class="message">
<text>配送方式</text>
<text>快递 免邮</text>
</view>
<view class="leave">
<text>备注:</text>
<input type="text" placeholder="填写你需要对我们说的" />
</view>
</view>

View File

@@ -0,0 +1 @@
.content{background-color:#fff;width:750rpx;padding-bottom:33rpx}.content .aggregate{display:flex;box-sizing:border-box;padding:30rpx;justify-content:flex-end;font-size:22rpx;color:#999;height:78rpx;border-bottom:1rpx solid #f2f2f2}.content .aggregate>text{color:#333;margin:0 5rpx}.content .message{display:flex;padding:0 30rpx;justify-content:space-between;font-size:26rpx;color:#333;align-items:center;height:77rpx;border-bottom:1rpx solid #f2f2f2}.content .leave{display:flex;height:77rpx;padding:0 30rpx;align-items:center}