Browse Source

1.调样式

guo 3 years ago
parent
commit
37be9e28f7
5 changed files with 29 additions and 12 deletions
  1. 2 1
      pages/mobile/detail.vue
  2. 3 1
      pages/mobile/index.vue
  3. 2 1
      pages/mobile/list.vue
  4. 20 8
      pages/mobile/search.vue
  5. 2 1
      pages/mobile/topTab.vue

+ 2 - 1
pages/mobile/detail.vue

@@ -35,7 +35,8 @@
 
 
 				<view class="title2">
-					<a class="table-btn" :href='item.fileUrl' target='_blank'>下载</a>
+					<a class="table-btn" :href='item.fileUrl' target='_blank'>下载</a>
+					<!-- <a class="table-btn" href='http://phone.66km.cn:8088/marketing/training/F766372514254DD6BB45D461FD67A725.pdf' download='上海接口调用规则' target='_blank'>下载</a> -->
 				</view>
 
 			</view>

+ 3 - 1
pages/mobile/index.vue

@@ -250,7 +250,8 @@
 		display: flex;
 		justify-content: space-between;
 		align-items: center;
-		z-index: 999;
+		z-index: 999;
+		border-bottom: #eeeeee 2rpx solid;
 	}
 
 	.navTitle {
@@ -396,6 +397,7 @@
 		width: 100vw;
 		min-height: 100vh;
 		background-color: rgba(0, 0, 0, 0.4);
+		
 	}
 	.siftItemBg{
 		background-color: #FFFFFF;

+ 2 - 1
pages/mobile/list.vue

@@ -273,7 +273,8 @@
 		word-wrap: break-word;
 		white-space: normal !important;
 		-webkit-line-clamp: 3;
-		-webkit-box-orient: vertical;
+		-webkit-box-orient: vertical;
+		margin: 14rpx 0;
 	}
 
 

+ 20 - 8
pages/mobile/search.vue

@@ -80,10 +80,17 @@
 				})
 			},
 			search(val) {
-				// console.log(val);
+				console.log(val);
 				this.searchValue = val
-				this.page = 1
-				this.getItemData()
+				if (this.searchValue.length != 0) {
+					this.page = 1
+					this.getItemData()
+				}
+				else{
+					this.itemArr=[];
+					this.TotalSize=''
+					this.noMoreShow = false
+				}
 			},
 			getItemData() {
 				uni.showLoading({
@@ -231,10 +238,14 @@
 		font-size: 24rpx;
 		font-weight: bold;
 		color: #999999;
-		/* 隐藏文字显示 ...不换行 */
-		overflow: hidden;
-		text-overflow: ellipsis;
-		white-space: nowrap;
+		//超过固定行数 隐藏
+		display: -webkit-box;
+		overflow: hidden;
+		text-overflow: ellipsis;
+		word-wrap: break-word;
+		white-space: normal !important;
+		-webkit-line-clamp: 3;
+		-webkit-box-orient: vertical;
 		margin: 14rpx 0;
 	}
 
@@ -246,7 +257,8 @@
 	}
 
 	.rightItem {
-		margin-left: 30rpx;
+		margin-left: 30rpx;
+		width: calc(100vw - 300rpx);
 	}
 	.noMore {
 		text-align: center;

+ 2 - 1
pages/mobile/topTab.vue

@@ -346,7 +346,8 @@
 		word-wrap: break-word;
 		white-space: normal !important;
 		-webkit-line-clamp: 3;
-		-webkit-box-orient: vertical;
+		-webkit-box-orient: vertical;
+		margin: 14rpx 0;
 	}