Header.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. <template>
  2. <div class="header">
  3. <div class="header-icon" @click="$router.push('/index')">GYXQCDZ</div>
  4. <div class="header-search">
  5. <input
  6. class="search"
  7. type="text"
  8. v-model="searchState.value"
  9. @keydown.enter="handleSearch"
  10. />
  11. <div class="hot">
  12. <img src="@/assets/icon/resoubang.png" />
  13. <span>热搜榜</span>
  14. </div>
  15. <div class="btn" @click="handleSearch">
  16. <i class="el-icon-search"></i>
  17. 搜索
  18. </div>
  19. </div>
  20. <div class="header-user">
  21. <div class="user-login" v-if="!!userInfo">
  22. <el-button
  23. size="small"
  24. type="primary"
  25. icon="el-icon-s-promotion"
  26. style="background-color: #0054f7; width: 80px; height: 35px"
  27. v-if="handleFilter()"
  28. @click="handleContribute"
  29. >
  30. 发布
  31. </el-button>
  32. <div class="user-login-avatar-box">
  33. <img
  34. class="user-login-avatar"
  35. :class="{ can: !!personalPath }"
  36. :src="
  37. userInfo.headimg ? userInfo.headimg : '@/assets/icon/avatar.png'
  38. "
  39. @click="
  40. vipPath.includes(routePath)
  41. ? $router.push('/vip')
  42. : handlePersonal()
  43. "
  44. />
  45. <div class="mark" v-if="centerMarkNum">{{ centerMarkNum }}</div>
  46. </div>
  47. </div>
  48. <div class="user-login-none" v-else>
  49. <el-button
  50. type="primary"
  51. style="background-color: #0054f7"
  52. @click="handleLogin"
  53. >登录/注册</el-button
  54. >
  55. </div>
  56. </div>
  57. </div>
  58. </template>
  59. <script>
  60. import { mapState } from "vuex";
  61. export default {
  62. name: "Header",
  63. data() {
  64. return {
  65. path: ["video", "image-text", "information"],
  66. vipPath: ["/index", "/search"],
  67. };
  68. },
  69. computed: {
  70. ...mapState(["userInfo", "routePath", "searchState", "mark_num"]),
  71. contributePath() {
  72. return `/${this.handleFilter()}-contribute`;
  73. },
  74. personalPath() {
  75. return `/${this.handleFilter()}/comment-on-my`;
  76. },
  77. centerMarkNum() {
  78. let markNumState =
  79. this.mark_num[
  80. `${this.handleFilter().replace(/-([a-z])/g, function (g) {
  81. return g[1].toUpperCase();
  82. })}MarkNum`
  83. ],
  84. num = 0,
  85. computedArr = ["comment_num", "reply_num", "follow_num", "praise_num"];
  86. for (let key in markNumState) {
  87. if (computedArr.includes(key)) num += markNumState[key];
  88. }
  89. return num;
  90. },
  91. },
  92. mounted() {},
  93. methods: {
  94. // 跳转登录
  95. handleLogin() {
  96. this.$router.push({ name: "login" });
  97. },
  98. // 跳转发布
  99. handleContribute() {
  100. if (this.routePath == this.contributePath) return;
  101. this.$router.push(this.contributePath);
  102. },
  103. // 跳转个人中心
  104. handlePersonal() {
  105. if (!this.handleFilter()) return;
  106. if (this.routePath == this.personalPath) return;
  107. // this.$router.open(this.personalPath);
  108. this.$router.push(this.personalPath);
  109. },
  110. // 取值
  111. handleFilter() {
  112. let path = "";
  113. this.path.forEach((item) => {
  114. if (
  115. !this.routePath.includes("contribute") &&
  116. this.routePath.includes(item)
  117. ) {
  118. path = item;
  119. }
  120. });
  121. return path;
  122. },
  123. // 搜索
  124. handleSearch() {
  125. this.$store.commit("setSearchState", {
  126. type: this.handleFilter(),
  127. });
  128. if (this.routePath == "/search") return;
  129. this.$router.push(`/search`);
  130. },
  131. },
  132. };
  133. </script>
  134. <style lang="scss" scoped>
  135. .header {
  136. height: $headerHeight;
  137. width: 100%;
  138. // min-width: 1200px;
  139. padding: 0 50px;
  140. display: flex;
  141. justify-content: space-between;
  142. align-items: center;
  143. box-sizing: border-box;
  144. background-color: white;
  145. .header-icon {
  146. width: 160px;
  147. font-size: 28px;
  148. font-weight: 400;
  149. color: #2a63f3;
  150. line-height: 38px;
  151. user-select: none;
  152. cursor: pointer;
  153. }
  154. .header-search {
  155. width: 40%;
  156. min-width: 500px;
  157. max-width: 800px;
  158. height: 50px;
  159. border-radius: 25px;
  160. display: flex;
  161. justify-content: flex-end;
  162. align-items: center;
  163. position: relative;
  164. .search {
  165. width: calc(100% - 100px);
  166. height: 50px;
  167. outline: none;
  168. padding: 0 20px;
  169. box-sizing: border-box;
  170. border: 1px solid #2a63f3;
  171. border-right: none;
  172. transform: translate(1px, 0);
  173. border-top-left-radius: 23px;
  174. border-bottom-left-radius: 25px;
  175. font-size: 16px;
  176. }
  177. .hot {
  178. position: absolute;
  179. right: 130px;
  180. font-size: 14px;
  181. font-weight: 400;
  182. color: #ff7b15;
  183. display: flex;
  184. align-items: center;
  185. user-select: none;
  186. img {
  187. width: 18px;
  188. height: 18px;
  189. }
  190. }
  191. .btn {
  192. width: 100px;
  193. height: 50px;
  194. background: #2a63f3;
  195. font-size: 17px;
  196. font-weight: 400;
  197. color: #ffffff;
  198. text-align: center;
  199. line-height: 50px;
  200. border-top-right-radius: 23px;
  201. border-bottom-right-radius: 25px;
  202. user-select: none;
  203. cursor: pointer;
  204. }
  205. }
  206. .header-user {
  207. display: flex;
  208. justify-content: center;
  209. align-items: center;
  210. .user-login {
  211. width: 160px;
  212. display: flex;
  213. align-items: center;
  214. justify-content: flex-end;
  215. .user-login-avatar-box {
  216. height: 50px;
  217. width: 50px;
  218. margin-left: 20px;
  219. position: relative;
  220. .user-login-avatar {
  221. height: 100%;
  222. width: 100%;
  223. border-radius: 50%;
  224. }
  225. .mark {
  226. height: 16px;
  227. width: 32px;
  228. background-color: #ff3535;
  229. color: white;
  230. border-radius: 16px;
  231. margin-left: 20px;
  232. text-align: center;
  233. line-height: 16px;
  234. font-size: 12px;
  235. border: 1px solid white;
  236. position: absolute;
  237. top: -3px;
  238. right: -20px;
  239. transform: scale(0.9);
  240. }
  241. }
  242. .can {
  243. cursor: pointer;
  244. }
  245. }
  246. }
  247. }
  248. </style>