shish 3 лет назад
Родитель
Сommit
58cbff4810
1 измененных файлов с 13 добавлено и 6 удалено
  1. 13 6
      ghsApp/src/pagesStorehouse/allot/inSelectItem.vue

+ 13 - 6
ghsApp/src/pagesStorehouse/allot/inSelectItem.vue

@@ -6,16 +6,23 @@
 		</view>
 		</view>
 		<view class="details-main">
 		<view class="details-main">
 			<view class="item-header">
 			<view class="item-header">
-				<text class="name">{{ info.addTime.substr(5,11) }}</text><text v-if="info.check == 1" style="position:absolute;right:60upx;color:green;font-weight:bold;">已盘点</text>
+				<text class="name">日期:{{ info.addTime.substr(5,11) }}</text><text v-if="info.check == 1" style="position:absolute;right:60upx;color:green;font-weight:bold;">已盘点</text>
 			</view>
 			</view>
 			<view class="item-row">
 			<view class="item-row">
-				<view class="orderSn">{{info.orderSn}}</view>
+				<view class="orderSn">编号:{{info.orderSn}}</view>
 			</view>
 			</view>
 			<view class="item-row">
 			<view class="item-row">
-				<view class="mark">{{ info.status == 1 ?'待入库': info.status == 2 ?'已入库':'已取消'}}</view>
+				<view class="mark">状态:{{ info.status == 1 ?'待入库': info.status == 2 ?'已入库':'已取消'}}</view>
 			</view>
 			</view>
 			<view class="item-row">
 			<view class="item-row">
-				<view class="price">¥{{ parseFloat(info.price) }}</view>
+				<view class="mark">
+					数量:
+					<text v-if="info.bigNum>0">{{info.bigNum}}扎</text>
+					<text v-if="info.smallNum>0">{{info.smallNum}}支</text>
+				</view>
+			</view>
+			<view class="item-row">
+				<view class="price">成本:¥{{ parseFloat(info.price) }}</view>
 				<view class="price" style="border:1upx solid #67a0f7;border-radius:10upx;font-weight:normal;color:#3385FF;font-size:32upx;width:180upx;height:80upx;justify-content:center;" @click.stop="goToDetai(info)">查看明细</view>
 				<view class="price" style="border:1upx solid #67a0f7;border-radius:10upx;font-weight:normal;color:#3385FF;font-size:32upx;width:180upx;height:80upx;justify-content:center;" @click.stop="goToDetai(info)">查看明细</view>
 			</view>
 			</view>
 		</view>
 		</view>
@@ -92,12 +99,12 @@ export default {
 		.orderSn{
 		.orderSn{
 			font-size: 28upx;
 			font-size: 28upx;
 			font-weight: 400;
 			font-weight: 400;
-			color: #666666;
+			color: #333333;
 		}
 		}
 		.mark {
 		.mark {
 			font-size: 28upx;
 			font-size: 28upx;
 			font-weight: 400;
 			font-weight: 400;
-			color: #666666;
+			color: #333333;
 		}
 		}
 		.price {
 		.price {
 			display: flex;
 			display: flex;