Skip to content

Commit

Permalink
Merge pull request #84 from Kusitms-29th-ASAP/fix/#82
Browse files Browse the repository at this point in the history
[Fix] QA 1차
  • Loading branch information
yyypearl authored May 22, 2024
2 parents 77f2261 + 75ff642 commit dc6cdf8
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 84 deletions.
122 changes: 61 additions & 61 deletions src/data/mypageData.ts
Original file line number Diff line number Diff line change
@@ -1,72 +1,72 @@
export const signData : string[]= [
"학교에서 전자서명이 필요한 경우,\n최초 1회 전자서명을 등록하셔야 합니다.",
"등록된 전자서명은 실제 서명과 동일한\n효력을 갖습니다.",
"서명은 제출자 확인용으로 사용하며,\n이외의 용도로는 활용되지 않습니다.",
"기타 자세한 내용은 이용약관 및\n개인정보처리방침에 따라 동의합니다.",
export const signData: string[] = [
"학교에서 전자서명이 필요한 경우,\n최초 1회 전자서명을 등록하셔야 합니다.",
"등록된 전자서명은 실제 서명과 동일한\n효력을 갖습니다.",
"서명은 제출자 확인용으로 사용하며,\n이외의 용도로는 활용되지 않습니다.",
"기타 자세한 내용은 이용약관 및\n개인정보처리방침에 따라 동의합니다.",
];

export interface Docs {
id: number;
content1: string;
content2: string;
grade: string;
class: string;
number: string;
name: string;
reason: string;
date: string;
guardian: string;
id: number;
content1: string;
content2: string;
grade: string;
class: string;
number: string;
name: string;
reason: string;
date: string;
guardian: string;
}

export const docsData : Docs[] = [
{
id: 1,
content1: "병결",
content2: "배가아프고 위와같은 이유로 저렇고 그렇고",
grade: "3학년",
class: "4반",
number: "2번",
name: "김동우",
reason: "감기몸살로 인해 질병결석을 했습니다.",
date: "2024.05.12",
guardian: "김규리",
},
{
id: 2,
content1: "경조사",
content2: "배가아프고 위와같은 이유로 저렇고 그렇고",
grade: "4학년",
class: "2반",
number: "7번",
name: "오민지",
reason: "감기몸살",
date: "2024.05.12",
guardian: "유진주",
},
{
id: 2,
content1: "경조사",
content2: "배가아프고 위와같은 이유로 저렇고 그렇고",
grade: "6학년",
class: "2반",
number: "3번",
name: "심규민",
reason: "감기몸살",
date: "2024.05.12",
guardian: "윤소민",
},
export const docsData: Docs[] = [
{
id: 1,
content1: "병결",
content2: "배가아프고 위와같은 이유로 저렇고 그렇고",
grade: "3학년",
class: "7반",
number: "2번",
name: "김동우",
reason: "감기몸살로 인해 질병결석을 했습니다.",
date: "2024.05.12",
guardian: "김규리",
},
{
id: 2,
content1: "경조사",
content2: "배가아프고 위와같은 이유로 저렇고 그렇고",
grade: "4학년",
class: "2반",
number: "7번",
name: "오민지",
reason: "감기몸살",
date: "2024.05.12",
guardian: "유진주",
},
{
id: 2,
content1: "경조사",
content2: "배가아프고 위와같은 이유로 저렇고 그렇고",
grade: "6학년",
class: "2반",
number: "3번",
name: "심규민",
reason: "감기몸살",
date: "2024.05.12",
guardian: "윤소민",
},
];

export interface ChildrenList {
name: string;
school: string;
grade: number;
class: number;
birth: string;
allergy: string[];
name: string;
school: string;
grade: number;
class: number;
birth: string;
allergy: string[];
}

export const childrenListData : ChildrenList[] = [
export const childrenListData: ChildrenList[] = [
{
name: "김동우",
school: "양원숲초등학교",
Expand All @@ -89,6 +89,6 @@ export const childrenListData : ChildrenList[] = [
grade: 6,
class: 5,
birth: "2014년 3월 1일",
allergy: ["닭고기","우유"],
allergy: ["닭고기", "우유"],
},
];
];
28 changes: 5 additions & 23 deletions src/data/schoolData.ts
Original file line number Diff line number Diff line change
@@ -1,37 +1,19 @@
export const classAlbumData = [
{
id: 1,
title: "제목제목",
date: "2024.04.26",
title: "과학창의경진대회",
date: "2024.05.07",
src: "/assets/school/album1.svg",
},
{
id: 2,
title: "제목제목",
date: "2024.04.26",
title: "어린이날맞이 현장",
date: "2024.05.04",
src: "/assets/school/album2.svg",
},
{
id: 3,
title: "제목제목",
date: "2024.04.26",
src: "/assets/school/album3.svg",
},
{
id: 4,
title: "제목제목",
date: "2024.04.26",
src: "/assets/school/album1.svg",
},
{
id: 5,
title: "제목제목",
date: "2024.04.26",
src: "/assets/school/album2.svg",
},
{
id: 6,
title: "제목제목",
title: "학급회의",
date: "2024.04.26",
src: "/assets/school/album3.svg",
},
Expand Down

0 comments on commit dc6cdf8

Please sign in to comment.