123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449 |
- <template>
- <header class="header">
- <div class="container clearfix">
- <div class="logo logo--no" v-if="header.companyLogo">
- <img
- style="cursor: pointer; width: 162px; height: 33px"
- :src="$tools.splitImgHost(header.companyLogo)"
- alt=""
- @click="go('/')"
- />
- </div>
- <h1 class="logo" v-else @click="go('/')"></h1>
- <nav class="nav">
- <ul class="list">
- <li v-for="(item, index) in showNav(header.Nav)" :key="index">
- <a v-if="item.name == '首页'" @click="go('/index')">首页</a>
- <a v-if="item.name == '走进祥粤'" @click="go('/about')">走进祥粤</a>
- <a v-if="item.name == '课程'" @click="go('/course-list')">课程</a>
- <a v-if="item.name == '直播'" @click="go('/live-list')">直播</a>
- <a v-if="item.name == '题库'" @click="go('/bank-list')">题库</a>
- </li>
- </ul>
- </nav>
- <div class="userinfo" v-if="userInfo">
- <a class="msg" @click="go('/person-center/my-message')">
- <i class="pi" v-if="msgCount > 0"></i>
- <i class="el-icon-message-solid icon"></i>
- </a>
- <el-dropdown @command="handleCommand">
- <span
- class="el-dropdown-link"
- @click="go('/person-center/my-course')"
- style="margin-left: 10px; cursor: pointer"
- >
- <img
- style="width: 24px; vertical-align: middle"
- :src="
- userInfo
- ? userInfo.avatar
- ? $tools.splitImgHost(userInfo.avatar, true)
- : '@/assets/qrcode.png'
- : ''
- "
- alt=""
- />
- <span>{{ userInfo && userInfo.realname }}</span>
- </span>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item command="1">我的课程</el-dropdown-item>
- <el-dropdown-item command="2">我的题库</el-dropdown-item>
- <el-dropdown-item command="3">个人中心</el-dropdown-item>
- <el-dropdown-item command="4">退出登录</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- </div>
- <div class="userinfo" v-else>
- <div class="text-list" v-if="!userInfo">
- <a @click="go('/login', { state: 1 })">登录</a>
- <a @click="go('/login', { state: 2 })">注册</a>
- </div>
- </div>
- <div class="search">
- <div class="search__select">
- <select v-model="type">
- <option value="1">课程</option>
- <option value="2">题库</option>
- <option value="6">直播</option>
- </select>
- </div>
- <div class="search__input">
- <input type="text" v-model="searchKey" autocomplete="off" />
- <input
- type="password"
- autocomplete="new-password"
- style="display: none"
- />
- </div>
- <el-button type="primary" @click="search" class="search__btn"
- >搜索</el-button
- >
- </div>
- </div>
- </header>
- </template>
- <script>
- import { mapGetters, mapMutations } from "vuex";
- export default {
- name: "Header",
- data() {
- return {
- searchKey: "",
- type: "1",
- showBox: false,
- timer: null,
- };
- },
- computed: {
- ...mapGetters(["header", "userInfo", "msgCount"]),
- showNav: function () {
- return function (list) {
- var newList = [];
- if (list) {
- newList = list.filter((item) => {
- return item.status === 1;
- });
- }
- return newList;
- };
- },
- },
- mounted() {
- if (this.$tools.isLogin()) {
- this.getMsgCount();
- }
- },
- methods: {
- ...mapMutations(["getMsgCount"]),
- handleCommand(command) {
- switch (command) {
- case "1":
- this.go("/person-center/my-course");
- break;
- case "2":
- this.go("/person-center/my-bank");
- break;
- case "3":
- this.go("/person-center/my-info");
- break;
- case "4":
- this.$tools.exit();
- break;
- default:
- break;
- }
- },
- go(path, query) {
- this.$router.push({
- path,
- query,
- });
- },
- search() {
- if (!this.searchKey.trim()) {
- this.$message({
- type: "warning",
- duration: 2000,
- message: "请输入搜索内容",
- });
- return;
- }
- let type = this.type;
- let path = this.$route.path;
- if (path == "/bank-list") {
- //在题库列表页面直接传参
- if (type == "2") {
- this.$emit("search", this.searchKey);
- } else if (type == "6") {
- this.$router.push({
- path: "/live-list",
- query: {
- searchKey: this.searchKey,
- },
- });
- } else {
- this.$router.push({
- path: "/course-list",
- query: {
- searchKey: this.searchKey,
- },
- });
- }
- } else if (path == "/course-list") {
- //在课程列表页面直接传参
- if (type == "1") {
- this.$emit("search", this.searchKey);
- } else if (type == "6") {
- this.$router.push({
- path: "/live-list",
- query: {
- searchKey: this.searchKey,
- },
- });
- } else {
- this.$router.push({
- path: "/bank-list",
- query: {
- searchKey: this.searchKey,
- },
- });
- }
- } else if (path == "/live-list") {
- //在课程列表页面直接传参
- if (type == "6") {
- this.$emit("search", this.searchKey);
- } else if (type == "1") {
- this.$router.push({
- path: "/course-list",
- query: {
- searchKey: this.searchKey,
- },
- });
- } else {
- this.$router.push({
- path: "/bank-list",
- query: {
- searchKey: this.searchKey,
- },
- });
- }
- } else {
- //根据类型跳转题库或者列表页面
- console.log(type);
- if (type == "1") {
- this.$router.push({
- path: "/course-list",
- query: {
- searchKey: this.searchKey,
- },
- });
- } else if (type == "6") {
- this.$router.push({
- path: "/live-list",
- query: {
- searchKey: this.searchKey,
- },
- });
- } else {
- this.$router.push({
- path: "/bank-list",
- query: {
- searchKey: this.searchKey,
- },
- });
- }
- }
- },
- mouseover() {
- clearTimeout(this.timer);
- this.showBox = true;
- },
- mouseLeave() {
- clearTimeout(this.timer);
- this.timer = setTimeout(() => {
- this.showBox = false;
- }, 500);
- },
- },
- };
- </script>
- <!-- Add "scoped" attribute to limit CSS to this component only -->
- <style scoped lang="scss">
- .header {
- position: relative;
- background: #fff;
- box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
- .container {
- height: 80px;
- .logo {
- margin-top: 23px;
- float: left;
- cursor: pointer;
- width: 162px;
- height: 33px;
- background: url("~@/assets/logo.png") no-repeat center;
- &--no {
- background: none;
- }
- }
- .nav {
- float: left;
- margin-top: 30px;
- .list {
- margin-left: 146px;
- display: flex;
- li {
- margin: 0 20px;
- a {
- color: #333;
- }
- a:hover {
- color: #3f8dfd;
- }
- }
- }
- }
- .search {
- float: right;
- margin-top: 20px;
- width: 324px;
- background: #fafbfc;
- border: 1px solid #3f8dfd;
- border-radius: 8px;
- display: flex;
- overflow: hidden;
- &__select {
- width: 76px;
- border-right: 1px solid #fff;
- select {
- text-align: center;
- width: 100%;
- height: 100%;
- border: 0;
- outline: none;
- }
- }
- &__input {
- flex: 1;
- input {
- width: 100%;
- height: 100%;
- }
- }
- &__btn {
- padding: 0;
- text-align: center;
- width: 80px;
- height: 40px;
- line-height: 40px;
- font-size: 14px;
- border-radius: 0;
- }
- }
- .userinfo {
- margin-top: 30px;
- float: right;
- white-space: nowrap;
- a {
- display: inline-block;
- margin-left: 20px;
- vertical-align: middle;
- &.msg {
- position: relative;
- margin-top: 2px;
- .icon {
- font-size: 20px;
- color: #3f8dfd;
- }
- .pi {
- display: inline-block;
- width: 10px;
- height: 10px;
- background: #ff3b30;
- border: 1px solid #ffffff;
- border-radius: 10px;
- position: absolute;
- top: 0;
- right: 0;
- }
- }
- &.name {
- position: relative;
- z-index: 99;
- img {
- width: 24px;
- vertical-align: middle;
- }
- .modal-box {
- width: 162px;
- background: #ffffff;
- box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
- border-radius: 8px;
- position: absolute;
- top: 55px;
- left: -40px;
- li {
- margin-left: 10px;
- border-bottom: 1px solid #eeeeee;
- height: 40px;
- line-height: 40px;
- cursor: pointer;
- padding-left: 5px;
- &:hover {
- background: #eeeeee;
- color: #3f8dfd;
- }
- &:nth-last-of-type(1) {
- border: 0;
- }
- }
- }
- }
- }
- }
- .text-list {
- margin-top: 30px;
- text-align: right;
- font-size: 0;
- a {
- display: inline-block;
- margin: 0;
- color: #3f8dfd;
- font-size: 14px;
- padding: 0 14px;
- &:nth-last-of-type(1) {
- padding-right: 0;
- border-left: 1px solid #3f8dfd;
- }
- }
- }
- }
- }
- .fade-enter,
- .fade-leave-to {
- opacity: 0;
- height: 0;
- }
- .fade-enter-to,
- .fade-leave {
- opacity: 1;
- height: 122px;
- }
- .fade-enter-active,
- .fade-leave-active {
- transition: all 0.3s;
- }
- </style>
|