@@ -563,7 +565,7 @@ const UserBlockRegist = () => {
/>
- >
+
)}
>
);
diff --git a/src/pages/UserManage/AdminView.js b/src/pages/UserManage/AdminView.js
index acd7ab1..116fa67 100644
--- a/src/pages/UserManage/AdminView.js
+++ b/src/pages/UserManage/AdminView.js
@@ -1,5 +1,6 @@
import { Fragment, useEffect, useState } from 'react';
+import { AnimatedPageWrapper } from '../../components/common/Layout'
import CheckBox from '../../components/common/input/CheckBox';
import { Title, FormWrapper, SelectInput, BtnWrapper, TableInfo, ListCount, ListOption, TableStyle, State, ButtonClose, ModalText } from '../../styles/Components';
import Button from '../../components/common/button/Button';
@@ -292,7 +293,7 @@ function AdminView() {
{userInfo.auth_list && !userInfo.auth_list.some(auth => auth.id === 1) ? (
) : (
- <>
+
운영자 조회
@@ -492,7 +493,7 @@ function AdminView() {
- >
+
)}
>
);
diff --git a/src/pages/UserManage/AuthSetting.js b/src/pages/UserManage/AuthSetting.js
index 2a98edd..ee3a399 100644
--- a/src/pages/UserManage/AuthSetting.js
+++ b/src/pages/UserManage/AuthSetting.js
@@ -1,5 +1,6 @@
import CheckBox from '../../components/common/input/CheckBox';
+import { AnimatedPageWrapper } from '../../components/common/Layout'
import Modal from '../../components/common/modal/Modal';
import { Title, FormWrapper, SelectInput, TableInfo, ListCount, ListOption, TableStyle, BtnWrapper, ButtonClose, ModalText } from '../../styles/Components';
import Button from '../../components/common/button/Button';
@@ -168,7 +169,7 @@ const AuthSetting = () => {
{userInfo.auth_list && !userInfo.auth_list.some(auth => auth.id === authType.authoritySettingRead) ? (
) : (
- <>
+
권한 설정
{userInfo.auth_list && userInfo.auth_list.some(auth => auth.id === authType.authoritySettingUpdate) && (
@@ -270,7 +271,7 @@ const AuthSetting = () => {
/>
- >
+
)}
>
);
diff --git a/src/pages/UserManage/AuthSettingUpdate.js b/src/pages/UserManage/AuthSettingUpdate.js
index 84a97d6..7cf524a 100644
--- a/src/pages/UserManage/AuthSettingUpdate.js
+++ b/src/pages/UserManage/AuthSettingUpdate.js
@@ -2,6 +2,7 @@ import { useLocation, useNavigate } from 'react-router-dom';
import { useCallback, useEffect, useMemo, useState } from 'react';
import { useRecoilValue } from 'recoil';
import { useTranslation } from 'react-i18next';
+import { AnimatedPageWrapper } from '../../components/common/Layout';
import { authList } from '../../store/authList';
import { authType, modalTypes } from '../../assets/data';
@@ -100,7 +101,7 @@ const AuthSettingUpdate = () => {
{userInfo.auth_list && !userInfo.auth_list.some(auth => auth.id === authType.authoritySettingUpdate) ? (
) : (
- <>
+
권한 설정
@@ -148,7 +149,7 @@ const AuthSettingUpdate = () => {
- >
+
)}
>
);
diff --git a/src/pages/UserManage/CaliumRequest.js b/src/pages/UserManage/CaliumRequest.js
index 6093250..df63964 100644
--- a/src/pages/UserManage/CaliumRequest.js
+++ b/src/pages/UserManage/CaliumRequest.js
@@ -3,6 +3,7 @@ import { useRecoilValue } from 'recoil';
import { useTranslation } from 'react-i18next';
import 'react-datepicker/dist/react-datepicker.css';
+import { AnimatedPageWrapper } from '../../components/common/Layout'
import { authList } from '../../store/authList';
import {
authType,
@@ -136,7 +137,7 @@ const CaliumRequest = () => {
}
return (
- <>
+
칼리움 사용 수량 요청
{
title="히스토리"
/>
- >
+
);
};
diff --git a/src/pages/UserManage/DataInitView.js b/src/pages/UserManage/DataInitView.js
index 66ae382..f68c49c 100644
--- a/src/pages/UserManage/DataInitView.js
+++ b/src/pages/UserManage/DataInitView.js
@@ -1,6 +1,7 @@
import React, { useState, Fragment, useMemo } from 'react';
import Button from '../../components/common/button/Button';
import Loading from '../../components/common/Loading';
+import { AnimatedPageWrapper } from '../../components/common/Layout'
import {
Title,
@@ -139,7 +140,7 @@ const DataInitView = () => {
}
return (
- <>
+
데이터 초기화
@@ -227,7 +228,7 @@ const DataInitView = () => {
handleCancel={() => handleModalClose('registConfirm')}
/>
- >
+
);
};
diff --git a/src/pages/UserManage/LogView.js b/src/pages/UserManage/LogView.js
index f6be914..88e0ed2 100644
--- a/src/pages/UserManage/LogView.js
+++ b/src/pages/UserManage/LogView.js
@@ -1,5 +1,6 @@
import React, { Fragment, useCallback, useState } from 'react';
+import { AnimatedPageWrapper } from '../../components/common/Layout'
import { CommonSearchBar } from '../../components/ServiceManage';
import { Title, FormWrapper } from '../../styles/Components';
import { authType } from '../../assets/data';
@@ -51,7 +52,7 @@ const LogView = () => {
};
return (
- <>
+
사용 이력 조회
{/* 조회조건 */}
@@ -99,7 +100,7 @@ const LogView = () => {
title="상세정보"
/>
- >
+
);
};
diff --git a/src/styles/Components.js b/src/styles/Components.js
index ba46c8b..dab53c5 100644
--- a/src/styles/Components.js
+++ b/src/styles/Components.js
@@ -27,7 +27,7 @@ export const Container = styled.div`
export const HeaderContainer = styled.div`
width: 280px;
flex: 0 0 280px;
- background: #666666;
+ background: #141414;
min-height: 100vh;
align-self: stretch;
`;