| 12345678910111213141516 |
- <script setup lang="ts">
- const { statusBarHeight, MenuButtonHeight } = storeToRefs(useSysStore())
- </script>
- <template>
- <view class="video-rights-order-page">
- <wd-navbar
- title="订单列表" custom-style="background-color:#FFF" :bordered="false" :z-index="99"
- safe-area-inset-top fixed
- />
- <view :style="{ paddingTop: `${(Number(statusBarHeight) || 44) + MenuButtonHeight + 12}px` }" />
- 订单
- </view>
- </template>
- <style lang="scss" scoped></style>
|