tanyanfei před 4 roky
rodič
revize
df4c5429fe

+ 2 - 1
pages/actDetail/actDetail.wxss

@@ -40,10 +40,11 @@ page{
   font-size: 32rpx;
 }
 .intro view{
-  color: #333;
+  color: #444;
   margin-bottom: 20rpx;
   font-weight: bolder;
   font-size: 36rpx;
+  letter-spacing: 2rpx;
 }
 .content{
   line-height: 50rpx;

+ 3 - 1
pages/collect/collect.wxml

@@ -23,4 +23,6 @@
                         <text class="">{{item.desc}}</text>
                     </view>
 </navigator> 
-</block>
+</block>
+
+<view wx:if='{{list.length==0}}' style="text-align:center;color:#999;padding:200rpx 0;">暂无收藏</view>

+ 5 - 2
pages/conference/conference.wxss

@@ -9,10 +9,11 @@ page{
   border-radius: 18rpx;
 }
 .name{
-  font-size: 32rpx;
+  font-size: 36rpx;
   margin-top: 20rpx;
   color: #333;
   margin-bottom: 30rpx;
+  font-weight: 500;
 }
 .info text{
   color: #666;
@@ -20,14 +21,16 @@ page{
   margin-bottom: 20rpx;
 }
 .title{
-  font-size: 32rpx;
+  font-size: 36rpx;
   color: #000;
   margin-bottom: 20rpx;
+  font-weight: 500;
 }
 .content{
   color: #666;
   line-height: 52rpx;
   margin-bottom: 20rpx;
+  font-size: 32rpx;
 }
 .post{
   width: 100% !important;

+ 1 - 1
pages/index/index.wxss

@@ -447,5 +447,5 @@ scroll-view{
 }
 .jdesc{
   line-height: 48rpx;
-  letter-spacing: 4rpx;
+  letter-spacing: 2rpx;
 }

+ 8 - 2
pages/learning/learning.wxml

@@ -30,8 +30,14 @@
                   <view class="title">精品推荐   <text bindtap="more" data-id='1'>查看更多</text></view>
                   <view class="tj">
                       <navigator wx:for="{{arct}}" url="../conference/conference?id={{item.id}}" wx:if='{{index<3}}'>
-                        <image  mode="scaleToFill" src="{{item.img}}"></image>
-                        <view>{{item.name}}</view>
+                        <view class="img_view">
+                          <image  mode="scaleToFill" src="{{item.img}}"></image>
+                          <view class="date_ly">
+                              <text>{{item.begin_time}}</text>
+                              <text>{{item.journal_name}}</text>
+                          </view>
+                        </view>
+                        <view class="tj_name">{{item.name}}</view>
                         <text>{{item.desc}}</text>
                       </navigator>  
                   </view>

+ 23 - 2
pages/learning/learning.wxss

@@ -43,11 +43,31 @@ scroll-view{
 .tj navigator{
   width: 30%;
 }
+.tj .img_view{
+  position: relative;
+  height: 200rpx;
+}
 .tj image{
   width: 100%;
-  height: 200rpx;
+  height: 100%;
+}
+
+.tj .date_ly{
+  position: absolute;
+  right: 0;
+  bottom: 0;
+  z-index: 99;
+  background: rgba(0, 0, 0, 0.2);
+  width: 100%;
+  padding: 5rpx;
+}
+.tj .date_ly text{
+  color: #fff;
+  font-size: 18rpx;
+  display: block;
+  text-align: right;
 }
-.tj view{
+.tj .tj_name{
   color: #333;
   font-size: 28rpx;
   margin: 20rpx 0;
@@ -59,6 +79,7 @@ scroll-view{
     white-space: normal;
     height: 79rpx;   
     line-height: 44rpx;
+    /* letter-spacing: 2rpx; */
 }
 .tj text{
   display: block;