index.vue 436 B

12345678910111213141516171819202122
  1. <template>
  2. <view class="commonButton position-fixed bg-white left-0">
  3. <slot></slot>
  4. </view>
  5. </template>
  6. <script>
  7. </script>
  8. <style lang="scss" scoped>
  9. .commonButton {
  10. width: 100vw;
  11. height: 156rpx;
  12. /*兼容 IOS<11.2*/
  13. padding-bottom: constant(safe-area-inset-bottom);
  14. /*兼容 IOS>11.2*/
  15. padding-bottom: env(safe-area-inset-bottom);
  16. z-index: 100;
  17. bottom: var(--window-bottom);
  18. box-sizing: border-box;
  19. }
  20. </style>