You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
467 B
Vue
24 lines
467 B
Vue
|
6 months ago
|
<template>
|
||
|
|
<view class="g-components-panel-fixed">
|
||
|
|
<slot></slot>
|
||
|
|
</view>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
.g-components-panel-fixed{
|
||
|
|
position: fixed;
|
||
|
|
width: 100%;
|
||
|
|
bottom: 0;
|
||
|
|
left: 0;
|
||
|
|
background-color: #fff;
|
||
|
|
padding-top: 12px;
|
||
|
|
padding-bottom: constant(safe-area-inset-bottom); /*兼容 IOS<11.2*/
|
||
|
|
padding-bottom: env(safe-area-inset-bottom); /*兼容 IOS>11.2*/
|
||
|
|
min-height:72px;
|
||
|
|
border-top: 1rpx solid #eee;
|
||
|
|
z-index: 999;
|
||
|
|
}
|
||
|
|
</style>
|