index.vue 687 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view class="navbar-box">
  3. <image src="https://minio.citupro.com/dev/menduner/poster.png" class="navbar-box-logo"></image>
  4. <view class="navbar-box-title">{{ title }}</view>
  5. </view>
  6. </template>
  7. <script setup>
  8. defineProps({
  9. title: {
  10. type: String,
  11. default: '门墩儿'
  12. }
  13. })
  14. </script>
  15. <style scoped lang="scss">
  16. .navbar-box {
  17. height: 64px;
  18. width: 100%;
  19. position: relative;
  20. background: linear-gradient(90deg, #66BB6A 0, #64FFDA 100%);
  21. &-logo {
  22. width: 100px;
  23. height: 42px;
  24. margin: 10px 0 0 10px;
  25. }
  26. &-title {
  27. position: absolute;
  28. top: 50%;
  29. left: 50%;
  30. transform: translate(-50%, -50%);
  31. color: #fff;
  32. }
  33. }
  34. </style>