Browse Source

完善日志信息打印,条码去除多余字符

mengshunguo 1 tháng trước cách đây
mục cha
commit
11d3ceadbd
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      SCADA_DAQ/Customer/UctFrmMain.xaml.cs

+ 1 - 1
SCADA_DAQ/Customer/UctFrmMain.xaml.cs

@@ -89,7 +89,7 @@ namespace SCADA_DAQ.Customer
             string barCode = null;
             if (e.Barcode.Substring(0, 6) == "QRCode")
             {
-                barCode = e.Barcode.Substring(6, e.Barcode.Length - 6).Trim();
+                barCode = e.Barcode.Substring(6, e.Barcode.Length - 6).Trim(); 
                 Log.Info($"收到条码{barCode}");
             }
             else