orderList.vue 481 B

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