12345678910111213141516171819202122 |
- <template>
- <view class="commonButton position-fixed bg-white left-0">
- <slot></slot>
- </view>
- </template>
- <script>
- </script>
- <style lang="scss" scoped>
- .commonButton {
- width: 100vw;
- height: 156rpx;
- /*兼容 IOS<11.2*/
- padding-bottom: constant(safe-area-inset-bottom);
- /*兼容 IOS>11.2*/
- padding-bottom: env(safe-area-inset-bottom);
- z-index: 100;
- bottom: var(--window-bottom);
- box-sizing: border-box;
- }
- </style>
|