From 00fa06a2747aa8a20f3a31fa9efaaab5a21cd7d3 Mon Sep 17 00:00:00 2001 From: weifashi <605403358@qq.com> Date: Fri, 28 Jul 2023 17:09:21 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E4=BF=AE=E5=A4=8D=E6=89=93?= =?UTF-8?q?=E5=BC=80okr=E6=96=B9=E6=B3=95=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/assets/js/store/actions.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/resources/assets/js/store/actions.js b/resources/assets/js/store/actions.js index 3c1a564f6..bc1c4ef5f 100644 --- a/resources/assets/js/store/actions.js +++ b/resources/assets/js/store/actions.js @@ -3442,13 +3442,18 @@ export default { * @param dispatch * @param link_id */ - openOkr({state, dispatch}, link_id) { + openOkr({state}, link_id) { if (link_id > 0) { state.okrWindow = { type: 'okrDetails', show: true, id: link_id }; + setTimeout(()=>{ + state.okrWindow.show = false; + state.okrWindow.id = 0; + },10) } + }, }