lilei před 2 roky
rodič
revize
03ce3c220f

+ 1 - 1
pages/stockCheck/editModal.vue

@@ -44,7 +44,7 @@
 			</view>
 		</view>
 		<!-- 冻结明细 -->
-		<freezeDetailModal v-if="showModal" :openModal="showModal" :infoData="infoData" @close="showModal=false"></freezeDetailModal>
+		<freezeDetailModal :openModal="showModal" :infoData="infoData" @close="showModal=false"></freezeDetailModal>
 	</u-mask>
 </template>
 

+ 29 - 14
pages/stockCheck/freezeDetailModal.vue

@@ -13,9 +13,9 @@
 					<text>数量</text>
 				</view>
 				 <view class="p-row" v-for="item in list" :key="item.id">
-					  <text>下单时间</text>
-					  <text>下单人员</text>
-					  <text>数量</text>
+					  <text>{{item.orderDate}}</text>
+					  <text>{{item.dealerName}}</text>
+					  <text>{{item.totalQty}}</text>
 				 </view>
 			</view>
 			<view class="product-footer">
@@ -81,33 +81,48 @@
 		width: 100%;
 		height: 100%;
 		.product-head{
-			font-size: 24rpx;
-			padding: 20upx 30upx 15upx;
-			border-bottom: 2rpx solid #eee;
+			font-size: 22rpx;
+			padding: 30upx 30upx 15upx;
 			color: #666;
+			font-weight: bold;
 		}
 		.product-con{
-			width: 78%;
+			width: 75%;
 			margin: 55% auto 0;
 			background-color: #fff;
-			border-radius: 24upx;
+			border-radius: 22upx;
 			.product-main{
 				padding: 0 30upx 20upx 30upx;
-				font-size: 24upx;
+				font-size: 22upx;
 				max-height: 30vh;
 				overflow: auto;
-				
+				> view{
+					display: flex;
+					align-items: center;
+					justify-content: space-between;
+					border-bottom: 1upx solid #E5E5E5;
+					padding: 15upx 0;
+					> text{
+						text-align: center;
+						width: 33%;
+					}
+					&:last-child{
+						border:0;
+					}
+				}
+				.p-h1{
+					color: #999;
+				}
 			}
 			.product-footer{
-				font-size: 30upx;
+				font-size: 24upx;
 				display: flex;
 				justify-content: space-between;
 				align-items: center;
 				text-align: center;
-				border-top: 1upx solid #E5E5E5;
+				border-top: 1upx solid #E5E5E5; 
 				.button-cancel{
-					color: #999;
-					border-right: 1upx solid #E5E5E5;
+					color: #00aaff;
 					flex-grow: 1;
 					padding: 20upx 0;
 				}