tkfb-core.js v=2026040104, tksupport/tksafety/tkpurchase/tkuser-core.js, system2 api-base.js, system3 app.js 캐시 버스팅 일괄 갱신. 브라우저 캐시에 남은 구버전(tkds 리다이렉트) 강제 갱신. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
69 lines
3.3 KiB
HTML
69 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>작업 이력 - TK 구매관리</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
<link rel="stylesheet" href="/static/css/tkpurchase.css?v=2026031602">
|
|
</head>
|
|
<body>
|
|
<!-- Header -->
|
|
<header class="bg-emerald-700 text-white sticky top-0 z-50">
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div class="flex justify-between items-center h-14">
|
|
<div class="flex items-center gap-3">
|
|
<i class="fas fa-truck text-xl text-emerald-200"></i>
|
|
<h1 class="text-lg font-semibold">TK 구매관리</h1>
|
|
</div>
|
|
<div class="flex items-center gap-4">
|
|
<div id="headerUserName" class="text-sm font-medium hidden sm:block">-</div>
|
|
<div id="headerUserAvatar" class="w-8 h-8 bg-emerald-600 rounded-full flex items-center justify-center text-sm font-semibold">-</div>
|
|
<button onclick="doLogout()" class="text-emerald-200 hover:text-white" title="로그아웃"><i class="fas fa-sign-out-alt"></i></button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 py-4 fade-in">
|
|
<!-- 네비게이션 -->
|
|
<div class="flex items-center justify-between mb-4">
|
|
<a href="/partner-portal.html" class="flex items-center gap-1 text-sm text-emerald-700 hover:text-emerald-900">
|
|
<i class="fas fa-arrow-left"></i> 포탈로 돌아가기
|
|
</a>
|
|
<h2 class="text-lg font-semibold text-gray-800"><i class="fas fa-history text-emerald-600 mr-1"></i>작업 이력</h2>
|
|
</div>
|
|
|
|
<!-- 필터 -->
|
|
<div class="bg-white rounded-xl shadow-sm p-4 mb-4">
|
|
<div class="flex flex-wrap items-end gap-3">
|
|
<div>
|
|
<label class="block text-xs font-medium text-gray-600 mb-1">시작일</label>
|
|
<input type="date" id="filterDateFrom" class="input-field px-3 py-2 rounded-lg text-sm">
|
|
</div>
|
|
<div>
|
|
<label class="block text-xs font-medium text-gray-600 mb-1">종료일</label>
|
|
<input type="date" id="filterDateTo" class="input-field px-3 py-2 rounded-lg text-sm">
|
|
</div>
|
|
<button onclick="loadHistory()" class="px-4 py-2 bg-emerald-600 text-white rounded-lg text-sm hover:bg-emerald-700">
|
|
<i class="fas fa-search mr-1"></i>조회
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 결과 -->
|
|
<div id="historyList" class="space-y-3">
|
|
<p class="text-gray-400 text-center py-8 text-sm">로딩 중...</p>
|
|
</div>
|
|
|
|
<!-- 페이지네이션 -->
|
|
<div id="historyPagination" class="mt-4 flex justify-center gap-2"></div>
|
|
</div>
|
|
|
|
<script src="/static/js/tkpurchase-core.js?v=2026040101"></script>
|
|
<script src="/static/js/tkpurchase-partner-history.js?v=2026031602"></script>
|
|
<script>initPartnerHistory();</script>
|
|
</body>
|
|
</html>
|