Skip to content

Commit

Permalink
fix : user name
Browse files Browse the repository at this point in the history
  • Loading branch information
Shin-Jae-Yoon committed Apr 28, 2022
1 parent 04c7941 commit 018a1df
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 21 deletions.
6 changes: 3 additions & 3 deletions project/build/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"files": {
"main.css": "/static/css/main.a72b72c5.css",
"main.js": "/static/js/main.04034f8c.js",
"main.js": "/static/js/main.72cc9043.js",
"static/js/787.ec704a7a.chunk.js": "/static/js/787.ec704a7a.chunk.js",
"static/media/author.png": "/static/media/author.8e5f8a624afd65055842.png",
"static/media/lion.png": "/static/media/lion.98ec9e35a835021d2037.png",
"index.html": "/index.html",
"main.a72b72c5.css.map": "/static/css/main.a72b72c5.css.map",
"main.04034f8c.js.map": "/static/js/main.04034f8c.js.map",
"main.72cc9043.js.map": "/static/js/main.72cc9043.js.map",
"787.ec704a7a.chunk.js.map": "/static/js/787.ec704a7a.chunk.js.map"
},
"entrypoints": [
"static/css/main.a72b72c5.css",
"static/js/main.04034f8c.js"
"static/js/main.72cc9043.js"
]
}
2 changes: 1 addition & 1 deletion project/build/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"/><title>대리점 휴대폰 번호 조회</title><script defer="defer" src="/static/js/main.04034f8c.js"></script><link href="/static/css/main.a72b72c5.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"/><title>대리점 휴대폰 번호 조회</title><script defer="defer" src="/static/js/main.72cc9043.js"></script><link href="/static/css/main.a72b72c5.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>

Large diffs are not rendered by default.

Large diffs are not rendered by default.

26 changes: 13 additions & 13 deletions project/src/routers/PermissionPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ function PermissionPage(props) {
<h3>관리자 페이지입니다.</h3>
<br></br>
<p>
직원 관리와 고객 관리가 가능합니다.
체인점 관리와 고객 관리가 가능합니다.
<br></br>
직원 권한 변경, 고객 번호 추가, 삭제
체인점 권한 변경, 고객 번호 추가, 삭제
<br></br>
작업 이후{' '}
<strong style={{color: 'blue'}}>
Expand Down Expand Up @@ -118,7 +118,7 @@ function PermissionPage(props) {
paddingRight: '40px',
}}
onClick={onWorkerHandler}>
직원 관리
체인점 관리
</Button>
</div>

Expand Down Expand Up @@ -156,15 +156,15 @@ function WorkerState(props) {
<div className="subcontent">
<div className="container white-box add">
<div className="worker">
<h2>직원 관리</h2>
<h2>체인점 관리</h2>
<div className="workerInfo" style={{overflow: 'auto'}}>
<div>
<Table responsive="lg">
<thead style={{textAlign: 'center'}}>
<tr>
<th></th>
<th>직원 이름</th>
<th>직원 아이디</th>
<th>체인점 이름</th>
<th>체인점 아이디</th>
<th>현재 권한</th>
<th>등급 변경</th>
</tr>
Expand Down Expand Up @@ -204,8 +204,8 @@ function WorkerState(props) {
.then(
() => {
alert(
'직원의 권한이 수정되었습니다.\n' +
'갱신하려면 "직원 관리" 버튼을 다시 누르세요.'
'체인점의 권한이 수정되었습니다.\n' +
'갱신하려면 "체인점 관리" 버튼을 다시 누르세요.'
);
}
)
Expand Down Expand Up @@ -238,8 +238,8 @@ function WorkerState(props) {
.then(
() => {
alert(
'직원의 권한이 수정되었습니다.\n' +
'갱신하려면 "직원 관리" 버튼을 다시 누르세요.'
'체인점의 권한이 수정되었습니다.\n' +
'갱신하려면 "체인점 관리" 버튼을 다시 누르세요.'
);
}
)
Expand All @@ -251,7 +251,7 @@ function WorkerState(props) {
}
);
}}>
직원
체인점
</Dropdown.Item>
<Dropdown.Item
onClick={(
Expand All @@ -272,8 +272,8 @@ function WorkerState(props) {
.then(
() => {
alert(
'직원의 권한이 수정되었습니다.\n' +
'갱신하려면 "직원 관리" 버튼을 다시 누르세요.'
'체인점의 권한이 수정되었습니다.\n' +
'갱신하려면 "체인점 관리" 버튼을 다시 누르세요.'
);
}
)
Expand Down

0 comments on commit 018a1df

Please sign in to comment.