PsHooN7979
08-13
240813 박세훈 게시판 오류 수정
@c0b10145043749954b06a68a1d1d899491975c02
--- client/views/pages/teacher/Board.vue
+++ client/views/pages/teacher/Board.vue
... | ... | @@ -1,87 +1,87 @@ |
1 | 1 |
<template> |
2 |
- <div class="title-box flex justify-between mb40"> |
|
3 |
- <p class="title">게시판</p> |
|
4 |
- <select v-model="sclsId" @change="handleClassId()"> |
|
5 |
- <option |
|
6 |
- v-for="(item, index) in classList" |
|
7 |
- :key="index" |
|
8 |
- :value="item.sclsId" |
|
9 |
- > |
|
10 |
- {{ item.sclsNm }} |
|
11 |
- </option> |
|
12 |
- </select> |
|
13 |
- </div> |
|
14 |
- <div class="search-wrap flex justify-end mb20"> |
|
15 |
- <select v-model="selectedSearchOption" class="mr10 data-wrap"> |
|
16 |
- <option value="bbsTtl">제목</option> |
|
17 |
- <option value="bbsCnt">내용</option> |
|
18 |
- <option value="userNm">작성자</option> |
|
19 |
- <option value="bbsCls">카테고리</option> |
|
20 |
- </select> |
|
21 |
- <input |
|
22 |
- v-model="searchKeyword" |
|
23 |
- type="text" |
|
24 |
- placeholder="검색하세요." |
|
25 |
- @keyup.enter="boardDataSearch" |
|
26 |
- /> |
|
27 |
- <button type="button" @click="boardDataSearch()" title="게시글 검색"> |
|
28 |
- <img src="../../../resources/img/look_t.png" alt="" /> |
|
29 |
- </button> |
|
30 |
- </div> |
|
31 |
- <div class="table-wrap"> |
|
32 |
- <table> |
|
33 |
- <thead> |
|
34 |
- <td>No.</td> |
|
35 |
- <td>제목</td> |
|
36 |
- <td>카테고리</td> |
|
37 |
- <td>작성자</td> |
|
38 |
- <td>등록일</td> |
|
39 |
- </thead> |
|
40 |
- <tbody> |
|
41 |
- <tr |
|
42 |
- v-for="(item, index) in dataList" |
|
43 |
- :key="item.id" |
|
44 |
- :class="{ 'selected-row': selectedRow == item.dataList }" |
|
45 |
- @click="[goToPage('noticeDetail'), selectBoardList(item)]" |
|
46 |
- > |
|
47 |
- <td>{{ createNo(index) }}</td> |
|
48 |
- <td>{{ item.bbsTtl }}</td> |
|
49 |
- <td>{{ item.bbsCls }}</td> |
|
50 |
- <td>{{ userNm }}</td> |
|
51 |
- <td>{{ item.bbsTm.substr(0, 16) }}</td> |
|
52 |
- </tr> |
|
53 |
- </tbody> |
|
54 |
- </table> |
|
55 |
- <article |
|
56 |
- class="table-pagination flex justify-center align-center mb20 mt30" |
|
57 |
- style="gap: 10px" |
|
58 |
- > |
|
59 |
- <button @click="goToPagination(currentPage - 1)"> |
|
60 |
- <img src="../../../resources/img/btn27_90t_normal.png" alt="" /> |
|
61 |
- </button> |
|
62 |
- <button |
|
63 |
- v-for="page in paginationButtons" |
|
64 |
- :key="page" |
|
65 |
- @click="goToPagination(page - 1)" |
|
66 |
- :class="{ 'selected-btn': currentPage === page - 1 }" |
|
67 |
- > |
|
68 |
- {{ page }} |
|
69 |
- </button> |
|
70 |
- <button @click="goToPagination(currentPage + 1)"> |
|
71 |
- <img src="../../../resources/img/btn28_90t_normal.png" alt="" /> |
|
72 |
- </button> |
|
73 |
- </article> |
|
74 |
- <div class="flex justify-end"> |
|
75 |
- <button |
|
76 |
- type="button" |
|
77 |
- title="글쓰기" |
|
78 |
- class="new-btn" |
|
79 |
- @click="goToPage('noticeInsert')" |
|
80 |
- > |
|
81 |
- 글쓰기 |
|
82 |
- </button> |
|
2 |
+ <div class="title-box flex justify-between mb40"> |
|
3 |
+ <p class="title">게시판</p> |
|
4 |
+ <select v-model="sclsId" @change="handleClassId()"> |
|
5 |
+ <option |
|
6 |
+ v-for="(item, index) in classList" |
|
7 |
+ :key="index" |
|
8 |
+ :value="item.sclsId" |
|
9 |
+ > |
|
10 |
+ {{ item.sclsNm }} |
|
11 |
+ </option> |
|
12 |
+ </select> |
|
83 | 13 |
</div> |
84 |
- </div> |
|
14 |
+ <div class="search-wrap flex justify-end mb20"> |
|
15 |
+ <select v-model="selectedSearchOption" class="mr10 data-wrap"> |
|
16 |
+ <option value="bbsTtl">제목</option> |
|
17 |
+ <option value="bbsCnt">내용</option> |
|
18 |
+ <option value="userNm">작성자</option> |
|
19 |
+ <option value="bbsCls">카테고리</option> |
|
20 |
+ </select> |
|
21 |
+ <input |
|
22 |
+ v-model="searchKeyword" |
|
23 |
+ type="text" |
|
24 |
+ placeholder="검색하세요." |
|
25 |
+ @keyup.enter="boardDataSearch" |
|
26 |
+ /> |
|
27 |
+ <button type="button" @click="boardDataSearch()" title="게시글 검색"> |
|
28 |
+ <img src="../../../resources/img/look_t.png" alt="" /> |
|
29 |
+ </button> |
|
30 |
+ </div> |
|
31 |
+ <div class="table-wrap"> |
|
32 |
+ <table> |
|
33 |
+ <thead> |
|
34 |
+ <td>No.</td> |
|
35 |
+ <td>제목</td> |
|
36 |
+ <td>카테고리</td> |
|
37 |
+ <td>작성자</td> |
|
38 |
+ <td>등록일</td> |
|
39 |
+ </thead> |
|
40 |
+ <tbody> |
|
41 |
+ <tr |
|
42 |
+ v-for="(item, index) in dataList" |
|
43 |
+ :key="item.id" |
|
44 |
+ :class="{ 'selected-row': selectedRow == item.dataList }" |
|
45 |
+ @click="[goToPage('noticeDetail'), selectBoardList(item)]" |
|
46 |
+ > |
|
47 |
+ <td>{{ createNo(index) }}</td> |
|
48 |
+ <td>{{ item.bbsTtl }}</td> |
|
49 |
+ <td>{{ item.bbsCls }}</td> |
|
50 |
+ <td>{{ userNm }}</td> |
|
51 |
+ <td>{{ item.bbsTm.substr(0, 16) }}</td> |
|
52 |
+ </tr> |
|
53 |
+ </tbody> |
|
54 |
+ </table> |
|
55 |
+ <article |
|
56 |
+ class="table-pagination flex justify-center align-center mb20 mt30" |
|
57 |
+ style="gap: 10px" |
|
58 |
+ > |
|
59 |
+ <button @click="goToPagination(currentPage - 1)"> |
|
60 |
+ <img src="../../../resources/img/btn27_90t_normal.png" alt="" /> |
|
61 |
+ </button> |
|
62 |
+ <button |
|
63 |
+ v-for="page in paginationButtons" |
|
64 |
+ :key="page" |
|
65 |
+ @click="goToPagination(page - 1)" |
|
66 |
+ :class="{ 'selected-btn': currentPage === page - 1 }" |
|
67 |
+ > |
|
68 |
+ {{ page }} |
|
69 |
+ </button> |
|
70 |
+ <button @click="goToPagination(currentPage + 1)"> |
|
71 |
+ <img src="../../../resources/img/btn28_90t_normal.png" alt="" /> |
|
72 |
+ </button> |
|
73 |
+ </article> |
|
74 |
+ <div class="flex justify-end"> |
|
75 |
+ <button |
|
76 |
+ type="button" |
|
77 |
+ title="글쓰기" |
|
78 |
+ class="new-btn" |
|
79 |
+ @click="goToPage('noticeInsert')" |
|
80 |
+ > |
|
81 |
+ 글쓰기 |
|
82 |
+ </button> |
|
83 |
+ </div> |
|
84 |
+ </div> |
|
85 | 85 |
</template> |
86 | 86 |
|
87 | 87 |
<script> |
... | ... | @@ -90,188 +90,201 @@ |
90 | 90 |
import axios from "axios"; |
91 | 91 |
|
92 | 92 |
export default { |
93 |
- data() { |
|
94 |
- return { |
|
95 |
- mdiMagnify: mdiMagnify, |
|
93 |
+ data() { |
|
94 |
+ return { |
|
95 |
+ mdiMagnify: mdiMagnify, |
|
96 | 96 |
|
97 |
- // 게시글 정보 |
|
98 |
- dataList: [], |
|
99 |
- totalPosts: 0, |
|
100 |
- selectedRow: "", |
|
101 |
- bbsTm: "", |
|
97 |
+ // 게시글 정보 |
|
98 |
+ dataList: [], |
|
99 |
+ totalPosts: 0, |
|
100 |
+ selectedRow: "", |
|
101 |
+ bbsTm: "", |
|
102 | 102 |
|
103 |
- // 페이징 |
|
104 |
- currentPage: 0, |
|
105 |
- itemsPerPage: 8, |
|
103 |
+ // 페이징 |
|
104 |
+ currentPage: 0, |
|
105 |
+ itemsPerPage: 8, |
|
106 | 106 |
|
107 |
- // 반 아이디 (추후 세션에서 받는걸로 수정) |
|
108 |
- sclsId: "", |
|
109 |
- classList: [], |
|
107 |
+ // 반 아이디 (추후 세션에서 받는걸로 수정) |
|
108 |
+ sclsId: "", |
|
109 |
+ classList: [], |
|
110 | 110 |
|
111 |
- userId: "", |
|
112 |
- // 검색어 |
|
113 |
- searchKeyword: "", |
|
114 |
- selectedSearchOption: "bbsTtl", |
|
111 |
+ userId: "", |
|
112 |
+ // 검색어 |
|
113 |
+ searchKeyword: "", |
|
114 |
+ selectedSearchOption: "bbsTtl", |
|
115 | 115 |
|
116 |
- selected: null, |
|
117 |
- }; |
|
118 |
- }, |
|
119 |
- methods: { |
|
120 |
- goToPage(page) { |
|
121 |
- this.$router.push({ name: page }); |
|
116 |
+ selected: null, |
|
117 |
+ }; |
|
122 | 118 |
}, |
123 |
- showConfirm(type) { |
|
124 |
- let message = ""; |
|
125 |
- if (type === "cancel") { |
|
126 |
- message = "삭제하시겠습니까?"; |
|
127 |
- } else if (type === "reset") { |
|
128 |
- message = "초기화하시겠습니까?"; |
|
129 |
- } else if (type === "save") { |
|
130 |
- message = "등록하시겠습니까?"; |
|
131 |
- } |
|
132 |
- |
|
133 |
- if (confirm(message)) { |
|
134 |
- this.goBack(); |
|
135 |
- } |
|
136 |
- }, |
|
137 |
- |
|
138 |
- // 게시글 전체 조회 |
|
139 |
- boardList() { |
|
140 |
- const vm = this; |
|
141 |
- vm.sclsId = JSON.parse(sessionStorage.getItem("sclsId")); |
|
142 |
- axios({ |
|
143 |
- url: "/board/findAll.json", |
|
144 |
- method: "post", |
|
145 |
- headers: { |
|
146 |
- "Content-Type": "application/json; charset=UTF-8", |
|
119 |
+ methods: { |
|
120 |
+ goToPage(page) { |
|
121 |
+ this.$router.push({ name: page }); |
|
147 | 122 |
}, |
148 |
- data: { |
|
149 |
- page: vm.currentPage + 1, |
|
150 |
- pageSize: vm.itemsPerPage, |
|
151 |
- sclsId: vm.sclsId, |
|
123 |
+ showConfirm(type) { |
|
124 |
+ let message = ""; |
|
125 |
+ if (type === "cancel") { |
|
126 |
+ message = "삭제하시겠습니까?"; |
|
127 |
+ } else if (type === "reset") { |
|
128 |
+ message = "초기화하시겠습니까?"; |
|
129 |
+ } else if (type === "save") { |
|
130 |
+ message = "등록하시겠습니까?"; |
|
131 |
+ } |
|
132 |
+ |
|
133 |
+ if (confirm(message)) { |
|
134 |
+ this.goBack(); |
|
135 |
+ } |
|
152 | 136 |
}, |
153 |
- }) |
|
154 |
- .then(function (res) { |
|
155 |
- console.log("dataList - response : ", res.data); |
|
156 |
- if (res.data.result.length !== 0) { |
|
157 |
- vm.dataList = res.data.result[0].boardClass[0].board; |
|
158 |
- vm.userNm = res.data.result[0].userNm; |
|
159 |
- vm.userId = res.data.result[0].userId; |
|
160 |
- vm.totalPosts = res.data.totalBoard; |
|
161 |
- vm.selectClass(); |
|
162 |
- sessionStorage.removeItem("bbsId"); |
|
163 |
- sessionStorage.removeItem("file"); |
|
164 |
- } else { |
|
165 |
- vm.selectClass(); |
|
166 |
- } |
|
167 |
- }) |
|
168 |
- .catch(function (error) { |
|
169 |
- console.log("boardListError - error : ", error); |
|
170 |
- }); |
|
171 |
- }, |
|
172 | 137 |
|
173 |
- // 게시글 정보 세션에 저장 |
|
174 |
- selectBoardList(item) { |
|
175 |
- sessionStorage.setItem("bbsId", JSON.stringify(item.bbsId)); |
|
176 |
- }, |
|
138 |
+ // 게시글 전체 조회 |
|
139 |
+ boardList() { |
|
140 |
+ const vm = this; |
|
141 |
+ vm.sclsId = JSON.parse(sessionStorage.getItem("sclsId")); |
|
142 |
+ axios({ |
|
143 |
+ url: "/board/findAll.json", |
|
144 |
+ method: "post", |
|
145 |
+ headers: { |
|
146 |
+ "Content-Type": "application/json; charset=UTF-8", |
|
147 |
+ }, |
|
148 |
+ data: { |
|
149 |
+ page: vm.currentPage + 1, |
|
150 |
+ pageSize: vm.itemsPerPage, |
|
151 |
+ sclsId: vm.sclsId, |
|
152 |
+ }, |
|
153 |
+ }) |
|
154 |
+ .then(function (res) { |
|
155 |
+ console.log("dataList - response : ", res.data); |
|
156 |
+ if (res.data.result && res.data.result.length > 0) { |
|
157 |
+ const boardClass = res.data.result[0].boardClass; |
|
158 |
+ if (boardClass && boardClass.length > 0) { |
|
159 |
+ vm.dataList = boardClass[0].board || []; // Default to an empty array if `board` is not present |
|
160 |
+ } else { |
|
161 |
+ vm.dataList = []; // No `boardClass` found |
|
162 |
+ } |
|
163 |
+ vm.userNm = res.data.result[0].userNm || ""; // Default to empty string if `userNm` is not present |
|
164 |
+ vm.userId = res.data.result[0].userId || ""; // Default to empty string if `userId` is not present |
|
165 |
+ vm.totalPosts = res.data.totalBoard || 0; // Default to 0 if `totalBoard` is not present |
|
166 |
+ } else { |
|
167 |
+ vm.dataList = []; // No results found |
|
168 |
+ vm.userNm = ""; |
|
169 |
+ vm.userId = ""; |
|
170 |
+ vm.totalPosts = 0; |
|
171 |
+ } |
|
177 | 172 |
|
178 |
- // 반 아이디 세션에 저장 |
|
173 |
+ vm.selectClass(); |
|
179 | 174 |
|
180 |
- // 게시글 검색 |
|
181 |
- boardDataSearch() { |
|
182 |
- const vm = this; |
|
183 |
- let searchPayload = { |
|
184 |
- keyword: vm.searchKeyword, |
|
185 |
- option: vm.selectedSearchOption, |
|
186 |
- page: vm.currentPage, |
|
187 |
- pageSize: vm.itemsPerPage, |
|
188 |
- sclsId: vm.sclsId, |
|
189 |
- }; |
|
190 |
- axios({ |
|
191 |
- url: "/board/search.json", |
|
192 |
- method: "post", |
|
193 |
- headers: { |
|
194 |
- "Content-Type": "application/json; charset=UTF-8", |
|
175 |
+ // Clean up session storage |
|
176 |
+ sessionStorage.removeItem("bbsId"); |
|
177 |
+ sessionStorage.removeItem("file"); |
|
178 |
+ }) |
|
179 |
+ .catch(function (error) { |
|
180 |
+ console.log("boardListError - error : ", error); |
|
181 |
+ }); |
|
195 | 182 |
}, |
196 |
- data: searchPayload, |
|
197 |
- }) |
|
198 |
- .then(function (res) { |
|
199 |
- console.log("boardDataSearch - response : ", res.data); |
|
200 |
- vm.dataList = res.data.result[0].boardClass[0].board; |
|
201 |
- vm.userNm = res.data.result[0].userNm; |
|
202 |
- vm.userId = res.data.result[0].userId; |
|
203 |
- vm.totalPosts = res.data.totalBoard; |
|
204 |
- }) |
|
205 |
- .catch(function (error) { |
|
206 |
- console.log("dataSearch - error : ", error); |
|
207 |
- alert("게시글이 존재하지 않습니다."); |
|
208 |
- }); |
|
209 |
- }, |
|
210 | 183 |
|
211 |
- // 반 조회 |
|
212 |
- selectClass() { |
|
213 |
- const vm = this; |
|
214 |
- axios({ |
|
215 |
- url: "/classes/selectClass.json", |
|
216 |
- method: "post", |
|
217 |
- headers: { |
|
218 |
- "Content-Type": "application/json; charset=UTF-8", |
|
184 |
+ // 게시글 정보 세션에 저장 |
|
185 |
+ selectBoardList(item) { |
|
186 |
+ sessionStorage.setItem("bbsId", JSON.stringify(item.bbsId)); |
|
219 | 187 |
}, |
220 |
- data: { |
|
221 |
- userId: vm.userId, |
|
188 |
+ |
|
189 |
+ // 반 아이디 세션에 저장 |
|
190 |
+ |
|
191 |
+ // 게시글 검색 |
|
192 |
+ boardDataSearch() { |
|
193 |
+ const vm = this; |
|
194 |
+ let searchPayload = { |
|
195 |
+ keyword: vm.searchKeyword, |
|
196 |
+ option: vm.selectedSearchOption, |
|
197 |
+ page: vm.currentPage, |
|
198 |
+ pageSize: vm.itemsPerPage, |
|
199 |
+ sclsId: vm.sclsId, |
|
200 |
+ }; |
|
201 |
+ axios({ |
|
202 |
+ url: "/board/search.json", |
|
203 |
+ method: "post", |
|
204 |
+ headers: { |
|
205 |
+ "Content-Type": "application/json; charset=UTF-8", |
|
206 |
+ }, |
|
207 |
+ data: searchPayload, |
|
208 |
+ }) |
|
209 |
+ .then(function (res) { |
|
210 |
+ console.log("boardDataSearch - response : ", res.data); |
|
211 |
+ vm.dataList = res.data.result[0].boardClass[0].board; |
|
212 |
+ vm.userNm = res.data.result[0].userNm; |
|
213 |
+ vm.userId = res.data.result[0].userId; |
|
214 |
+ vm.totalPosts = res.data.totalBoard; |
|
215 |
+ }) |
|
216 |
+ .catch(function (error) { |
|
217 |
+ console.log("dataSearch - error : ", error); |
|
218 |
+ alert("게시글이 존재하지 않습니다."); |
|
219 |
+ }); |
|
222 | 220 |
}, |
223 |
- }) |
|
224 |
- .then(function (res) { |
|
225 |
- console.log("classData - response : ", res.data); |
|
226 |
- vm.classList = res.data.data; |
|
227 |
- vm.selected = res.data.data.sclsId; |
|
228 |
- }) |
|
229 |
- .catch(function (error) { |
|
230 |
- console.log("classData - error : ", error); |
|
231 |
- }); |
|
232 |
- }, |
|
233 |
- handleClassId() { |
|
234 |
- sessionStorage.setItem("sclsId", JSON.stringify(this.sclsId)); |
|
235 |
- this.boardList(); |
|
236 |
- }, |
|
237 | 221 |
|
238 |
- createNo(index) { |
|
239 |
- return this.totalPosts - (this.currentPage * this.itemsPerPage + index); |
|
240 |
- }, |
|
222 |
+ // 반 조회 |
|
223 |
+ selectClass() { |
|
224 |
+ const vm = this; |
|
225 |
+ axios({ |
|
226 |
+ url: "/classes/selectClass.json", |
|
227 |
+ method: "post", |
|
228 |
+ headers: { |
|
229 |
+ "Content-Type": "application/json; charset=UTF-8", |
|
230 |
+ }, |
|
231 |
+ data: { |
|
232 |
+ userId: vm.userId, |
|
233 |
+ }, |
|
234 |
+ }) |
|
235 |
+ .then(function (res) { |
|
236 |
+ console.log("classData - response : ", res.data); |
|
237 |
+ vm.classList = res.data.data; |
|
238 |
+ vm.selected = res.data.data.sclsId; |
|
239 |
+ }) |
|
240 |
+ .catch(function (error) { |
|
241 |
+ console.log("classData - error : ", error); |
|
242 |
+ }); |
|
243 |
+ }, |
|
244 |
+ handleClassId() { |
|
245 |
+ sessionStorage.setItem("sclsId", JSON.stringify(this.sclsId)); |
|
246 |
+ this.boardList(); |
|
247 |
+ }, |
|
241 | 248 |
|
242 |
- goToPagination(page) { |
|
243 |
- if (page < 0 || page >= this.totalPages) { |
|
244 |
- return; |
|
245 |
- } |
|
246 |
- this.currentPage = page; |
|
247 |
- this.boardList(); |
|
248 |
- }, |
|
249 |
- }, |
|
250 |
- watch: {}, |
|
251 |
- computed: { |
|
252 |
- totalPages() { |
|
253 |
- return Math.ceil(this.totalPosts / this.itemsPerPage); |
|
254 |
- }, |
|
255 |
- paginationButtons() { |
|
256 |
- let start = Math.max(0, this.currentPage - 2); |
|
257 |
- let end = Math.min(start + 5, this.totalPages); |
|
249 |
+ createNo(index) { |
|
250 |
+ return ( |
|
251 |
+ this.totalPosts - (this.currentPage * this.itemsPerPage + index) |
|
252 |
+ ); |
|
253 |
+ }, |
|
258 | 254 |
|
259 |
- if (end - start < 5) { |
|
260 |
- start = Math.max(0, end - 5); |
|
261 |
- } |
|
255 |
+ goToPagination(page) { |
|
256 |
+ if (page < 0 || page >= this.totalPages) { |
|
257 |
+ return; |
|
258 |
+ } |
|
259 |
+ this.currentPage = page; |
|
260 |
+ this.boardList(); |
|
261 |
+ }, |
|
262 |
+ }, |
|
263 |
+ watch: {}, |
|
264 |
+ computed: { |
|
265 |
+ totalPages() { |
|
266 |
+ return Math.ceil(this.totalPosts / this.itemsPerPage); |
|
267 |
+ }, |
|
268 |
+ paginationButtons() { |
|
269 |
+ let start = Math.max(0, this.currentPage - 2); |
|
270 |
+ let end = Math.min(start + 5, this.totalPages); |
|
262 | 271 |
|
263 |
- return Array.from({ length: end - start }, (_, i) => start + i + 1); |
|
272 |
+ if (end - start < 5) { |
|
273 |
+ start = Math.max(0, end - 5); |
|
274 |
+ } |
|
275 |
+ |
|
276 |
+ return Array.from({ length: end - start }, (_, i) => start + i + 1); |
|
277 |
+ }, |
|
278 |
+ startIndex() { |
|
279 |
+ return this.currentPage * this.itemsPerPage; |
|
280 |
+ }, |
|
264 | 281 |
}, |
265 |
- startIndex() { |
|
266 |
- return this.currentPage * this.itemsPerPage; |
|
282 |
+ components: { |
|
283 |
+ SvgIcon, |
|
267 | 284 |
}, |
268 |
- }, |
|
269 |
- components: { |
|
270 |
- SvgIcon, |
|
271 |
- }, |
|
272 |
- mounted() { |
|
273 |
- console.log("Main2 mounted"); |
|
274 |
- this.boardList(); |
|
275 |
- }, |
|
285 |
+ mounted() { |
|
286 |
+ console.log("Main2 mounted"); |
|
287 |
+ this.boardList(); |
|
288 |
+ }, |
|
276 | 289 |
}; |
277 | 290 |
</script> |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?