|
@@ -15,35 +15,50 @@
|
|
|
</view>
|
|
|
<view class="">
|
|
|
<view class="topName">{{name}}</view>
|
|
|
- <view class="comment">{{title}}</view>
|
|
|
+ <view class="comment " v-if="title">{{title}}</view>
|
|
|
</view>
|
|
|
<view class="main">
|
|
|
-
|
|
|
+ <view class="dynamicCol">
|
|
|
+ <view class="dynamicColLeft">
|
|
|
+
|
|
|
+ </view>
|
|
|
+ <view class="dynamicColRight">
|
|
|
+ <image src="../../static/pcimg/icon_kapian_def@2x.png" v-show="qhIndex==2" class="qhImg" @click="qhIndex=1"></image>
|
|
|
+ <image src="../../static/pcimg/icon_kapian_sel@2x.png" v-show="qhIndex==2" class="qhImg"></image>
|
|
|
+ <image src="../../static/pcimg/icon_liebiao_sel@2x.png" v-show="qhIndex==1" class="qhImg" ></image>
|
|
|
+ <image src="../../static/pcimg/qh2.png" v-show="qhIndex==1" class="qhImg" @click="qhIndex=2"></image>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
<view class="cont2">
|
|
|
- <view class="contf" v-if="qhIndex==2">
|
|
|
- <view class="mainwzline" v-for="(wz,wzindex) in list" :class="{'mainwzlineR':(wzindex+1)%4==0&&wzindex!=0}" @click="goDetail(wz)">
|
|
|
- <view class="mainwzImgBox">
|
|
|
- <img :src="wz.LogoImg" alt="" class="mainwzImg">
|
|
|
+ <view class="contBox">
|
|
|
+ <view class="contf" v-if="qhIndex==2&&list.length>0">
|
|
|
+ <view class="mainwzline" v-for="(wz,wzindex) in list" :class="{'mainwzlineR':(wzindex+1)%4==0&&wzindex!=0}" @click="goDetail(wz)">
|
|
|
+ <view class="mainwzImgBox">
|
|
|
+ <img :src="wz.LogoImg" alt="" class="mainwzImg">
|
|
|
+ </view>
|
|
|
+ <view class="wztitle">{{wz.Title}}</view>
|
|
|
+ <view class="wztime">2022-3-30</view>
|
|
|
</view>
|
|
|
- <view class="wztitle">{{wz.Title}}</view>
|
|
|
</view>
|
|
|
- </view>
|
|
|
- <view class="contL" v-if="qhIndex==1">
|
|
|
- <view class="wxLine" v-for="(wz,wzindex) in list" @click="goDetail(wz)">
|
|
|
- <view class="wzLineLeft">
|
|
|
- <image :src="wz.LogoImg" class="wzLeftIMg"></image>
|
|
|
- </view>
|
|
|
- <view class="wzLineRight">
|
|
|
- <view class="wzTitle">{{wz.Name}}</view>
|
|
|
- <view class="wzComment">{{wz.Comment}}</view>
|
|
|
+ <view class="contL" v-if="qhIndex==1&&list.length>0">
|
|
|
+ <view class="wxLine" v-for="(wz,wzindex) in list" @click="goDetail(wz)">
|
|
|
+ <view class="wzLineLeft">
|
|
|
+ <image :src="wz.LogoImg" class="wzLeftIMg"></image>
|
|
|
+ </view>
|
|
|
+ <view class="wzLineRight">
|
|
|
+ <view class="wzTitle2">{{wz.Title}}</view>
|
|
|
+ <view class="wzComment">{{wz.Comment}}</view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <view class="nodata" v-show="list.length==0">
|
|
|
+ <image src="../../static/pcimg/listnodata.png" mode="" class="nodataImg"></image>
|
|
|
+ <view class="nodataTitle">暂无数据</view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
+
|
|
|
</view>
|
|
|
- <view class="nodata" v-show="list.length==0">
|
|
|
- <image src="../../static/pcimg/listnodata.png" mode="" class="nodataImg"></image>
|
|
|
- <view class="nodataTitle">暂无数据</view>
|
|
|
- </view>
|
|
|
+
|
|
|
|
|
|
</view>
|
|
|
|
|
@@ -92,6 +107,9 @@
|
|
|
this.topName=opt.topName;
|
|
|
this.comment=opt.comment;
|
|
|
this.getgroupPageData()
|
|
|
+ uni.setNavigationBarTitle({
|
|
|
+ title: this.name
|
|
|
+ });
|
|
|
},
|
|
|
methods: {
|
|
|
goIndex(){
|
|
@@ -166,10 +184,18 @@
|
|
|
padding: 30px 0;
|
|
|
font-size: 14px;
|
|
|
}
|
|
|
+ .content{
|
|
|
+ background: #F4F5F7;
|
|
|
+ min-height: 100vh;
|
|
|
+ font-family: PingFangSC-Regular, PingFang SC;
|
|
|
+ }
|
|
|
.htmlBox{
|
|
|
width: 720px;
|
|
|
margin: 0 auto;
|
|
|
}
|
|
|
+ .contBox{
|
|
|
+ min-height: 58vh;
|
|
|
+ }
|
|
|
.topline{
|
|
|
padding-right: 10px;
|
|
|
cursor: pointer;
|
|
@@ -190,17 +216,17 @@
|
|
|
}
|
|
|
.gotop{
|
|
|
position: fixed;
|
|
|
- right:15vh ;
|
|
|
- bottom: 100px;
|
|
|
+ right:5vh ;
|
|
|
+ bottom: 60px;
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
.topName{
|
|
|
text-align: center;
|
|
|
- font-size: 24px;
|
|
|
+ font-size: 22px;
|
|
|
font-weight: 500;
|
|
|
color: #3C3C3C;
|
|
|
line-height: 33px;
|
|
|
- padding-top: 30px;
|
|
|
+ font-family: PingFangSC-Medium, PingFang SC;
|
|
|
}
|
|
|
.comment{
|
|
|
text-align: center;
|
|
@@ -235,81 +261,122 @@
|
|
|
.dynamicCol{
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
+ background: #FFFFFF;
|
|
|
+ padding:15px 20px;
|
|
|
+ border-radius: 8px;
|
|
|
}
|
|
|
.activeTab{
|
|
|
color: #FF4F00;
|
|
|
}
|
|
|
.mainwzImg{
|
|
|
- width: 276px;
|
|
|
- height: 184px;
|
|
|
+ width: 284px;
|
|
|
+ height: 160px;
|
|
|
}
|
|
|
.mainwzImgBox{
|
|
|
- border-radius: 15px;
|
|
|
+ border-top-left-radius: 6px;
|
|
|
+ border-top-right-radius: 6px;
|
|
|
overflow: hidden;
|
|
|
+ height: 160px;
|
|
|
+ border: 1px solid #eeeeee;
|
|
|
}
|
|
|
.contf{
|
|
|
display: flex;
|
|
|
flex-wrap: wrap;
|
|
|
}
|
|
|
.mainwzline{
|
|
|
- width: 276px;
|
|
|
- height: 260px;
|
|
|
+ width: 284px;
|
|
|
+ height: 244px;
|
|
|
background: #FFFFFF;
|
|
|
- margin-right: 32px;
|
|
|
- padding-top: 33px;
|
|
|
+ margin-right: 21px;
|
|
|
+ margin-top: 20px;
|
|
|
cursor: pointer;
|
|
|
+ border-radius: 6px;
|
|
|
+ }
|
|
|
+ .wztime{
|
|
|
+ font-size: 14px;
|
|
|
+ color: #999999;
|
|
|
+ padding-left: 14px;
|
|
|
+ padding-top: 10px;
|
|
|
}
|
|
|
.mainwzlineR{
|
|
|
margin-right: 0px;
|
|
|
}
|
|
|
.wztitle{
|
|
|
- width: 250px;
|
|
|
+ width: 256px;
|
|
|
font-size: 16px;
|
|
|
color: #333333;
|
|
|
line-height: 22px;
|
|
|
- height: 44px;
|
|
|
+ height: 22px;
|
|
|
text-overflow: -o-ellipsis-lastline;
|
|
|
overflow: hidden;
|
|
|
text-overflow: ellipsis;
|
|
|
display: -webkit-box;
|
|
|
- -webkit-line-clamp: 2;
|
|
|
- line-clamp: 2;
|
|
|
+ -webkit-line-clamp: 1;
|
|
|
+ line-clamp: 1;
|
|
|
-webkit-box-orient: vertical;
|
|
|
- padding-top: 16px;
|
|
|
padding:0 13px ;
|
|
|
+ padding-top: 16px;
|
|
|
+ }
|
|
|
+ .wzComment{
|
|
|
+ font-size: 14px;
|
|
|
+ font-family: PingFangSC-Regular, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #999999;
|
|
|
+ line-height: 20px;
|
|
|
+ padding-top: 10px;
|
|
|
+ width: 948px;
|
|
|
+ height: 80px;
|
|
|
+ text-overflow: -o-ellipsis-lastline;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ display: -webkit-box;
|
|
|
+ -webkit-line-clamp: 4;
|
|
|
+ line-clamp: 4;
|
|
|
+ -webkit-box-orient: vertical;
|
|
|
}
|
|
|
.wzLeftIMg{
|
|
|
width: 200px;
|
|
|
height: 132px;
|
|
|
}
|
|
|
+ .contL{
|
|
|
+ background: #FFFFFF;
|
|
|
+ margin-top: 20px ;
|
|
|
+ border-radius: 8px;
|
|
|
+ padding: 0 20px;
|
|
|
+ }
|
|
|
.wxLine{
|
|
|
display: flex;
|
|
|
- padding-top: 30px;
|
|
|
+ padding: 20px 0px;
|
|
|
cursor: pointer;
|
|
|
+ border-bottom: 1px solid #EEEEEE;
|
|
|
}
|
|
|
.wzLineLeft{
|
|
|
- border-radius: 10px;
|
|
|
+ border-radius: 6px;
|
|
|
overflow: hidden;
|
|
|
width: 200px;
|
|
|
height: 132px;
|
|
|
}
|
|
|
.wzLineRight{
|
|
|
padding-left: 16px;
|
|
|
- width: 950px;
|
|
|
+ width: 788px;
|
|
|
}
|
|
|
.wzTitle{
|
|
|
font-size: 16px;
|
|
|
- font-weight: 500;
|
|
|
color: #3C3C3C;
|
|
|
}
|
|
|
- .wzComment{
|
|
|
- font-size: 12px;
|
|
|
- font-family: PingFangSC-Regular, PingFang SC;
|
|
|
- font-weight: 400;
|
|
|
- color: #999999;
|
|
|
- line-height: 17px;
|
|
|
- padding-top: 10px;
|
|
|
- width: 1000px;
|
|
|
+ .wzTitle2{
|
|
|
+ font-size: 16px;
|
|
|
+ color: #3C3C3C;
|
|
|
+ width: 948px;
|
|
|
+ height: 20px;
|
|
|
+ line-height: 20px;
|
|
|
+ text-overflow: -o-ellipsis-lastline;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ display: -webkit-box;
|
|
|
+ -webkit-line-clamp: 1;
|
|
|
+ line-clamp: 1;
|
|
|
+ -webkit-box-orient: vertical;
|
|
|
}
|
|
|
.pageView{
|
|
|
margin-top: 20px;
|