|
@@ -3,17 +3,17 @@
|
|
|
<view class="nav">
|
|
|
<view class="navCont">
|
|
|
<view class="logo">
|
|
|
- <image src="../../static/pcimg/nav_logo@2x.png" mode="" class="logoImg"></image>
|
|
|
+ <image :src="info.logo" mode="" class="logoImg"></image>
|
|
|
</view>
|
|
|
- <view class="navTitle">门店学院</view>
|
|
|
+ <view class="navTitle">{{info.title}}</view>
|
|
|
<view class="indexNav" :class="{'indexActive':data=='index'}" @click="goIndex">首页</view>
|
|
|
<view class="allCategory">
|
|
|
- <view class="allCategoryLine" :class="{'indexActive':itemName==item.name}" v-for="(item,index) in allCategory" v-if="index<4" @click="goItem(item)">{{item.name}}</view>
|
|
|
+ <view class="allCategoryLine" :class="{'indexActive':itemName==item.name}" v-for="(item,index) in allCategory" v-if="index<5" @click="goItem(item)">{{item.name}}</view>
|
|
|
<view class="allCategoryMore" v-if="allCategory.length>1">
|
|
|
<span @click="moreBtn">更多</span>
|
|
|
<image @click="moreBtn" src="../../static/pcimg/icon_arrow_xia@2x.png" mode="widthFix" class="navmoreImg"></image>
|
|
|
- <view class="navMoret" v-show="navMoret">
|
|
|
- <view class="navMoreTline" v-for="(item,index) in allCategory" v-if="index>3" @click="goItem(item)">{{item.name}}</view>
|
|
|
+ <view class="navMoret" >
|
|
|
+ <view class="navMoreTline" v-for="(item,index) in allCategory" v-if="index>4" @click="goItem(item)">{{item.name}}</view>
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
@@ -36,7 +36,7 @@
|
|
|
return {
|
|
|
allCategory:[],
|
|
|
navMoret:false,
|
|
|
-
|
|
|
+ info:'',
|
|
|
};
|
|
|
},
|
|
|
onLoad() {
|
|
@@ -44,6 +44,7 @@
|
|
|
},
|
|
|
created(){
|
|
|
this.getallCategory();
|
|
|
+ this.getInfo()
|
|
|
},
|
|
|
methods:{
|
|
|
gosearchlist(){
|
|
@@ -57,6 +58,11 @@
|
|
|
url:'list?code='+item.code+'&topName='+item.name+'&comment='+item.comment
|
|
|
})
|
|
|
},
|
|
|
+ getInfo(){
|
|
|
+ this.$http('/trainingOpenApi/getInfo', {}, 'GET').then(res => {
|
|
|
+ this.info = res.data
|
|
|
+ })
|
|
|
+ },
|
|
|
goIndex(){
|
|
|
uni.navigateTo({
|
|
|
url:'../../pages/pc/index'
|
|
@@ -93,7 +99,7 @@
|
|
|
position: relative;
|
|
|
}
|
|
|
.logoImg{
|
|
|
- width: 86px;
|
|
|
+ width: 77px;
|
|
|
height: 36px;
|
|
|
margin-top: 19px;
|
|
|
}
|
|
@@ -101,7 +107,7 @@
|
|
|
line-height: 72px;
|
|
|
font-weight: 500;
|
|
|
color: #3C3C3C;
|
|
|
- font-size: 24px;
|
|
|
+ font-size: 22px;
|
|
|
padding-left: 24px;
|
|
|
}
|
|
|
.indexNav{
|
|
@@ -122,30 +128,36 @@
|
|
|
.allCategoryLine{
|
|
|
padding-left: 44px;
|
|
|
color: #3C3C3C;
|
|
|
- font-size: 20px;
|
|
|
+ font-size: 18px;
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
.allCategoryMore{
|
|
|
padding-left: 44px;
|
|
|
color: #3C3C3C;
|
|
|
- font-size: 20px;
|
|
|
+ font-size: 18px;
|
|
|
display: flex;
|
|
|
cursor: pointer;
|
|
|
position: relative;
|
|
|
}
|
|
|
.navMoret{
|
|
|
position: absolute;
|
|
|
- width: 160px;
|
|
|
+ width: 130px;
|
|
|
background: #FFFFFF;
|
|
|
box-shadow: 0px 4px 10px 0px rgba(153, 153, 153, 0.12);
|
|
|
border-radius: 6px;
|
|
|
top: 72px;
|
|
|
left:0 ;
|
|
|
+ font-size: 18px;
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ .allCategoryMore:hover .navMoret{
|
|
|
+ display: block;
|
|
|
}
|
|
|
.navMoreTline{
|
|
|
- width: 160px;
|
|
|
+ width: 130px;
|
|
|
text-align: center;
|
|
|
font-size: 20px;
|
|
|
+ line-height: 60px;
|
|
|
}
|
|
|
.navmoreImg{
|
|
|
width: 12px;
|