Przeglądaj źródła

feat: 销售订单和采购订单的对账单详情表格固定序号和合计金额

liujt 9 miesięcy temu
rodzic
commit
13e57809e3

+ 4 - 2
src/views/purchasingManage/purchaseOrder/accountstatement/components/inventoryTable.vue

@@ -122,7 +122,8 @@
               label: '序号',
               type: 'index',
               columnKey: 'index',
-              align: 'center'
+              align: 'center',
+              fixed: 'left'
             },
             {
               minWidth: 130,
@@ -248,7 +249,8 @@
               prop: 'discountTotalPrice',
               label: '合计金额',
               slot: 'discountTotalPrice',
-              align: 'center'
+              align: 'center',
+              fixed: 'right'
             }
             // {
             //   minWidth: 100,

+ 5 - 4
src/views/saleManage/saleOrder/accountstatement/components/inventoryTable.vue

@@ -105,6 +105,7 @@ export default {
             type: 'index',
             columnKey: 'index',
             align: 'center',
+            fixed: 'left'
           },
           {
             minWidth: 130,
@@ -259,8 +260,8 @@ export default {
             label: '合计金额',
             slot: 'totalPrice',
             align: 'center',
-            show:j.subType==11
-
+            show:j.subType==11,
+            fixed: 'right'
           },
           {
             minWidth: 120,
@@ -268,8 +269,8 @@ export default {
             label: '合计金额',
             slot: 'discountTotalPrice',
             align: 'center',
-            show:j.subType!=11
-
+            show:j.subType!=11,
+            fixed: 'right'
           },