shish 3 лет назад
Родитель
Сommit
c738b725af

+ 5 - 1
hdApp/src/admin/home/components/order-item.vue

@@ -6,7 +6,7 @@
 					<image :src="info.cover" mode="aspectFit"></image>
 				</view>
 				<view class="list-msg">
-					<view style="margin-top:3upx;"><text>时间:</text>
+					<view style="margin-top:3upx;"><text>配送:</text>
 					<text>{{info.reachDate.substr(5,5)}} {{info.reachPeriod}}前</text>
 					</view>
 					<view><text>收花:</text><text>{{info.receiveUserName||''}}</text></view>
@@ -19,6 +19,10 @@
 						<text>下单:</text>
 						<text>{{info.shopAdminName}}</text>
 					</view>
+					<view style="margin-top:3upx;">
+						<text>时间:</text>
+						<text>{{info.addTime.substr(5,11)}}</text>
+					</view>
 					<view style="margin-top:3upx;">
 						<text>备注:</text>
 						<text style="overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:420upx;display:inline-block;line-height:27upx;">{{info.remark||''}}</text>

+ 1 - 1
hdApp/src/admin/order/components/detail-goods.vue

@@ -11,7 +11,7 @@
 			</view>
 			<view class="list-right">
 				<view class="price">¥{{ info.unitPrice ? parseFloat(info.unitPrice) : 0 }}</view>
-				<view class="num">X{{ info.num||0 }}</view>
+				<view class="num">X{{ info.num||0 }}{{info.unitName||'份'}}</view>
 			</view>
 		</block>
 	</view>

+ 1 - 1
hdApp/src/admin/order/components/detail-item.vue

@@ -11,7 +11,7 @@
 			</view>
 			<view class="list-right">
 				<view class="price">¥{{ info.unitPrice ? parseFloat(info.unitPrice) : 0 }}</view>
-				<view class="num">X{{ info.num||0 }}{{info.unitName}}</view>
+				<view class="num">X{{ info.num||0 }}{{info.unitName||'份'}}</view>
 			</view>
 		</block>
 	</view>