diff --git a/egovframe-template-simple-react-contribution/src/pages/admin/committee/Schedules.jsx b/egovframe-template-simple-react-contribution/src/pages/admin/committee/Schedules.jsx
index 7e9447b..1d07793 100644
--- a/egovframe-template-simple-react-contribution/src/pages/admin/committee/Schedules.jsx
+++ b/egovframe-template-simple-react-contribution/src/pages/admin/committee/Schedules.jsx
@@ -1,12 +1,50 @@
+/* eslint-disable jsx-a11y/heading-has-content */
import React, { useState, useEffect, useCallback } from 'react';
import { Link, useLocation } from 'react-router-dom';
+import styled from "styled-components";
+
+
import * as EgovNet from 'api/egovFetch';
import URL from 'constants/url';
import CODE from 'constants/code';
import { default as EgovLeftNav } from 'components/leftmenu/EgovLeftNavAdmin';
+const StyledDiv = styled.div`
+ .calendar_list table {
+ thead tr th {
+ height: auto;
+ line-height: 35px;
+ text-align: left;
+ }
+ tbody td {
+ padding: 0px 5px;
+ text-align: left;
+ font-size: 12px;
+ .day {
+ display: inline-block;
+ font-size: 14px;
+ padding-bottom: 7px;
+ }
+ .title {
+ &:link {
+ color: #647ea3;
+ }
+ &:visited {
+ color: #647ea3;
+ }
+ &::hover {
+ color: #345ef3;
+ }
+ &::active {
+ color: #345ef3;
+ }
+
+ }
+ }
+ }
+`;
function Schedules(props) {
@@ -154,7 +192,7 @@ function Schedules(props) {
if (scheduleList.length > 0) {//일정 있는 경우
return (
- {day}
{
scheduleList.map((schedule, scheduleIdx) => {
@@ -168,8 +206,9 @@ function Schedules(props) {
return (
<>
{schedule.schdulNm}
+ className="title"
+ state={{schdulId: schedule.schdulId}}
+ key={keyIdx++}>{schedule.schdulNm}
>
@@ -241,77 +280,79 @@ function Schedules(props) {
위원회 일정 관리
-
- {/* */}
-
-
- {false &&
- -
-
+ -
+
+ {(searchCondition.month + 1)}
+
+
+
+
+ {/* */}
-
-
-
-
- | 일 |
- 월 |
- 화 |
- 수 |
- 목 |
- 금 |
- 토 |
-
-
-
- {true && calendarTag}
-
-
-
+
+
+
+
+ | 일 |
+ 월 |
+ 화 |
+ 수 |
+ 목 |
+ 금 |
+ 토 |
+
+
+
+ {true && calendarTag}
+
+
+
+
{/* */}
|