shish há 1 dia atrás
pai
commit
47be792907

+ 9 - 6
ghsApp/src/admin/home/components/OrderItem.vue

@@ -191,10 +191,10 @@
           <text class="print-log-sn-label">打印机编号</text>
           <text class="print-log-sn-value">{{ printLogData.printSn || '-' }}</text>
         </view>
-        <view class="print-log-head">打印时间 / 打印订单ID</view>
+        <view class="print-log-head">打印时间 / 打印ID</view>
         <view class="print-log-list" v-if="printLogData.list && printLogData.list.length">
           <view class="print-log-item" v-for="(log, idx) in printLogData.list" :key="log.feieOrderId + '_' + idx">
-            <view class="print-log-time">{{ log.printTimeText || '等待回调' }}</view>
+            <view class="print-log-time">{{ log.printTimeText || '待打印' }}</view>
             <view class="print-log-order-id">{{ log.feieOrderId }}</view>
           </view>
         </view>
@@ -859,13 +859,13 @@ export default {
 }
 
 .print-log-sn-label {
-  font-size: 30upx;
+  font-size: 36upx;
   color: #333;
   flex-shrink: 0;
 }
 
 .print-log-sn-value {
-  font-size: 34upx;
+  font-size: 36upx;
   color: #333;
   font-weight: bold;
   margin-left: 16upx;
@@ -873,7 +873,7 @@ export default {
 
 .print-log-head {
   color: #3385ff;
-  font-size: 33upx;
+  font-size: 36upx;
   margin-bottom: 20upx;
 }
 
@@ -895,7 +895,7 @@ export default {
 
 .print-log-order-id {
   color: #2e7d32;
-  font-size: 28upx;
+  font-size: 29upx;
   word-break: break-all;
 }
 
@@ -912,6 +912,9 @@ export default {
     width: 210upx;
     height: 80upx;
     line-height: 80upx;
+    padding: 0;
+    box-sizing: border-box;
+    text-align: center;
     font-size: 29upx;
   }
 }

+ 9 - 6
ghsApp/src/pagesOrder/detail.vue

@@ -645,10 +645,10 @@
 					<text class="print-log-sn-label">打印机编号</text>
 					<text class="print-log-sn-value">{{ printLogData.printSn || '-' }}</text>
 				</view>
-				<view class="print-log-head">打印时间 / 打印订单ID</view>
+				<view class="print-log-head">打印时间 / 打印ID</view>
 				<view class="print-log-list" v-if="printLogData.list && printLogData.list.length">
 					<view class="print-log-item" v-for="(log, idx) in printLogData.list" :key="log.feieOrderId + '_' + idx">
-						<view class="print-log-time">{{ log.printTimeText || '等待回调' }}</view>
+						<view class="print-log-time">{{ log.printTimeText || '待打印'}}</view>
 						<view class="print-log-order-id">{{ log.feieOrderId }}</view>
 					</view>
 				</view>
@@ -2537,13 +2537,13 @@ export default {
 }
 
 .print-log-sn-label {
-	font-size: 30upx;
+	font-size: 36upx;
 	color: #333;
 	flex-shrink: 0;
 }
 
 .print-log-sn-value {
-	font-size: 34upx;
+	font-size: 36upx;
 	color: #333;
 	font-weight: bold;
 	margin-left: 16upx;
@@ -2551,7 +2551,7 @@ export default {
 
 .print-log-head {
 	color: #3385ff;
-	font-size: 33upx;
+	font-size: 36upx;
 	margin-bottom: 20upx;
 }
 
@@ -2573,7 +2573,7 @@ export default {
 
 .print-log-order-id {
 	color: #2e7d32;
-	font-size: 28upx;
+	font-size: 29upx;
 	word-break: break-all;
 }
 
@@ -2592,6 +2592,9 @@ export default {
 		width: 210upx;
 		height: 80upx;
 		line-height: 80upx;
+		padding: 0;
+		box-sizing: border-box;
+		text-align: center;
 		font-size: 29upx;
 	}
 }