최초 커밋
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
ini_set('display_errors', 1);
|
||||
error_reporting(E_ALL);
|
||||
?>
|
||||
<!doctype html>
|
||||
<html lang="ko">
|
||||
<head>
|
||||
<?php include __DIR__ . '/html/_include/_head.php'; ?>
|
||||
</head>
|
||||
<body>
|
||||
<div class="wrap">
|
||||
<?php include __DIR__ . '/html/_include/_header.php'; ?>
|
||||
<!-- container -->
|
||||
<div class="container">
|
||||
<div class="main-contents">
|
||||
<div class="main-grid">
|
||||
<!-- 연간 총 판매 실적 -->
|
||||
<?php include __DIR__ . '/html/main_sub/yearly_chart.php'; ?>
|
||||
<!-- //연간 총 판매 실적 -->
|
||||
|
||||
<!-- 연간 개별 판매 실적 -->
|
||||
<?php include __DIR__ . '/html/main_sub/individual_chart.php'; ?>
|
||||
<!-- //연간 개별 판매 실적 -->
|
||||
|
||||
<!-- 연간 영업 판매 실적 -->
|
||||
<?php include __DIR__ . '/html/main_sub/sales_chart.php'; ?>
|
||||
<!-- //연간 영업 판매 실적 -->
|
||||
|
||||
<!-- 월 판매 실적 -->
|
||||
<?php include __DIR__ . '/html/main_sub/month_chart.php'; ?>
|
||||
<!-- //월 판매 실적 -->
|
||||
</div>
|
||||
|
||||
<!-- 주간 영업 계획 -->
|
||||
<?php include __DIR__ . '/html/main_sub/weekly_plan.php'; ?>
|
||||
<!-- //주간 영업 계획 -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
(() => {
|
||||
// 리사이즈 이벤트 리스너 (디바운스 적용)
|
||||
let resizeTimer;
|
||||
window.addEventListener("resize", () => {
|
||||
clearTimeout(resizeTimer);
|
||||
resizeTimer = setTimeout(() => {
|
||||
createYearlyChart();
|
||||
createIndividualChart();
|
||||
createMonthChart();
|
||||
createIndustryChart();
|
||||
}, 250); // 250ms 디바운스
|
||||
});
|
||||
})();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user