From 2504ff3e6e7143d3afba45527ef00b173376f7f8 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期一, 14 二月 2022 11:27:26 +0800 Subject: [PATCH] 2022-02-14 --- src/tabviews/zshare/normalTable/index.jsx | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/src/tabviews/zshare/normalTable/index.jsx b/src/tabviews/zshare/normalTable/index.jsx index bc497d5..ee502f0 100644 --- a/src/tabviews/zshare/normalTable/index.jsx +++ b/src/tabviews/zshare/normalTable/index.jsx @@ -216,7 +216,11 @@ } } - _columns.push(cell) + if (item.type === 'action' && item.position === 'left') { + _columns.unshift(cell) + } else { + _columns.push(cell) + } }) if (rowspans.length === 0) { -- Gitblit v1.8.0