Toggle navigation
Toggle navigation
This project
Loading...
Sign in
zuzitsu
/
UR_Village
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Suyeon Jung
2020-12-07 19:03:40 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f9ac22d118aba6c70f486f8e58c802855483381f
f9ac22d1
1 parent
3ed90a5d
Modify result components
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
326 additions
and
199 deletions
views/results/culture.ejs
views/results/food.ejs
views/results/gym.ejs
views/results/park.ejs
views/results/safe.ejs
views/results/school.ejs
views/results/shop.ejs
views/results/transport.ejs
views/results/culture.ejs
View file @
f9ac22d
<!DOCTYPE html>
<html
lang=
"ko"
>
<h1>🎤 노래방 현황</h1>
<table class="table">
<thead>
<th>사업장명</th>
<th>도로명주소</th>
</thead>
<tbody>
<%for (var i =0; i <sings.length; i++){%>
<tr>
<td>
<%=sings[i].BIZPLC_NM%>
</td>
<td>
<%=sings[i].REFINE_ROADNM_ADDR%>
</td>
</tr>
<%}%>
</tbody>
</table>
<head>
<meta
charset=
"UTF-8"
>
<title>
✍️ 결과 페이지
</title>
</head>
<body>
<h1>
🎤 노래방 현황
</h1>
<
%for (var i =0; i
<sings
.
length
;
i
++){%
>
<li>
<
%=sings[i].BIZPLC_NM%>
</li>
<
%}%>
<h3>
총 노래방 개수 :
<
%=sings.length%>
</h3>
</body>
</html>
\ No newline at end of file
<h3>총 노래방 개수 :
<%=sings.length%>
</h3>
\ No newline at end of file
...
...
views/results/food.ejs
View file @
f9ac22d
<!DOCTYPE html>
<html
lang=
"ko"
>
<h1>
🥘 맛집 현황</h1>
<table class="table">
<thead>
<tr>
<th>음식점명</th>
<th>전화번호</th>
<th>대표음식</th>
<th>도로명주소</th>
</tr>
</thead>
<tbody>
<%for (var i =0; i <stores.length; i++){%>
<tr>
<td>
<%=stores[i].RESTRT_NM%>
</td>
<td>
<%=stores[i].TASTFDPLC_TELNO%>
</td>
<td>
<%=stores[i].REPRSNT_FOOD_NM%>
</td>
<td>
<%=stores[i].REFINE_ROADNM_ADDR%>
</td>
</tr>
<%}%>
</tbody>
</table>
<head>
<meta
charset=
"UTF-8"
>
<title>
✍️ 결과 페이지
</title>
</head>
<body>
<h1>
🥘 맛집 현황
</h1>
<
%for (var i =0; i
<stores
.
length
;
i
++){%
>
<li>
<
%=stores[i].RESTRT_NM%>
</li>
<
%}%>
<h3>
총 맛집 개수 :
<
%=stores.length%>
</h3>
<h1>
🍔 패스트푸드점 현황
</h1>
<
%for (var i =0; i
<fast
_food_stores
.
length
;
i
++){%
>
<li>
<
%=fast_food_stores[i].BIZPLC_NM%>
</li>
<h3>총 맛집 개수 :
<%=stores.length%>
</h3>
<
%}%>
<h3>
패스트푸드점 개수 :
<
%=fast_food_stores.length%>
</h3>
<h1>🍔 패스트푸드점 현황 </h1>
</body>
<table class="table">
<thead>
<tr>
<th>사업장명</th>
<th>도로명주소</th>
</tr>
</thead>
<tbody>
<%for (var i =0; i <fast_food_stores.length; i++){%>
<tr>
<td>
<%=fast_food_stores[i].BIZPLC_NM%>
</td>
<td>
<%=fast_food_stores[i].REFINE_ROADNM_ADDR%>
</td>
</tr>
<%}%>
</tbody>
</table>
</html>
\ No newline at end of file
<h3>패스트푸드점 개수 :
<%=fast_food_stores.length%>
</h3>
\ No newline at end of file
...
...
views/results/gym.ejs
View file @
f9ac22d
<!DOCTYPE html>
<html
lang=
"ko"
>
<h1>🏋️♂️ 운동시설 현황</h1>
<head>
<meta
charset=
"UTF-8"
>
<title>
✍️ 결과 페이지
</title>
</head>
<table class="table">
<thead>
<tr>
<th>
사업장명
</th>
<th>전화번호</th>
<th>도로명주소</th>
</tr>
</thead>
<tbody>
<%for (var i =0; i <gyms.length; i++){%>
<tr>
<td>
<%=gyms[i].BIZPLC_NM%>
</td>
<td>
<%=gyms[i].LOCPLC_FACLT_TELNO%>
</td>
<td>
<%=gyms[i].REFINE_ROADNM_ADDR%>
</td>
<body>
<h1>
🏋️♂️ 운동시설 현황
</h1>
<
%for (var i =0; i
<gyms
.
length
;
i
++){%
>
<li>
<
%=gyms[i].BIZPLC_NM%>
</li>
</tr>
<%}%>
</tbody>
</table>
<
%}%>
<h3>
총 운동시설 개수 :
<
%=gyms.length%>
</h3>
</body>
</html>
\ No newline at end of file
<h3>총 운동시설 개수 :
<%=gyms.length%>
</h3>
\ No newline at end of file
...
...
views/results/park.ejs
View file @
f9ac22d
<!DOCTYPE html>
<html
lang=
"ko"
>
<h1>🌳 도시공원 현황</h1>
<table class="table">
<thead>
<tr>
<th>도시공원명</th>
<th>도로명주소</th>
</tr>
</thead>
<tbody>
<%for (var i =0; i <city_parks.length; i++){%>
<tr>
<td>
<%=city_parks[i].PARK_NM%>
</td>
<td>
<%=city_parks[i].REFINE_ROADNM_ADDR%>
</td>
</tr>
<%}%>
</tbody>
<head>
<meta
charset=
"UTF-8"
>
<title>
✍️ 결과 페이지
</title>
</head>
<body>
<h1>
🌳 도시공원 현황
</h1>
<
%for (var i =0; i
<city
_parks
.
length
;
i
++){%
>
<li>
<
%=city_parks[i].PARK_NM%>
</li>
<
%}%>
<h3>
총 도시공원 개수 :
<
%=city_parks.length%>
</h3>
</body>
</html>
\ No newline at end of file
</table>
<h3>총 도시공원 개수 :
<%=city_parks.length%>
</h3>
\ No newline at end of file
...
...
views/results/safe.ejs
View file @
f9ac22d
<!DOCTYPE html>
<html
lang=
"ko"
>
<h1>📷 CCTV 현황</h1>
<head>
<meta
charset=
"UTF-8"
>
<title>
✍️ 결과 페이지
</title>
</head>
<table class="table">
<thead>
<tr>
<th>도로명주소</th>
<th>카메라대수</th>
</tr>
</thead>
<tbody>
<%for (var i =0; i <cctvs.length; i++){%>
<tr>
<td>
<%=cctvs[i].REFINE_LOTNO_ADDR%>
</td>
<td>
<%=cctvs[i].CAMERA_CNT%>
</td>
</tr>
<%}%>
</tbody>
</table>
<body>
<h1>
📷 CCTV 현황
</h1>
CCTV 소재지 지번주소 :
<
%for (var i =0; i
<cctvs
.
length
;
i
++){%
>
<li>
<
%=cctvs[i].REFINE_LOTNO_ADDR%>
</li>
<
%}%>
<h3>
총 CCTV 개수 :
<
%=cctvs.length%>
</h3>
<h1>
💡 보안등 현황
</h1>
보안등 소재지 지번주소 :
<
%for (var i =0; i
<lights
.
length
;
i
++){%
>
<li>
<
%=lights[i].REFINE_LOTNO_ADDR%>
</li>
<
%}%>
<h3>
총 보안등 개수 :
<
%=lights.length%>
</h3>
</body>
<h1>💡 보안등 현황</h1>
보안등 소재지 지번주소 :
<table class="table">
<thead>
<tr>
<th>도로명주소</th>
<th>설치개수</th>
</tr>
</thead>
<tbody>
<%for (var i =0; i <lights.length; i++){%>
<tr>
<td>
<%=lights[i].REFINE_LOTNO_ADDR%>
</td>
<td>
<%=lights[i].INSTL_CNT %>
</td>
</tr>
<%}%>
</tbody>
</table>
</html>
\ No newline at end of file
<h3>총 보안등 개수 :
<%=lights.length%>
</h3>
\ No newline at end of file
...
...
views/results/school.ejs
View file @
f9ac22d
<!DOCTYPE html>
<html
lang=
"ko"
>
<head>
<meta
charset=
"UTF-8"
>
<title>
✍️ 결과 페이지
</title>
</head>
<body>
<h1>
📚 도서관 현황
</h1>
<
%for (var i =0; i
<librarys
.
length
;
i
++){%
>
<li>
<
%=librarys[i].LIBRRY_NM%>
</li>
<
%}%>
<h3>
총 도서관 개수 :
<
%=librarys.length%>
</h3>
<h1>
📒 학원 현황
</h1>
<
%for (var i =0; i
<institutes
.
length
;
i
++){%
>
<li>
<
%=institutes[i].FACLT_NM%>
</li>
<h1>📚 도서관 현황</h1>
<table class="table">
<thead>
<tr>
<th>도서관명</th>
<th>도로명주소</th>
<th>자료실 개방시간</th>
<th>열람실 개방시간</th>
</tr>
</thead>
<tbody>
<%for (var i =0; i <librarys.length; i++){%>
<tr>
<td>
<%=librarys[i].LIBRRY_NM%>
</td>
<td>
<%=librarys[i].REFINE_ROADNM_ADDR%>
</td>
<td>
<%=librarys[i].RECSROOM_OPEN_TM_INFO%>
</td>
<td>
<%=librarys[i].READROOM_OPEN_TM_INFO%>
</td>
</tr>
<%}%>
</tbody>
</table>
<
%}%>
<h3>
학원 및 교습소 개수 :
<
%=institutes.length%>
</h3>
<h3>총 도서관 개수 :
<%=librarys.length%>
</h3>
<h1>📒 학원 현황 </h1>
<table class="table">
<thead>
<tr>
<th>시설명</th>
<th>교습과정명</th>
<th>도로명주소</th>
</tr>
</thead>
<tbody>
<%for (var i =0; i <institutes.length; i++){%>
<tr>
<td>
<%=institutes[i].FACLT_NM%>
</td>
<td>
<%=institutes[i].CRSE_CLASS_NM%>
</td>
<td>
<%=institutes[i].REFINE_ROADNM_ADDR%>
</td>
</tr>
<%}%>
</tbody>
</table>
</body>
</html>
\ No newline at end of file
<h3>학원 및 교습소 개수 :
<%=institutes.length%>
</h3>
\ No newline at end of file
...
...
views/results/shop.ejs
View file @
f9ac22d
<!DOCTYPE html>
<html
lang=
"ko"
>
<h1>🛍 시장 및 마트 현황</h1>
<head>
<meta
charset=
"UTF-8"
>
<title>
✍️ 결과 페이지
</title>
</head>
<body>
<h1>
🛍 쇼핑몰 현황(시장, 상가, 마트)
</h1>
<
%for (var i =0; i
<shops
.
length
;
i
++){%
>
<li>
<
%=shops[i].MARKET_NM%>
</li>
<table class="table">
<thead>
<tr>
<th>시장명</th>
<th>도로명주소</th>
</tr>
</thead>
<tbody>
<%for (var i =0; i <shops.length; i++){%>
<tr>
<td>
<%=shops[i].MARKET_NM%>
<
%}%>
<h3>
총 쇼핑몰 개수 :
<
%=shops.length%>
</h3>
</td>
<td>
<%=shops[i].REFINE_ROADNM_ADDR%>
</td>
</tr>
<%}%>
</tbody>
</
body
>
</
table
>
</html>
\ No newline at end of file
<h3>총 쇼핑몰 개수 :
<%=shops.length%>
</h3>
\ No newline at end of file
...
...
views/results/transport.ejs
View file @
f9ac22d
<!DOCTYPE html>
<html
lang=
"ko"
>
<h1>🚌 버스 현황</h1>
<head>
<meta
charset=
"UTF-8"
>
<title>
✍️ 결과 페이지
</title>
</head>
<table class="table">
<thead>
<tr>
<th>버스정류장명</th>
<th>버스정류장ID</th>
</tr>
</thead>
<tbody>
<%for (var i =0; i <busStations.length; i++){%>
<tr>
<td>
<%=busStations[i].stationName%>역
</td>
<td>
<%=busStations[i].stationID%>
</td>
</tr>
<%}%>
</tbody>
</table>
<h3>총 버스정류장 개수 :
<%=busStations.length%>
</h3>
<body>
<h1>
대중교통 현황
</h1>
주변 버스 정류장 :
<
%for (var i =0; i
<busStations
.
length
;
i
++){%
>
<li>
<
%=busStations[i].stationName%>
</li>
<
%}%>
<h3>
총 버스정류장 개수 :
<
%=busStations.length%>
</h3>
<h1>
지하철역 현황
</h1>
주변 지하철역 :
<
%for (var i =0; i
<subwayStations
.
length
;
i
++){%
>
<li>
<
%=subwayStations[i].stationName%>
</li>
<
%}%>
<h3>
총 지하철역 개수 :
<
%=subwayStations.length%>
</h3>
<h3>
총 대중교통 개수 :
<
%=busStations.length + subwayStations.length%>
</h3>
<h1>🚆 지하철역 현황</h1>
</body>
</html>
\ No newline at end of file
<table class="table">
<thead>
<tr>
<th>지하철역명</th>
<th>지하철역ID</th>
<th>지하철호선</th>
</tr>
</thead>
<tbody>
<%for (var i =0; i <subwayStations.length; i++){%>
<tr>
<td>
<%=subwayStations[i].stationName%>역
</td>
<td>
<%=subwayStations[i].stationID%>
</td>
<td>
<%=subwayStations[i].laneName%>
</td>
</tr>
<%}%>
</tbody>
</table>
<h3>총 지하철역 개수 :
<%=subwayStations.length%>
</h3>
\ No newline at end of file
...
...
Please
register
or
login
to post a comment