Browse Source

订单为空时显示

DELL 3 years ago
parent
commit
958b80827c
1 changed files with 21 additions and 1 deletions
  1. 21 1
      packagePrize/ticket/index.vue

+ 21 - 1
packagePrize/ticket/index.vue

@@ -36,7 +36,11 @@
 			</view>
 		</view>
 		<view class="flex empty" v-if="!list.length">
-			<u-empty text="数据为空" mode="order" />
+			<view class="center">
+				<image class="center-img" src="https://mp-public-1310078123.cos.ap-shanghai.myqcloud.com/v2/nodata_3.png" mode=""></image>
+				<view class="center-font">暂无盲票</view>
+			</view>
+			<!-- <u-empty text="数据为空" mode="order" /> -->
 		</view>
 		</view>
 	</view>
@@ -243,5 +247,21 @@
 
 	.empty {
 		height: 60vh;
+		
+		.center {
+			text-align: center;
+		
+			&-img {
+				width: 228rpx;
+				height: 320rpx;
+			}
+		
+			&-font {
+				font-size: 30rpx;
+				font-weight: 400;
+				color: #999999;
+				margin-bottom: 250rpx;
+			}
+		}
 	}
 </style>