goods-action.vue 549 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view class="goods-action">
  3. <slot></slot>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. }
  9. </script>
  10. <style lang="scss" scoped>
  11. .goods-action{
  12. position: fixed;
  13. right: 0;
  14. bottom: 0;
  15. left: 0;
  16. display: flex;
  17. align-items: center;
  18. box-sizing: content-box;
  19. height: 100rpx;
  20. border-top: 2rpx solid #d9d9d9;
  21. padding-bottom: constant(safe-area-inset-bottom);
  22. padding-bottom: env(safe-area-inset-bottom);
  23. background-color: #fff;
  24. z-index: 100000;
  25. overflow: hidden;
  26. }
  27. </style>