parent
420b04a71c
commit
0f1ef5dd79
@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="RunConfigurationProducerService">
|
||||
<option name="ignoredProducers">
|
||||
<set>
|
||||
<option value="com.android.tools.idea.compose.preview.runconfiguration.ComposePreviewRunConfigurationProducer" />
|
||||
</set>
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
@ -0,0 +1,239 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ko">
|
||||
<#include "/m/include/index_top.ftl">
|
||||
<link href="../css/custom.css?1" rel="stylesheet" type="text/css" >
|
||||
|
||||
<body>
|
||||
|
||||
<!-- wrap -->
|
||||
<div class="wrap">
|
||||
|
||||
<!-- header_sub -->
|
||||
<header class="header_wrapper">
|
||||
<a href="javascript:back.return_url()" class="side_Lbtn hidden pre_btn">이전으로</a>
|
||||
<h1 class="header_title">메모리</h1>
|
||||
<a href="#" class="side_Rbtn hidden"></a>
|
||||
</header>
|
||||
<!-- //header_sub -->
|
||||
|
||||
<!-- 메모리 카테고리 -->
|
||||
<ul class="memory_ca">
|
||||
<li>
|
||||
<a href="${URL_ROOT}/m/memory/memory_daily.do?return_url=index">
|
||||
일간
|
||||
</a>
|
||||
</li>
|
||||
<li class="current">
|
||||
<a href="${URL_ROOT}/m/memory/memory_week.do?return_url=index">
|
||||
주간
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="${URL_ROOT}/m/memory/memory_timeline.do?return_url=index">
|
||||
타임라인
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- //메모리 카테고리 -->
|
||||
|
||||
<!-- 컬러 박스 -->
|
||||
<div class="color_box">
|
||||
<button type="button" class="m_color01"></button>
|
||||
<button type="button" class="m_color02"></button>
|
||||
<button type="button" class="m_color03"></button>
|
||||
<button type="button" class="m_color04"></button>
|
||||
<button type="button" class="m_color05"></button>
|
||||
<button type="button" class="m_color06"></button>
|
||||
</div>
|
||||
<!-- //컬러 박스 -->
|
||||
|
||||
<!-- 날짜 -->
|
||||
<div class="memory_date">
|
||||
<a href="javascript:fncMoveDay('minus')"><img src="../img/xxxx_sprites/arrow_01_left.png" alt=""></a>
|
||||
${model['rm_mem']['today']!}(${model['rm_mem']['day']!})
|
||||
<a href="javascript:fncMoveDay('plus')"><img src="../img/xxxx_sprites/arrow_01_right.png" alt=""></a>
|
||||
</div>
|
||||
<!-- //날짜 -->
|
||||
|
||||
<!-- 그래프 -->
|
||||
<div class="week_chart">
|
||||
<div class="gray_box_div">
|
||||
<!-- 가로열 -->
|
||||
<ul class="gray_box">
|
||||
<li>
|
||||
<#assign pre_date = model['dayList']['day1'] + ''>
|
||||
<#assign idx = 0>
|
||||
<#assign pre_hour = ''>
|
||||
<#list model['time_list'] as item>
|
||||
<#if item['day'] == pre_date>
|
||||
<#if (item['hour'] + '') == pre_hour>
|
||||
<#assign idx = idx + 1>
|
||||
</#if>
|
||||
<#assign topP = item['hour'] + idx>
|
||||
<#assign pre_hour = item['hour'] + ''>
|
||||
<span title="${item.title}" style="top:${topP}%;height:2px;" class="m_color${item['val_1']}"></span>
|
||||
</#if>
|
||||
</#list>
|
||||
</li>
|
||||
<li>
|
||||
<#assign pre_date = model['dayList']['day2'] + ''>
|
||||
<#assign idx = 0>
|
||||
<#assign pre_hour = ''>
|
||||
<#list model['time_list'] as item>
|
||||
<#if item['day'] == pre_date>
|
||||
<#if (item['hour'] + '') == pre_hour>
|
||||
<#assign idx = idx + 1>
|
||||
</#if>
|
||||
<#assign topP = item['hour'] + idx>
|
||||
<#assign pre_hour = item['hour'] + ''>
|
||||
<span title="${item.title}" style="top:${topP}%;height:2px;" class="m_color${item['val_1']}"></span>
|
||||
</#if>
|
||||
</#list>
|
||||
</li>
|
||||
<li>
|
||||
<#assign pre_date = model['dayList']['day3'] + ''>
|
||||
<#assign idx = 0>
|
||||
<#assign pre_hour = ''>
|
||||
<#list model['time_list'] as item>
|
||||
<#if item['day'] == pre_date>
|
||||
<#if (item['hour'] + '') == pre_hour>
|
||||
<#assign idx = idx + 1>
|
||||
</#if>
|
||||
<#assign topP = item['hour'] + idx>
|
||||
<#assign pre_hour = item['hour'] + ''>
|
||||
<span title="${item.title}" style="top:${topP}%;height:2px;" class="m_color${item['val_1']}"></span>
|
||||
</#if>
|
||||
</#list>
|
||||
</li>
|
||||
<li>
|
||||
<#assign pre_date = model['dayList']['day4'] + ''>
|
||||
<#assign idx = 0>
|
||||
<#assign pre_hour = ''>
|
||||
<#list model['time_list'] as item>
|
||||
<#if item['day'] == pre_date>
|
||||
<#if (item['hour'] + '') == pre_hour>
|
||||
<#assign idx = idx + 1>
|
||||
</#if>
|
||||
<#assign topP = item['hour'] + idx>
|
||||
<#assign pre_hour = item['hour'] + ''>
|
||||
<span title="${item.title}" style="top:${topP}%;height:2px;" class="m_color${item['val_1']}"></span>
|
||||
</#if>
|
||||
</#list>
|
||||
</li>
|
||||
<li>
|
||||
<#assign pre_date = model['dayList']['day5'] + ''>
|
||||
<#assign idx = 0>
|
||||
<#assign pre_hour = ''>
|
||||
<#list model['time_list'] as item>
|
||||
<#if item['day'] == pre_date>
|
||||
<#if (item['hour'] + '') == pre_hour>
|
||||
<#assign idx = idx + 1>
|
||||
</#if>
|
||||
<#assign topP = item['hour'] + idx>
|
||||
<#assign pre_hour = item['hour'] + ''>
|
||||
<span title="${item.title}" style="top:${topP}%;height:2px;" class="m_color${item['val_1']}"></span>
|
||||
</#if>
|
||||
</#list>
|
||||
</li>
|
||||
<li>
|
||||
<#assign pre_date = model['dayList']['day6'] + ''>
|
||||
<#assign idx = 0>
|
||||
<#assign pre_hour = ''>
|
||||
<#list model['time_list'] as item>
|
||||
<#if item['day'] == pre_date>
|
||||
<#if (item['hour'] + '') == pre_hour>
|
||||
<#assign idx = idx + 1>
|
||||
</#if>
|
||||
<#assign topP = item['hour'] + idx>
|
||||
<#assign pre_hour = item['hour'] + ''>
|
||||
<span title="${item.title}" style="top:${topP}%;height:2px;" class="m_color${item['val_1']}"></span>
|
||||
</#if>
|
||||
</#list>
|
||||
</li>
|
||||
<li>
|
||||
<#assign pre_date = model['dayList']['day7'] + ''>
|
||||
<#assign idx = 0>
|
||||
<#assign pre_hour = ''>
|
||||
<#list model['time_list'] as item>
|
||||
<#if item['day'] == pre_date>
|
||||
<#if (item['hour'] + '') == pre_hour>
|
||||
<#assign idx = idx + 1>
|
||||
</#if>
|
||||
<#assign topP = item['hour'] + idx>
|
||||
<#assign pre_hour = item['hour'] + ''>
|
||||
<span title="${item.title}" style="top:${topP}%;height:2px;" class="m_color${item['val_1']}"></span>
|
||||
</#if>
|
||||
</#list>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<ul class="border_box">
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
<li></li>
|
||||
</ul>
|
||||
|
||||
<div class="time_bar" style="top:-9px;">
|
||||
<span></span>
|
||||
<div class="time_bar_number">
|
||||
<img src="../../img/time_bar02.png" alt="">
|
||||
<p>00:00</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="time_bar02" style="top:57%;">
|
||||
<span></span>
|
||||
<img src="../../img/time_bar.png" alt="">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<ul class="number_bottom">
|
||||
<li>${model['dayList']['day1']!}</li>
|
||||
<li>${model['dayList']['day2']!}</li>
|
||||
<li>${model['dayList']['day3']!}</li>
|
||||
<li>${model['dayList']['day4']!}</li>
|
||||
<li>${model['dayList']['day5']!}</li>
|
||||
<li>${model['dayList']['day6']!}</li>
|
||||
<li>${model['dayList']['day7']!}</li>
|
||||
</ul>
|
||||
|
||||
<ul class="number_right">
|
||||
<li>01</li>
|
||||
<li>03</li>
|
||||
<li>06</li>
|
||||
<li>09</li>
|
||||
<li>12</li>
|
||||
<li>15</li>
|
||||
<li>18</li>
|
||||
<li>21</li>
|
||||
<li>24</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!--// 그래프 -->
|
||||
|
||||
<div class="fix_icon">
|
||||
<button type="button"><img src="../../img/ico_image_grey_24.png" alt=""></button>
|
||||
<button type="button"><img src="../../img/ico_share_grey_24.png" alt=""></button>
|
||||
</div>
|
||||
</div>
|
||||
<!-- //wrap -->
|
||||
|
||||
<!-- 하단 네비 iyu_nav -->
|
||||
<#include "/m/include/index_bottom_menu.ftl">
|
||||
<!-- //iyu_nav -->
|
||||
|
||||
<script>
|
||||
function fncMoveDay(dayFlag) {
|
||||
location.href = "${URL_ROOT}/m/memory/memory_week.do?dayFlag=" + dayFlag + "&currDate=" + "${model['rm_mem']['today']!}";
|
||||
<#--location.href = "${URL_ROOT}/m/memory/memory_week.do";-->
|
||||
}
|
||||
</script>
|
||||
<#include "/m/member_env/include_return_url.ftl">
|
||||
</body>
|
||||
<#include "/m/include/index_bottom.ftl">
|
||||
</html>
|
Loading…
Reference in new issue