1234567891011121314151617181920212223242526272829 |
- <template>
- <view class="goods-action">
- <slot></slot>
- </view>
- </template>
- <script>
- export default {
- }
- </script>
- <style lang="scss" scoped>
- .goods-action{
- position: fixed;
- right: 0;
- bottom: 0;
- left: 0;
- display: flex;
- align-items: center;
- box-sizing: content-box;
- height: 100rpx;
- border-top: 2rpx solid #d9d9d9;
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- background-color: #fff;
- z-index: 100000;
- overflow: hidden;
- }
- </style>
|