Commit 04061dce authored by 崔佳豪's avatar 崔佳豪

feat: 云平台添加修改默认密码

parent 93f1dc70
Pipeline #53777 passed with stages
......@@ -6,6 +6,7 @@ import PageLoading from '@wisdom-utils/components/lib/AppLayout/components/PageL
import _ from 'lodash';
import { stringify } from 'querystring';
import { store, helpers } from '@wisdom-utils/utils';
import { ValidDefaultPWDContainer } from '@/components/Container'
class SecurityLayout extends React.Component {
state = {
isReady: false,
......@@ -70,7 +71,11 @@ class SecurityLayout extends React.Component {
if ((!isLogin && loading) || !isReady) {
return <PageLoading />;
}
return children;
return (
<ValidDefaultPWDContainer>
{children}
</ValidDefaultPWDContainer>
);
}
}
......
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