首页样式

This commit is contained in:
wangxiahui@91isoft.com
2021-11-14 14:43:17 +08:00
parent 86f6e8740a
commit ee9c388759
5 changed files with 18 additions and 8 deletions
@@ -80,11 +80,13 @@
<style lang="less" scoped> <style lang="less" scoped>
.link { .link {
margin-right: 10px;
display: flex; display: flex;
border-radius: 3px; border-radius: 3px;
height: 100%; height: 100%;
align-items: center; align-items: center;
justify-content: space-around; justify-content: space-around;
box-shadow: 1px 1px 10px rgba(0,0,0,0.1);
.borderRight { .borderRight {
padding-right: 30px; padding-right: 30px;
margin-right: 30px; margin-right: 30px;
+4 -1
View File
@@ -1,7 +1,7 @@
<!-- 右侧导航 --> <!-- 右侧导航 -->
<template> <template>
<div class="nav-menu"> <div class="nav-menu">
<div class="lattice"> <div class="lattice" style=" box-shadow:1px 1px 10px rgba(0,0,0,0.1);" >
<div class="title"><i class="el-icon-s-promotion"></i> 快捷入口</div> <div class="title"><i class="el-icon-s-promotion"></i> 快捷入口</div>
<div class="menu-wrap"> <div class="menu-wrap">
<enter-card v-for="(item, index) in list" <enter-card v-for="(item, index) in list"
@@ -67,8 +67,10 @@
<style lang="less" scoped> <style lang="less" scoped>
.nav-menu { .nav-menu {
.lattice { .lattice {
margin-right: 10px;
background: #fff; background: #fff;
margin-bottom: 10px; margin-bottom: 10px;
border-radius: 3px;
.title { .title {
margin-bottom: 10px; margin-bottom: 10px;
padding-left: 10px; padding-left: 10px;
@@ -77,6 +79,7 @@
background: #fff; background: #fff;
font-size: 16px; font-size: 16px;
font-weight: bold; font-weight: bold;
border-radius: 10px;
} }
.menu-wrap { .menu-wrap {
height: 240px; height: 240px;
@@ -22,8 +22,8 @@
placeholder="请输入关键词" placeholder="请输入关键词"
clearable clearable
></el-input> ></el-input>
<el-button type="primary" @click="search">搜索</el-button> <el-button style="box-shadow:1px 1px 10px rgba(0,0,0,0.2);margin-left: 5px;" type="primary" @click="search">一般检索</el-button>
<el-button style="margin-left: 5px;" type="primary" @click="seniorSearch">高级搜索</el-button> <el-button style="box-shadow:1px 1px 10px rgba(0,0,0,0.2);margin-left: 5px;" type="primary" @click="seniorSearch">高级检索</el-button>
</div> </div>
</div> </div>
</template> </template>
@@ -91,7 +91,7 @@ export default {
} }
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>
.search-group { .search-group {
display: flex; display: flex;
width: 100%; width: 100%;
@@ -105,10 +105,11 @@ export default {
width: 18vm; width: 18vm;
height: 40px; height: 40px;
color: #333333; color: #333333;
font-size: 16px; font-size: 13px;
border: 0; border: 0;
border-radius: 3px; border-radius: 3px;
background-color: #FFFFFF; background-color: #FFFFFF;
box-shadow:1px -2px 10px rgba(0,0,0,0.1);
} }
} }
} }
@@ -118,11 +119,12 @@ export default {
::v-deep { ::v-deep {
.el-input__inner { .el-input__inner {
height: 40px; height: 40px;
font-size: 16px; font-size: 14px;
color: #333333; color: #333333;
border: 0; border: 0;
border-radius: 3px; border-radius: 3px;
background: #FFFFFF; background: #FFFFFF;
box-shadow:1px -2px 10px rgba(0,0,0,0.1);
} }
} }
} }
@@ -132,6 +134,7 @@ export default {
border: 0; border: 0;
border-radius: 3px; border-radius: 3px;
background-color: #5ea9f6; background-color: #5ea9f6;
} }
} }
</style> </style>
@@ -1274,10 +1274,12 @@ export default {
<style lang="less" scoped> <style lang="less" scoped>
.to-do-list { .to-do-list {
margin-right: 10px;
border-radius: 3px; border-radius: 3px;
height: calc(~'100% - 310px'); height: calc(~'100% - 310px');
overflow: hidden; overflow: hidden;
background: #FFFFFF; background: #FFFFFF;
box-shadow: 1px 1px 10px rgba(0,0,0,0.1);
.task { .task {
display: inline-block; display: inline-block;
margin: 15px; margin: 15px;
+2 -2
View File
@@ -3,7 +3,7 @@
<div class="home_main"> <div class="home_main">
<div class="left_wrapper"> <div class="left_wrapper">
<search-group></search-group> <search-group></search-group>
<div class="main-tabs" style="border-radius: 3px;"> <div class="main-tabs" style="box-shadow:1px 1px 10px rgba(0,0,0,0.1);border-radius: 3px;" >
<div class="main-left-wrap" > <div class="main-left-wrap" >
<!-- <el-button type="text" style="font-size: 14px" class="more" @click="MORE">MORE</el-button>--> <!-- <el-button type="text" style="font-size: 14px" class="more" @click="MORE">MORE</el-button>-->
<el-tabs <el-tabs
@@ -142,7 +142,7 @@ export default {
} }
::v-deep { ::v-deep {
.el-tabs__item { .el-tabs__item {
font-size: 16px; font-size: 14px;
font-weight: 600; font-weight: 600;
/*color: #333333;*/ /*color: #333333;*/
} }