File tree Expand file tree Collapse file tree
laundry_owner/frontend/src/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,6 +18,14 @@ const ShopMenu = ({menuIndex}) => {
1818 세탁소 관리
1919 </ div >
2020 < List className = { cx ( 'shopMenuList' ) } >
21+ < ListItem
22+ alignItems = { "center" }
23+ button
24+ selected = { menuIndex === 0 }
25+ onClick = { ( ) => navigatePage ( "orderManagement" ) }
26+ >
27+ 주문 관리
28+ </ ListItem >
2129 < ListItem
2230 alignItems = { "center" }
2331 button
@@ -41,33 +49,40 @@ const ShopMenu = ({menuIndex}) => {
4149 >
4250 리뷰 관리
4351 </ ListItem >
52+ < ListItem
53+ button
54+ selected = { menuIndex === 4 }
55+ onClick = { ( ) => navigatePage ( 'chatList' ) }
56+ >
57+ 채팅방 목록
58+ </ ListItem >
4459 </ List >
4560 < div className = { cx ( 'shopMenuTitle' ) } >
4661 통계
4762 </ div >
4863 < List >
4964 < ListItem
5065 button
51- selected = { menuIndex === 4 }
66+ selected = { menuIndex === 5 }
5267 onClick = { ( ) => navigatePage ( 'hourlySales' ) }
5368 >
5469 시간별 매출
5570 </ ListItem >
5671 < ListItem
5772 button
58- selected = { menuIndex === 5 }
73+ selected = { menuIndex === 6 }
5974 >
6075 시간별 주문량
6176 </ ListItem >
6277 < ListItem
6378 button
64- selected = { menuIndex === 6 }
79+ selected = { menuIndex === 7 }
6580 >
6681 위치별 매출
6782 </ ListItem >
6883 < ListItem
6984 button
70- selected = { menuIndex === 7 }
85+ selected = { menuIndex === 8 }
7186 >
7287 위치별 주문량
7388 </ ListItem >
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ class ChatListView extends React.Component {
129129 return (
130130 < div className = { cx ( 'defaultBackground' ) } >
131131 < DefaultHeader title = { '채팅방 목록' } />
132- < DefaultMainBody >
132+ < DefaultMainBody menuIndex = { 4 } >
133133 < ChatListTable
134134 chatRoomList = { chatRoomList }
135135 setModalOpen = { this . setModalOpen }
You can’t perform that action at this time.
0 commit comments