tanxue 2 месяцев назад
Родитель
Сommit
37923ec013

+ 13 - 10
common/styles/global/components.scss

@@ -109,7 +109,7 @@ view{box-sizing: border-box;}
 /******************** 网站组件样式 ********************/
 // 顶部菜单
 .dljt-navBar-box{
-	width: 100%;height: 140rpx;@include dljt-no-repeat-cover();
+	width: 100%;height: 120rpx;@include dljt-no-repeat-cover();
 	display: flex;align-items: center;justify-content: space-between;
 	background-image: url("@/static/images/common/dljt-navBar-bj.png");
 	position: fixed;top: 0;z-index: 3;
@@ -121,7 +121,7 @@ view{box-sizing: border-box;}
 		background-image: url("@/static/images/common/website-logo.gif");
 	}
 	.dljt-menu-box{
-		width: 60rpx;height: 44rpx;@include dljt-no-repeat-cover();
+		width: 50rpx;height: 34rpx;@include dljt-no-repeat-cover();
 		background-image: url("@/static/images/common/menu-icon.png");
 	}
 }
@@ -173,17 +173,17 @@ view{box-sizing: border-box;}
 
 // 页面box
 .dljt-page-box{
-	width: 100%;height: auto;position: relative;margin-top: 140rpx;
+	width: 100%;height: auto;position: relative;padding:120rpx 0 100rpx;
 }
 .dljt-page-box::before{
-  content: ''; width: 100%;height: 370rpx;display: block;@include dljt-no-repeat-cover(bottom);
+  content: ''; width: 100%;height: 260rpx;display: block;@include dljt-no-repeat-cover(bottom);
   background-image: url("@/static/images/index/dljt-page-bj.png");
-  position: absolute;top: 0;z-index: 1;
+  position: absolute;top: 120rpx;z-index: 1;
 }
 
 //页面标题
 .dljt-page-title{
-	 color: #fff;font-size: 32rpx;text-align: center;font-weight: bold;margin: 46rpx auto;padding-top: 46rpx;
+	 color: #fff;font-size: 32rpx;text-align: center;font-weight: bold;margin: 46rpx auto;
 }
 
 /* 导航 */
@@ -200,17 +200,20 @@ view{box-sizing: border-box;}
 .dljt-container-box{width: 100%;position: relative;z-index: 2;}
 .dljt-page-content-box{width: 92%;margin: 0 auto 60rpx;background-color: #fff;
 box-shadow: 0 1rpx 3rpx 0 #227ECE;box-sizing: border-box;padding: 4rpx 10rpx 0;}
-
+/* 无限滚动区域 */
+.dljt-scroll-view{
+	min-height: 600rpx;
+}
 
 /*左侧图片右侧内容列表区域*/
 .list-item-box{
   display: flex;margin:0 6rpx 32rpx;cursor: pointer;position: relative;
   .list-img{width: 320rpx;height: 220rpx;}
   .list-time-box{
-    width: 90rpx;height: 90rpx;background-color: rgba(0,64,194,0.7);
+    width: 80rpx;height: 80rpx;background-color: rgba(0,64,194,0.7);
     color: #fff;position: absolute;top: 0;left: 0;text-align: center;
-    .time-data{font-size: 36rpx;border-bottom: 1rpx solid #e9ffff;margin: 4rpx 10rpx;padding-bottom: 2rpx;}
-    .time-year{font-size: 18rpx;}
+    .time-data{font-size: 32rpx;border-bottom: 1rpx solid #e9ffff;margin: 4rpx 10rpx;padding-bottom: 2rpx;}
+    .time-year{font-size: 16rpx;}
   }
   .time-red-box{
     background-color: rgba(153,0,0,0.7);

+ 1 - 1
components/MtaScrollView/MtaScrollView.vue

@@ -1,6 +1,6 @@
 <template>
 	<!-- 无限滚动区域 -->
-	<scroll-view :scroll-y="true" :refresher-enabled="true" :refresher-triggered="triggered"
+	<scroll-view class="dljt-scroll-view" :scroll-y="true" :refresher-enabled="true" :refresher-triggered="triggered"
 		:refresher-threshold="100" refresher-background="transparent" @refresherrefresh="onRefresh"
 		@scrolltolower="onReachBottom" @refresherrestore="onRestore">
 		<slot :list="list"></slot>

+ 3 - 2
pages/dqgzDangjiangongzuo/dqgzDangjiangongzuo.vue

@@ -27,10 +27,11 @@
 					</template>
 				</MtaScrollViewVue>
 			</view>
+			<!-- 底部导航 -->
+			<MtaFooter></MtaFooter>
 		</view>
 		
-		<!-- 底部导航 -->
-		<MtaFooter></MtaFooter>
+		
 		<MtaTabBar></MtaTabBar>
 	</view>
 </template>