Files
xk-doctor-wx/subPackages/sub_clinic_admin/components/PageStickyHeader.vue
李琦 27202c0740 1. 优化了一些交互,中药药品编辑交互
2. dev和生产环境统一鉴别
2026-05-30 13:53:14 +08:00

22 lines
296 B
Vue

<template>
<view class="page-sticky-header">
<slot />
</view>
</template>
<script>
export default {
name: 'PageStickyHeader',
}
</script>
<style lang="scss" scoped>
.page-sticky-header {
position: sticky;
top: 0;
z-index: 100;
background: #f9fafb;
padding-bottom: 8rpx;
}
</style>