Commit 698856ee authored by 邓晓峰's avatar 邓晓峰

fix: 修复容器布局高度

parent 92b2bfff
Pipeline #34681 passed with stages
in 23 minutes 8 seconds
...@@ -87,8 +87,8 @@ const appReducer = (state = initialState, action) => { ...@@ -87,8 +87,8 @@ const appReducer = (state = initialState, action) => {
}, },
); );
// eslint-disable-next-line global-require,no-underscore-dangle // eslint-disable-next-line global-require,no-underscore-dangle
// window.__INITIAL_STATE__.mdi = 'SDI'; window.__INITIAL_STATE__.mdi = 'SDI';
// window.__INITIAL_STATE__.menu = 'banner-left'; window.__INITIAL_STATE__.menu = 'banner-left';
window.globalConfig = AppConfig(window.__INITIAL_STATE__); window.globalConfig = AppConfig(window.__INITIAL_STATE__);
// eslint-disable-next-line no-undef // eslint-disable-next-line no-undef
......
...@@ -573,10 +573,10 @@ const BasicLayout = props => { ...@@ -573,10 +573,10 @@ const BasicLayout = props => {
</Tabs> </Tabs>
</div> </div>
<div className={layoutStyles['ant-pro-grid-content']}> <div className='ant-pro-grid-content'>
<div className="ant-pro-grid-content-children"> <div className="ant-pro-grid-content-children">
<div className={layoutStyles['ant-pro-page-container-children-content']}> <div className={layoutStyles['ant-pro-page-container-children-content']}>
<div id="micro-container" className="subapp-container" style={{height: '100%'}}/> <div id="micro-container" className="subapp-container" style={{height: '89.8vh', position: 'relative', top: '64px'}}/>
</div> </div>
</div> </div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment