header.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php include_once($_SERVER['DOCUMENT_ROOT']."/aap/include/top.php"); ?>
  2. <header>
  3. <div class="header--wrapper">
  4. <div class="header--contents">
  5. <h1 class="logo" onclick="link('/aap/main.php')"></h1>
  6. <div class="gnb--wrapper">
  7. <a href="standby_list.php" class="<?if($MENU_ACTV == 1){?>actv<?}?>">입찰대기</a>
  8. <a href="prepare_list.php" class="<?if($MENU_ACTV == 2){?>actv<?}?>">입찰중</a>
  9. <a href="complete_list.php" class="<?if($MENU_ACTV == 3){?>actv<?}?>">낙찰</a>
  10. <a href="underway_list.php" class="<?if($MENU_ACTV == 4){?>actv<?}?>">거래중</a>
  11. <a href="end_list.php" class="<?if($MENU_ACTV == 5){?>actv<?}?>">매입완료</a>
  12. <a href="delay_list.php" class="<?if($MENU_ACTV == 6){?>actv<?}?>">거래연기</a>
  13. <a href="fail_list.php" class="<?if($MENU_ACTV == 7){?>actv<?}?>">유찰</a>
  14. <?php if(isset($_SESSION['s_aap_ds_type']) && !empty($_SESSION['s_aap_ds_type']) && $_SESSION['s_aap_ds_type'] == "D0") { ?>
  15. <a href="manager_list.php" class="<?if($MENU_ACTV == 8){?>actv<?}?>">관리자 관리</a>
  16. <?php } ?>
  17. </div>
  18. <!--
  19. 레이아웃 깨지는 부분 무시하시고 개발 진행하여주세요
  20. 디자인 추후 붙일 얘정입니다.
  21. -->
  22. <?php if(!empty($_SESSION['s_cd_dealerid'])) { ?>
  23. <div class="log--menu--wrap">
  24. <a href="mypage.php" class="my--page--btn"></a>
  25. <a href="logout.php" class="log--btn"></a>
  26. </div>
  27. <?php } else {?>
  28. <div class="log--menu--wrap">
  29. <a href="login.php" class="log--btn"></a>
  30. </div>
  31. <?php } ?>
  32. </div>
  33. </div>
  34. </header>
  35. <style>
  36. /* 20230428 */
  37. .car_option_popup .options--list > ul{
  38. flex-wrap:wrap;
  39. }
  40. .car_option_popup .options--list > ul > li{
  41. margin:5px 0px;
  42. }
  43. </style>