mirror of
https://github.com/ktds-dg0501/kt-event-marketing.git
synced 2025-12-06 08:06:25 +00:00
prototype final
This commit is contained in:
parent
9d4dea6235
commit
e8e3dce69c
@ -124,7 +124,7 @@
|
||||
const header = KTEventApp.Navigation.createHeader({
|
||||
title: '프로필',
|
||||
showBack: true,
|
||||
showMenu: true,
|
||||
showMenu: false,
|
||||
showProfile: false
|
||||
});
|
||||
document.getElementById('header').appendChild(header);
|
||||
|
||||
@ -89,7 +89,7 @@
|
||||
const header = KTEventApp.Navigation.createHeader({
|
||||
title: '대시보드',
|
||||
showBack: false,
|
||||
showMenu: true,
|
||||
showMenu: false,
|
||||
showProfile: true
|
||||
});
|
||||
document.getElementById('header').appendChild(header);
|
||||
@ -190,16 +190,8 @@
|
||||
// 빠른 시작 버튼 이벤트
|
||||
document.getElementById('createEvent').addEventListener('click', createNewEvent);
|
||||
|
||||
document.getElementById('aiRecommend').addEventListener('click', () => {
|
||||
window.location.href = '07-이벤트목적선택.html';
|
||||
});
|
||||
|
||||
document.getElementById('viewTemplates').addEventListener('click', () => {
|
||||
KTEventApp.Feedback.showToast('템플릿 기능은 준비 중입니다.');
|
||||
});
|
||||
|
||||
document.getElementById('viewAnalytics').addEventListener('click', () => {
|
||||
window.location.href = '13-이벤트상세.html?id=' + events[0].id;
|
||||
window.location.href = '17-성과분석.html';
|
||||
});
|
||||
|
||||
// 새 이벤트 생성 함수
|
||||
|
||||
@ -82,7 +82,7 @@
|
||||
const header = KTEventApp.Navigation.createHeader({
|
||||
title: '이벤트 목록',
|
||||
showBack: true,
|
||||
showMenu: true,
|
||||
showMenu: false,
|
||||
showProfile: true
|
||||
});
|
||||
document.getElementById('header').appendChild(header);
|
||||
|
||||
@ -184,7 +184,7 @@
|
||||
document.getElementById('header').appendChild(header);
|
||||
|
||||
// Bottom Navigation 생성
|
||||
const bottomNav = KTEventApp.Navigation.createBottomNav('analytics');
|
||||
const bottomNav = KTEventApp.Navigation.createBottomNav('events');
|
||||
document.getElementById('bottomNav').appendChild(bottomNav);
|
||||
|
||||
// URL에서 이벤트 ID 가져오기
|
||||
|
||||
@ -82,7 +82,7 @@
|
||||
const header = KTEventApp.Navigation.createHeader({
|
||||
title: '참여자 목록',
|
||||
showBack: true,
|
||||
showMenu: true,
|
||||
showMenu: false,
|
||||
showProfile: true
|
||||
});
|
||||
document.getElementById('header').appendChild(header);
|
||||
|
||||
@ -345,7 +345,7 @@
|
||||
const header = KTEventApp.Navigation.createHeader({
|
||||
title: '실시간 대시보드',
|
||||
showBack: true,
|
||||
showMenu: true,
|
||||
showMenu: false,
|
||||
showProfile: true
|
||||
});
|
||||
document.getElementById('header').appendChild(header);
|
||||
|
||||
2
design/uiux/prototype/common.js
vendored
2
design/uiux/prototype/common.js
vendored
@ -207,7 +207,7 @@ const KTEventApp = (() => {
|
||||
const navItems = [
|
||||
{ id: 'home', label: '홈', icon: 'home', href: '05-대시보드.html' },
|
||||
{ id: 'events', label: '이벤트', icon: 'celebration', href: '06-이벤트목록.html' },
|
||||
{ id: 'analytics', label: '분석', icon: 'analytics', href: '13-이벤트상세.html' },
|
||||
{ id: 'analytics', label: '분석', icon: 'analytics', href: '17-성과분석.html' },
|
||||
{ id: 'profile', label: '프로필', icon: 'person', href: '03-프로필.html' }
|
||||
];
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user