From c7c4a32d5aca220fb43be1e7ec22554b04546278 Mon Sep 17 00:00:00 2001 From: ssc <273702440@qq.com> Date: Thu, 25 May 2023 19:13:45 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=A4=96=E7=BD=AE=E8=A1=A8=E5=8D=95tab?= =?UTF-8?q?=E6=9D=A5=E5=9B=9E=E5=88=87=E6=8D=A2=E5=8F=98=E9=87=8F=E6=B1=A1?= =?UTF-8?q?=E6=9F=93=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/plugin/workflow/mixins/ex-form.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/views/plugin/workflow/mixins/ex-form.js b/src/views/plugin/workflow/mixins/ex-form.js index b874c04..e5e1da5 100644 --- a/src/views/plugin/workflow/mixins/ex-form.js +++ b/src/views/plugin/workflow/mixins/ex-form.js @@ -137,9 +137,11 @@ export default { if (c.pattern) c.pattern = new RegExp(col.pattern) }) } - - values.push(col) + col.display = true + } else { + col.display = false } + values.push(col) }) return { column: values,