53 lines
1010 B
Vue
53 lines
1010 B
Vue
<template>
|
|
<!-- 测试页 -->
|
|
<view class="toolbar" :style="{ paddingBottom: safeAreaInsets?.bottom + 'px' }">
|
|
<view class="total-pay symbol">
|
|
<text class="number">¥99.00</text>
|
|
</view>
|
|
<view class="button" :class="{ disabled: true }"> 去下单 </view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
.toolbar {
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: calc(var(--window-bottom));
|
|
z-index: 1;
|
|
background-image: linear-gradient(to right, #525252 70%, #4095e5 70%);
|
|
width: 90%;
|
|
height: 100rpx;
|
|
padding: 0 20rpx;
|
|
border-top: 1rpx solid #eaeaea;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
box-sizing: content-box;
|
|
margin: 0 auto;
|
|
border-radius: 50rpx;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.total-pay {
|
|
font-size: 40rpx;
|
|
color: #fff;
|
|
}
|
|
|
|
.decimal {
|
|
font-size: 75%;
|
|
}
|
|
|
|
.button {
|
|
width: 200rpx;
|
|
text-align: center;
|
|
line-height: 100rpx;
|
|
font-size: 30rpx;
|
|
color: #fff;
|
|
}
|
|
|
|
</style> |