Quellcode durchsuchen

fix: 数字调整

xyh vor 2 Jahren
Ursprung
Commit
ef044879de

+ 7 - 1
packages/app/src/pages/purchase-order/table/index.tsx

@@ -19,7 +19,13 @@ const columns: ColumnsType<ReceiveListData> = [
   {title: '物料编号', dataIndex: 'wllbCode', key: 'wllbCode', width: MIDDLE_TABLE_WIDTH},
   {title: '物料名称', dataIndex: 'materialName', key: 'materialName', width: HUGE_TABLE_WIDTH},
   {title: '供应商名称', dataIndex: 'supplierName', key: 'supplierName', width: LARGE_TABLE_WIDTH},
-  {title: '到货数量', dataIndex: 'arrivalNum', key: 'arrivalNum', width: SMALL_TABLE_WIDTH},
+  {
+    title: '到货数量',
+    dataIndex: 'arrivalNum',
+    key: 'arrivalNum',
+    width: SMALL_TABLE_WIDTH,
+    align: 'right',
+  },
   {title: '到货时间', dataIndex: 'arrivalTime', key: 'arrivalTime', width: NORMAL_TABLE_WIDTH},
   {
     title: '状态',

+ 1 - 0
packages/app/src/pages/raw-in-stream/table/index.tsx

@@ -50,6 +50,7 @@ const columns: ColumnsType<WarehousingListData> = [
     dataIndex: 'capacity',
     key: 'capacity',
     width: SMALL_TABLE_WIDTH,
+    align: 'right',
   },
   {
     title: '库位名称',