diff --git a/components/apolloTable/component/DragFixed.tsx b/components/apolloTable/component/DragFixed.tsx index a3a0b4e60e3f3ce82660112f902cf51151b6c6f9..670ef151ce661bfd05c3f255c706c75e79f80cba 100644 --- a/components/apolloTable/component/DragFixed.tsx +++ b/components/apolloTable/component/DragFixed.tsx @@ -139,7 +139,7 @@ const DragFixed = (props: any) => { cachedCols[item.columnName] = { ...cachedCols[item.columnName], fixed: item.fixed, - orderNo: item.orderNo, + // orderNo: item.orderNo, }; saveCache({ tableId, data: cachedCols }); } diff --git a/components/apolloTable/component/DragSorted.tsx b/components/apolloTable/component/DragSorted.tsx index aa156a72052e4fa6dac6e2fd5c8738f7b3b36d13..6e557baa866e9724aa5335ec4c7b7068326438db 100644 --- a/components/apolloTable/component/DragSorted.tsx +++ b/components/apolloTable/component/DragSorted.tsx @@ -177,7 +177,7 @@ const DragSorted = (props: any) => { newColumns.map((item: any) => { cachedCols[item.columnName] = { ...cachedCols[item.columnName], - orderNo: item.orderNo, + // orderNo: item.orderNo, fixed: item.fixed, }; }); diff --git a/components/apolloTable/utils/memCols.ts b/components/apolloTable/utils/memCols.ts index 5b741008c730a4b784176047cd6dff0219d74a05..f6b554d396135b64ffde91186700ee4a410c782e 100644 --- a/components/apolloTable/utils/memCols.ts +++ b/components/apolloTable/utils/memCols.ts @@ -118,7 +118,7 @@ export const getFormatColumns = (columns: ColumnProps[], cachedFeAttr: boolean, width: item.width, align: item.align, fixed: item.fixed, - orderNo: item.orderNo, + // orderNo: item.orderNo, }; } return { @@ -134,7 +134,7 @@ export const getFormatColumns = (columns: ColumnProps[], cachedFeAttr: boolean, width: item.width, align: item.align, fixed: item.fixed, - orderNo: item.orderNo, + // orderNo: item.orderNo, }; }); if (columns.length > 0) {