修改页面头部文字及选中状态的色调变化 ,logo变化 等

This commit is contained in:
daihh
2022-10-08 19:55:39 +08:00
parent c23e0c838d
commit 9547d07244
7 changed files with 79 additions and 1436 deletions

View File

@@ -1,7 +1,7 @@
<template>
<div>
<div class="course-banner">
<portal-header current="index" style="z-index:999; position: relative;"></portal-header>
<portal-header current="index" textColor="#000000" style="z-index:999; position: relative;"></portal-header>
<div id="container" style="z-index:99;">
<swiper :options="swiperOption" ref="mySwiper" v-if="resonimg.length">
<swiper-slide style="margin: 0 auto;" v-for="(item , idx ) in resonimg" :key="idx" class="swiper-slide games">

View File

@@ -1,7 +1,7 @@
<template>
<div id="case-list-content">
<div class="case-banner">
<portal-header current="case" :goSearch="2"></portal-header>
<portal-header current="case" textColor="#fff" :goSearch="2"></portal-header>
</div>
<div class="">
<div class="xcontent2">

View File

@@ -1,7 +1,7 @@
<template>
<div id="case-list-content">
<div class="case-banner">
<portal-header current="case" @emitInput="emitInput"></portal-header>
<portal-header current="case" textColor="#fff" @emitInput="emitInput"></portal-header>
</div>
<div class="xcontent2">
<div class="xcontent2-main" style="margin-right: 30px;">

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +1,7 @@
<template>
<div id="couser-list-content" class="couser-list-content">
<div class="course-banner">
<portal-header current="course" @emitInput="emitInput"></portal-header>
<portal-header current="course" textColor="#fff" @emitInput="emitInput"></portal-header>
</div>
<div style="padding-top:30px" class="">
<div class="xcontent2">

View File

@@ -1,6 +1,8 @@
<template>
<div class="follow-page">
<top></top>
<div class="follow-banner">
<portal-header current="follow" textColor="#fff" @emitInput="emitInput"></portal-header>
</div>
<div>
<div class="home-page-left">
<div class="book-input">
@@ -52,9 +54,9 @@
</div>
</template>
<script>
import top from '../../../layout/components/TopNav/Index.vue'
import portalHeader from "@/components/PortalHeader.vue";
import UcHeader from '@/components/HomePage/homePage.vue'
import CaseList from '@/components/HomePage/caseList.vue'
import CourseList from '@/components/HomePage/courseList.vue'
@@ -66,7 +68,7 @@
import BookList from "@/components/HomePage/bookList.vue"
export default{
components:{top,UcHeader,CaseList,CourseList,NoteList,PutList,AnswerList,ArticleList,FollowList,BookList},
components:{portalHeader,UcHeader,CaseList,CourseList,NoteList,PutList,AnswerList,ArticleList,FollowList,BookList},
data(){
return{
input:'',
@@ -80,11 +82,13 @@
}
}
</script>
<style lang="scss" scoped>
.follow-banner{
background-color: #0078FC;
}
.follow-page{
background: #FFFFFF;
padding-top: 72px;
height: 100vh;
::v-deep .el-tabs__active-bar{
height: 4px;
@@ -171,7 +175,7 @@
color: #666666;
}
}
}
.ach-title{
font-size: 18px;
@@ -221,4 +225,3 @@
// }
}
</style>