|
@@ -1,12 +1,20 @@
|
|
|
<script setup>
|
|
|
import { ref } from 'vue';
|
|
|
-import { Search } from '@element-plus/icons-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" />
|
|
@@ -15,7 +23,19 @@ const keyword = ref('')
|
|
|
<el-button type="primary">最新</el-button>
|
|
|
</el-button-group>
|
|
|
<div class="header__content__right">
|
|
|
- <el-button type="primary">icon-yx会员</el-button>
|
|
|
+ <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>
|
|
@@ -33,6 +53,13 @@ const keyword = ref('')
|
|
|
&__content {
|
|
|
width: 0;
|
|
|
flex: 1;
|
|
|
+
|
|
|
+ &__right {
|
|
|
+ .vip-btn {
|
|
|
+ background-color: rgba(255, 234, 203, 1);
|
|
|
+ color: #523618;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.logo {
|
|
@@ -50,5 +77,6 @@ const keyword = ref('')
|
|
|
background-color: #F4F4F4;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
</style>
|