From 9617d4a95093be4d25572d398c434a7746716f3f Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期六, 09 七月 2022 22:45:34 +0800 Subject: [PATCH] 2022-07-09 --- src/templates/zshare/verifycard/index.jsx | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/templates/zshare/verifycard/index.jsx b/src/templates/zshare/verifycard/index.jsx index a0ba650..1d3e35f 100644 --- a/src/templates/zshare/verifycard/index.jsx +++ b/src/templates/zshare/verifycard/index.jsx @@ -597,7 +597,7 @@ let verifyInter = card.intertype === 'system' || (card.intertype === 'custom' && card.procMode === 'system') ? 'system' : 'inner' this.setState({ - activeKey: verifyInter === 'system' ? 'base' : 'tip', + activeKey: verifyInter === 'system' || card.intertype === 'inner' ? 'base' : 'tip', verifyInter: verifyInter, setting: config.setting || {}, verify: _verify, @@ -1498,7 +1498,7 @@ return ( <div id="verify-card-box-tab"> <Tabs activeKey={activeKey} className="verify-card-box" onChange={this.changeTab}> - {verifyInter === 'system' ? <TabPane tab={ + {verifyInter === 'system' || card.intertype === 'inner' ? <TabPane tab={ <span> 鍩虹楠岃瘉 {verify.default === 'false' ? <span className="count-tip"><ExclamationOutlined style={{color: 'orange'}}/></span> : null} -- Gitblit v1.8.0