|
@@ -1,7 +1,7 @@
|
|
<template>
|
|
<template>
|
|
<div class="homePage" id="homePage">
|
|
<div class="homePage" id="homePage">
|
|
<a-back-top :target="targetfn"/>
|
|
<a-back-top :target="targetfn"/>
|
|
- <a-carousel autoplay>
|
|
|
|
|
|
+ <a-carousel autoplay v-if="!showTap">
|
|
<div v-for="(item, index) in bannerArr" :key="index" @click="goKnowledge(item)">
|
|
<div v-for="(item, index) in bannerArr" :key="index" @click="goKnowledge(item)">
|
|
<!--<img src="../../../image/banner.jpg" class="bannerClass"/>-->
|
|
<!--<img src="../../../image/banner.jpg" class="bannerClass"/>-->
|
|
<img :src="'/api/api-system/system/core/sysFile/previewFile?fileId='+item.bannerFile" class="bannerClass"/>
|
|
<img :src="'/api/api-system/system/core/sysFile/previewFile?fileId='+item.bannerFile" class="bannerClass"/>
|
|
@@ -9,17 +9,23 @@
|
|
<p class="bannerContent">{{item.summary}}</p>
|
|
<p class="bannerContent">{{item.summary}}</p>
|
|
</div>
|
|
</div>
|
|
</a-carousel>
|
|
</a-carousel>
|
|
- <search :hideSelect="true" searchWidth="59.58vw" class="searchbar" @searchResult="searchResult"></search>
|
|
|
|
- <div class="searchBox">
|
|
|
|
|
|
+ <div class="searchHead">
|
|
|
|
+ <search :hideSelect="true" searchWidth="59.58vw" class="searchbar" @searchResult="searchResult"></search>
|
|
<div class="tabBoxHome" v-if="showTap">
|
|
<div class="tabBoxHome" v-if="showTap">
|
|
<div v-for="(item, index) in tapArr" :key="index" @click="changeAction(index)" v-show="item.show">
|
|
<div v-for="(item, index) in tapArr" :key="index" @click="changeAction(index)" v-show="item.show">
|
|
- <span>{{item.name}}</span>
|
|
|
|
|
|
+ <span v-if="index==2" style="padding-left: 0vw;">{{item.name}}</span>
|
|
|
|
+ <span v-else-if="index==3" style="padding-left: 0.7vw;">{{item.name}}</span>
|
|
|
|
+ <span v-else>{{item.name}}</span>
|
|
<img v-if="tapAction==index" src="../../../image/tabAction.png"/>
|
|
<img v-if="tapAction==index" src="../../../image/tabAction.png"/>
|
|
</div>
|
|
</div>
|
|
<div class="orderBox">
|
|
<div class="orderBox">
|
|
<div @click="changeOrder(index)" v-for="(item, index) in orderArr" :key="index" :class="orderFiled==index?'orderAction':''">{{item}}</div>
|
|
<div @click="changeOrder(index)" v-for="(item, index) in orderArr" :key="index" :class="orderFiled==index?'orderAction':''">{{item}}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="searchBox">
|
|
|
|
+
|
|
<div class="noDataBox" v-if="dataList.length==0">
|
|
<div class="noDataBox" v-if="dataList.length==0">
|
|
<img src="../../../image/noDataNew.png" class="noData"/>
|
|
<img src="../../../image/noDataNew.png" class="noData"/>
|
|
<p class="noDataText">暂无搜索结果</p>
|
|
<p class="noDataText">暂无搜索结果</p>
|
|
@@ -27,7 +33,7 @@
|
|
<div v-else class="DataBox">
|
|
<div v-else class="DataBox">
|
|
<div class="listBox">
|
|
<div class="listBox">
|
|
<div class="listBoxItem" v-for="(item, index) in dataList" :key="index">
|
|
<div class="listBoxItem" v-for="(item, index) in dataList" :key="index">
|
|
- <pageList :item="item" type="home"></pageList>
|
|
|
|
|
|
+ <pageList class="listSearchBox listItemClass" :item="item" type="home"></pageList>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -244,6 +250,7 @@ export default {
|
|
.homePage{
|
|
.homePage{
|
|
height: calc(100% - 0vw);
|
|
height: calc(100% - 0vw);
|
|
overflow: scroll;
|
|
overflow: scroll;
|
|
|
|
+ background: #FAFAFA;
|
|
}
|
|
}
|
|
.ant-carousel >>> .slick-slide {
|
|
.ant-carousel >>> .slick-slide {
|
|
text-align: center;
|
|
text-align: center;
|
|
@@ -300,7 +307,7 @@ export default {
|
|
}
|
|
}
|
|
.DataBox{
|
|
.DataBox{
|
|
width:100%;
|
|
width:100%;
|
|
-
|
|
|
|
|
|
+ margin-top: 1vw
|
|
}
|
|
}
|
|
.noDataText{
|
|
.noDataText{
|
|
color:#C0C0C0;
|
|
color:#C0C0C0;
|
|
@@ -309,6 +316,7 @@ export default {
|
|
.tabBoxHome{
|
|
.tabBoxHome{
|
|
width: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
display: flex;
|
|
|
|
+ padding: 0px 10.94vw;
|
|
}
|
|
}
|
|
.orderBox div{
|
|
.orderBox div{
|
|
color: #202124;
|
|
color: #202124;
|
|
@@ -322,8 +330,8 @@ export default {
|
|
}
|
|
}
|
|
.tabBoxHome div{
|
|
.tabBoxHome div{
|
|
width: 8.12vw;
|
|
width: 8.12vw;
|
|
- height:4.17vw;
|
|
|
|
- text-align: center;
|
|
|
|
|
|
+ /*height:4.17vw;*/
|
|
|
|
+ text-align: left;
|
|
float:left;
|
|
float:left;
|
|
}
|
|
}
|
|
.tabBoxHome span{
|
|
.tabBoxHome span{
|
|
@@ -333,6 +341,7 @@ export default {
|
|
font-size: 0.9375vw;
|
|
font-size: 0.9375vw;
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
display: inline-block;
|
|
|
|
+ padding-left: 0.4vw;
|
|
}
|
|
}
|
|
.tabBoxHome img{
|
|
.tabBoxHome img{
|
|
margin-top: 0.9375vw;
|
|
margin-top: 0.9375vw;
|
|
@@ -345,9 +354,7 @@ export default {
|
|
opacity: 0.73;
|
|
opacity: 0.73;
|
|
}
|
|
}
|
|
.listBoxItem{
|
|
.listBoxItem{
|
|
- margin-top: 0.42vw;
|
|
|
|
- margin-bottom: 0.83vw;
|
|
|
|
- padding: 1.5625vw;
|
|
|
|
|
|
+ /*padding: 0 1.5625vw;*/
|
|
}
|
|
}
|
|
.searchbar{
|
|
.searchbar{
|
|
margin-top: 1.71875vw!important;
|
|
margin-top: 1.71875vw!important;
|
|
@@ -369,4 +376,19 @@ export default {
|
|
height: 4px;
|
|
height: 4px;
|
|
background: #5C86D9;
|
|
background: #5C86D9;
|
|
}
|
|
}
|
|
|
|
+.searchHead{
|
|
|
|
+ background: #fff;
|
|
|
|
+ display: inline-grid;
|
|
|
|
+ width: 100%;
|
|
|
|
+ min-height: 7.2vw;
|
|
|
|
+}
|
|
|
|
+.listSearchBox{
|
|
|
|
+ margin-top: 0.42vw;
|
|
|
|
+ margin-bottom: 1.1vw;
|
|
|
|
+ padding: 1.5625vw;
|
|
|
|
+ border-radius: 10px;
|
|
|
|
+}
|
|
|
|
+.listItemClass{
|
|
|
|
+ background: #fff;
|
|
|
|
+}
|
|
</style>
|
|
</style>
|