master
commit
02e8421eec
|
After Width: | Height: | Size: 88 KiB |
|
After Width: | Height: | Size: 70 KiB |
|
After Width: | Height: | Size: 764 KiB |
@ -0,0 +1,43 @@
|
||||
<template>
|
||||
<section class="footer">
|
||||
<div class="footer__copyright">版权所有 @ 苏州卫生职业技术学院 地址: 苏州国际教育园北区科华路28号</div>
|
||||
<div class="footer__filings">苏ICP备10022524号 苏公网安备32050502000249号</div>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {}
|
||||
},
|
||||
methods: {},
|
||||
computed: {},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.footer {
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
height: 91px;
|
||||
background: url("../../assets/reception/footer-bkg.png");
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
|
||||
|
||||
|
||||
&__copyright {
|
||||
font-size: 13px;
|
||||
line-height: 20px;
|
||||
}
|
||||
&__filings {
|
||||
font-size: 13px;
|
||||
line-height: 20px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -0,0 +1,80 @@
|
||||
<template>
|
||||
<section class="container">
|
||||
<el-image
|
||||
class="container__logo"
|
||||
:src="require('@/assets/reception/container-logo.png')"
|
||||
fit="contain"></el-image>
|
||||
|
||||
<div class="container__title">内部质量保证体系资料汇编</div>
|
||||
|
||||
<div class="container__login">
|
||||
<i class="el-icon-user"></i>
|
||||
<span>管理端登录</span>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {}
|
||||
},
|
||||
methods: {},
|
||||
computed: {},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.container {
|
||||
height: 89px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
background: #247EC3;
|
||||
|
||||
z-index: 999;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
|
||||
&__logo {
|
||||
flex-shrink: 0;
|
||||
width: 305px;
|
||||
height: 100%;
|
||||
|
||||
margin-left: 18.65%;
|
||||
}
|
||||
&__title {
|
||||
width: 240px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
font-size: 20px;
|
||||
font-weight: 400;
|
||||
color: #FFFFFF;
|
||||
|
||||
margin-left: 14px;
|
||||
}
|
||||
&__login {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
& > i {
|
||||
color: #fff;
|
||||
font-size: 22px;
|
||||
|
||||
margin-right: 11px;
|
||||
}
|
||||
& > span {
|
||||
width: 70px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
color: #FFFFFF;
|
||||
line-height: 33px;
|
||||
}
|
||||
|
||||
margin-left: auto;
|
||||
margin-right: 18.75%;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -0,0 +1,133 @@
|
||||
<template>
|
||||
<div class="search">
|
||||
<div class="search-bar">
|
||||
<el-input placeholder="请输入内容" v-model="inputValue">
|
||||
<template #prepend>
|
||||
<el-dropdown trigger="click" placement="bottom" @command="e => selectValue = e">
|
||||
<el-button type="primary" class="dropdown-button">
|
||||
<div style="display: flex;align-items: center;">
|
||||
<i class="el-icon-search el-icon--left"></i><p class="dropdown-button__text">{{selectValue}}</p><i class="el-icon-arrow-down el-icon--right"></i>
|
||||
</div>
|
||||
</el-button>
|
||||
<template #dropdown>
|
||||
<el-dropdown-menu style="width: 235px;">
|
||||
<el-dropdown-item command="部门工作职责">
|
||||
<div style="text-align: center">部门工作职责</div>
|
||||
</el-dropdown-item>
|
||||
<el-dropdown-item command="制度文件">
|
||||
<div style="text-align: center">制度文件</div>
|
||||
</el-dropdown-item>
|
||||
<el-dropdown-item command="工作流程">
|
||||
<div style="text-align: center">工作流程</div>
|
||||
</el-dropdown-item>
|
||||
<el-dropdown-item command="岗位工作及标准">
|
||||
<div style="text-align: center">岗位工作及标准</div>
|
||||
</el-dropdown-item>
|
||||
<el-dropdown-item command="表单中心">
|
||||
<div style="text-align: center">表单中心</div>
|
||||
</el-dropdown-item>
|
||||
</el-dropdown-menu>
|
||||
</template>
|
||||
</el-dropdown>
|
||||
</template>
|
||||
</el-input>
|
||||
</div>
|
||||
<div class="search__bottom">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
selectValue: '搜索内部资料',
|
||||
inputValue: ''
|
||||
}
|
||||
},
|
||||
methods: {},
|
||||
computed: {},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.search {
|
||||
width: 100%;
|
||||
height: 295px;
|
||||
|
||||
padding: 33px 18.75% 38px 18.75%;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
|
||||
&::before {
|
||||
content: '';
|
||||
background: #1e9fff;
|
||||
filter: blur(8px);
|
||||
|
||||
z-index: 0;
|
||||
position: absolute;
|
||||
top: -10px;
|
||||
right: -10px;
|
||||
bottom: -10px;
|
||||
left: -10px;
|
||||
}
|
||||
|
||||
&__bottom {
|
||||
width: 100%;
|
||||
height: 179px;
|
||||
background: url("../../assets/reception/search-bottom-bkg.png");
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown-button {
|
||||
width: 235px;
|
||||
background: #376BA3!important;
|
||||
color: #fff!important;
|
||||
border: none!important;
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
|
||||
margin-left: -22px !important;
|
||||
padding-left: 29px !important;
|
||||
padding-right: 18px !important;
|
||||
|
||||
&__text {
|
||||
flex: 1;
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
::v-deep div[x-arrow] {
|
||||
display: none;
|
||||
}
|
||||
::v-deep .el-input__inner {
|
||||
border: none;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
<style>
|
||||
.el-dropdown-menu[x-placement^=bottom] {
|
||||
padding: 0!important;
|
||||
border: none;
|
||||
transform: translateX(-1px);
|
||||
}
|
||||
.el-dropdown-menu__item:not(.is-disabled):hover, .el-dropdown-menu__item:focus {
|
||||
background: #247EC3!important;
|
||||
color: #fff!important;
|
||||
}
|
||||
.el-dropdown-menu > li:nth-child(1):hover {
|
||||
border-top-left-radius: 4px;
|
||||
border-top-right-radius: 4px;
|
||||
}
|
||||
.el-dropdown-menu > li:nth-child(5):hover {
|
||||
border-bottom-left-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
}
|
||||
</style>
|
||||
@ -0,0 +1,66 @@
|
||||
<template>
|
||||
<div>
|
||||
<navbar></navbar>
|
||||
|
||||
<search></search>
|
||||
|
||||
<router-view v-slot="{ Component }">
|
||||
<transition
|
||||
name="component-animation"
|
||||
enter-active-class="fade-in"
|
||||
leave-to-class="fade-out"
|
||||
>
|
||||
<keep-alive include="home">
|
||||
<component :is="Component" :key="$route.name"></component>
|
||||
</keep-alive>
|
||||
</transition>
|
||||
</router-view>
|
||||
|
||||
<foot></foot>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import navbar from "@/components/Reception/Navbar.vue";
|
||||
import search from "@/components/Reception/Search.vue";
|
||||
import foot from "@/components/Reception/Footer.vue";
|
||||
export default {
|
||||
components: {
|
||||
navbar,
|
||||
search,
|
||||
foot
|
||||
},
|
||||
data() {
|
||||
return {}
|
||||
},
|
||||
methods: {},
|
||||
computed: {},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.fade-in {
|
||||
animation: fade-in 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
|
||||
}
|
||||
|
||||
@keyframes fade-in {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
.fade-out {
|
||||
animation: fade-out 0.4s ease-out both;
|
||||
}
|
||||
|
||||
@keyframes fade-out {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Loading…
Reference in new issue