Header.vue 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <script setup>
  2. import { ref } from 'vue';
  3. import { Search, Promotion, Avatar } from '@element-plus/icons-vue'
  4. import { useUser } from '~/store/user.js'
  5. import SvgIcon from '~/components/SvgIcon/index.vue'
  6. const user = useUser()
  7. const keyword = ref('')
  8. </script>
  9. <template>
  10. <div class="header-container flex-row flex-aic flex-jc-sb">
  11. <svg aria-hidden="true">
  12. <use href="../../assets/icons/people.svg" fill="#000000" />
  13. </svg>
  14. <div class="logo">ny-logo</div>
  15. <div class="header__content flex-row flex-aic flex-jc-sb">
  16. <el-input v-model="keyword" class="searchbox" placeholder="VR拍摄" :suffix-icon="Search" />
  17. <el-button-group>
  18. <el-button>关注</el-button>
  19. <el-button type="primary">最新</el-button>
  20. </el-button-group>
  21. <div class="header__content__right">
  22. <el-button class="vip-btn">
  23. <SvgIcon name="crown" :size="19" :rgap="3" color="#523618" />
  24. 忆象会员
  25. </el-button>
  26. <!-- NOTE: 邀请好友&发布 用户登录才有 -->
  27. <template v-if="user.name">
  28. <el-button type="primary">
  29. <SvgIcon name="people" :size="19" color="#ffffff" />
  30. 邀请好友
  31. </el-button>
  32. <el-button type="primary" :icon="Promotion">发布</el-button>
  33. </template>
  34. <el-button type="primary">登录/注册</el-button>
  35. </div>
  36. </div>
  37. </div>
  38. </template>
  39. <style lang="scss" scoped>
  40. .header {
  41. &-container {
  42. height: 66px;
  43. background: #FFFFFF;
  44. box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.06);
  45. }
  46. &__content {
  47. width: 0;
  48. flex: 1;
  49. &__right {
  50. .vip-btn {
  51. background-color: rgba(255, 234, 203, 1);
  52. color: #523618;
  53. }
  54. }
  55. }
  56. .logo {
  57. width: 210px;
  58. height: 66px;
  59. // box-shadow: 1px 0px 0px 0px rgba(0, 0, 0, 0.06);
  60. }
  61. .searchbox {
  62. width: 346px;
  63. height: 36px;
  64. border-radius: 4px;
  65. :deep(.el-input__wrapper) {
  66. background-color: #F4F4F4;
  67. }
  68. }
  69. }
  70. </style>