12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <script setup>
- import { ref } from 'vue';
- import { Search, Promotion, Avatar } from '@element-plus/icons-vue'
- import { useUser } from '~/store/user.js'
- import SvgIcon from '~/components/SvgIcon/index.vue'
- const user = useUser()
- const keyword = ref('')
- </script>
- <template>
- <div class="header-container flex-row flex-aic flex-jc-sb">
- <svg aria-hidden="true">
- <use href="../../assets/icons/people.svg" fill="#000000" />
- </svg>
- <div class="logo">ny-logo</div>
- <div class="header__content flex-row flex-aic flex-jc-sb">
- <el-input v-model="keyword" class="searchbox" placeholder="VR拍摄" :suffix-icon="Search" />
- <el-button-group>
- <el-button>关注</el-button>
- <el-button type="primary">最新</el-button>
- </el-button-group>
- <div class="header__content__right">
- <el-button class="vip-btn">
- <SvgIcon name="crown" :size="19" :rgap="3" color="#523618" />
- 忆象会员
- </el-button>
- <!-- NOTE: 邀请好友&发布 用户登录才有 -->
- <template v-if="user.name">
- <el-button type="primary">
- <SvgIcon name="people" :size="19" color="#ffffff" />
- 邀请好友
- </el-button>
- <el-button type="primary" :icon="Promotion">发布</el-button>
- </template>
- <el-button type="primary">登录/注册</el-button>
- </div>
- </div>
- </div>
- </template>
- <style lang="scss" scoped>
- .header {
- &-container {
- height: 66px;
- background: #FFFFFF;
- box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.06);
- }
- &__content {
- width: 0;
- flex: 1;
- &__right {
- .vip-btn {
- background-color: rgba(255, 234, 203, 1);
- color: #523618;
- }
- }
- }
- .logo {
- width: 210px;
- height: 66px;
- // box-shadow: 1px 0px 0px 0px rgba(0, 0, 0, 0.06);
- }
- .searchbox {
- width: 346px;
- height: 36px;
- border-radius: 4px;
- :deep(.el-input__wrapper) {
- background-color: #F4F4F4;
- }
- }
- }
- </style>
|