待付款完成

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,3 @@
{
"component": true
}

View File

@@ -0,0 +1,29 @@
.payment {
width: 750rpx;
height: 98rpx;
position: fixed;
bottom: 0;
display: flex;
justify-content: space-between;
background-color: #fff;
align-items: center;
.price {
font-size: 34rpx;
margin-left: 74rpx;
.title {
color: #333;
}
.counts{
color: #ff3838;
}
}
.submit {
width: 250rpx;
height: 98rpx;
background-color: #47c877;
font-size: 30rpx;
color: #fff;
line-height: 98rpx;
text-align: center;
}
}

View File

@@ -0,0 +1,7 @@
<view class="payment">
<view class="price">
<text class="title">总付款:</text>
<text class="counts">¥29</text>
</view>
<view class="submit">立即支付</view>
</view>

View File

@@ -0,0 +1 @@
.payment{width:750rpx;height:98rpx;position:fixed;bottom:0;display:flex;justify-content:space-between;background-color:#fff;align-items:center}.payment .price{font-size:34rpx;margin-left:74rpx}.payment .price .title{color:#333}.payment .price .counts{color:#ff3838}.payment .submit{width:250rpx;height:98rpx;background-color:#47c877;font-size:30rpx;color:#fff;line-height:98rpx;text-align:center}