You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
946 B
57 lines
946 B
<template>
|
|
<view>
|
|
<view class="width90 height90 backcorfff">
|
|
|
|
</view>
|
|
<!-- 底部按钮 -->
|
|
<view class="footer">
|
|
<view class="width50 flleft fcoreb5 padleft15 font15">
|
|
合计: ¥<text class="font24">0.00</text>
|
|
</view>
|
|
<button class="reBtn flright">去支付</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less">
|
|
page {
|
|
background-color: #f8f8f8;
|
|
}
|
|
.footer {
|
|
position: fixed;
|
|
bottom: 0upx;
|
|
width: 100%;
|
|
height: 99upx;
|
|
color: #FFFFFF;
|
|
border-top: solid 1upx #eee;
|
|
background-color: #FFFFFF;
|
|
z-index: 2;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
.reBtn{
|
|
width: 100px;
|
|
background-color: #089bf5;
|
|
color: #FFFFFF;
|
|
text-align: center;
|
|
padding: 0;
|
|
font-size: 16px;
|
|
border-radius: 22px;
|
|
height: 40px;
|
|
line-height: 40px;
|
|
}
|
|
}
|
|
</style>
|
|
|