洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
491 B

8 months ago
8 months ago
8 months ago
  1. <template>
  2. <view class="topNavbar">
  3. <u-navbar
  4. :title="title"
  5. :autoBack="true"
  6. :bgColor="bgColor"
  7. :leftIconColor="leftIconColor"
  8. :fixed="false"
  9. :safeAreaInsetTop="true"
  10. :titleStyle ="{color:'#fff'}"
  11. >
  12. </u-navbar>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. props: ['title'],
  18. data() {
  19. return {
  20. bgColor: 'transparent',
  21. leftIconColor: '#fff'
  22. }
  23. }
  24. }
  25. </script>
  26. <style lang="scss" scoped>
  27. .topNavbar {
  28. padding-bottom: 10rpx;
  29. }
  30. </style>