프로토~ 7

This commit is contained in:
doyeon 2025-10-20 15:09:48 +09:00
parent af5672847f
commit 49684cc3ca
7 changed files with 30 additions and 9 deletions

View File

@ -715,11 +715,11 @@
</div>
</div>
`,
confirmText: '대시보드로 이동',
confirmText: '홈으로 이동',
showCancel: false,
onConfirm: function() {
// 실시간 대시보드로 이동 (아직 미구현이므로 임시 페이지로)
window.location.href = '21-실시간대시보드.html';
// 홈 화면으로 이동
window.location.href = '21.5-홈.html';
}
});
}, 1500);

View File

@ -282,6 +282,7 @@
// 목적 선택 처리
function handlePurposeSelection(value) {
selectedPurpose = value;
console.log('선택된 목적:', value);
// 모든 카드에서 selected 클래스 제거
purposeCards.forEach(card => {
@ -296,6 +297,9 @@
// 다음 버튼 활성화
nextBtn.disabled = false;
nextBtn.style.opacity = '1';
nextBtn.style.cursor = 'pointer';
console.log('다음 버튼 활성화됨');
// 선택 완료 피드백
Toast.success(`${purposeDetails[value].title}이(가) 선택되었습니다.`);
@ -377,7 +381,7 @@
'이벤트 기획 종료',
'현재까지 입력한 내용이 저장되지 않습니다. 정말 종료하시겠습니까?',
function() {
window.location.href = '21-실시간대시보드.html';
window.location.href = '21.5-홈.html';
}
);
};

View File

@ -21,10 +21,13 @@
<div class="app-wrapper">
<!-- Top App Bar -->
<header class="app-bar">
<button class="app-bar__back" aria-label="뒤로가기">
<button class="app-bar__back" aria-label="뒤로가기" onclick="window.history.back()">
<span class="material-icons">arrow_back</span>
</button>
<h1 class="app-bar__title">AI 트렌드 분석</h1>
<button class="app-bar__action" aria-label="홈으로" onclick="window.location.href='21.5-홈.html'">
<span class="material-icons">close</span>
</button>
</header>
<!-- Main Content -->

View File

@ -21,10 +21,13 @@
<div class="app-wrapper">
<!-- Top App Bar -->
<header class="app-bar">
<button class="app-bar__back" aria-label="뒤로가기">
<button class="app-bar__back" aria-label="뒤로가기" onclick="window.history.back()">
<span class="material-icons">arrow_back</span>
</button>
<h1 class="app-bar__title">AI 경품 추천</h1>
<button class="app-bar__action" aria-label="홈으로" onclick="window.location.href='21.5-홈.html'">
<span class="material-icons">close</span>
</button>
</header>
<!-- Main Content -->

View File

@ -21,10 +21,13 @@
<div class="app-wrapper">
<!-- Top App Bar -->
<header class="app-bar">
<button class="app-bar__back" aria-label="뒤로가기">
<button class="app-bar__back" aria-label="뒤로가기" onclick="window.history.back()">
<span class="material-icons">arrow_back</span>
</button>
<h1 class="app-bar__title">AI 참여방법 설계</h1>
<button class="app-bar__action" aria-label="홈으로" onclick="window.location.href='21.5-홈.html'">
<span class="material-icons">close</span>
</button>
</header>
<!-- Main Content -->

View File

@ -21,10 +21,13 @@
<div class="app-wrapper">
<!-- Top App Bar -->
<header class="app-bar">
<button class="app-bar__back" aria-label="뒤로가기">
<button class="app-bar__back" aria-label="뒤로가기" onclick="window.history.back()">
<span class="material-icons">arrow_back</span>
</button>
<h1 class="app-bar__title">AI 홍보문구 생성</h1>
<button class="app-bar__action" aria-label="홈으로" onclick="window.location.href='21.5-홈.html'">
<span class="material-icons">close</span>
</button>
</header>
<!-- Main Content -->

View File

@ -22,7 +22,12 @@
<span class="material-icons">arrow_back</span>
</button>
<h1 class="header-title">이벤트 기획안 승인</h1>
<div style="width: 40px;"></div>
<button type="button"
class="btn-icon"
onclick="window.location.href='21.5-홈.html'"
aria-label="홈으로">
<span class="material-icons">close</span>
</button>
</div>
</header>