| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php include_once($_SERVER['DOCUMENT_ROOT']."/aap/include/top.php"); ?>
- <header>
- <div class="header--wrapper">
- <div class="header--contents">
- <h1 class="logo" onclick="link('/aap/main.php')"></h1>
- <div class="gnb--wrapper">
- <a href="standby_list.php" class="<?if($MENU_ACTV == 1){?>actv<?}?>">입찰대기</a>
- <a href="prepare_list.php" class="<?if($MENU_ACTV == 2){?>actv<?}?>">입찰중</a>
- <a href="complete_list.php" class="<?if($MENU_ACTV == 3){?>actv<?}?>">낙찰</a>
- <a href="underway_list.php" class="<?if($MENU_ACTV == 4){?>actv<?}?>">거래중</a>
- <a href="end_list.php" class="<?if($MENU_ACTV == 5){?>actv<?}?>">매입완료</a>
- <a href="delay_list.php" class="<?if($MENU_ACTV == 6){?>actv<?}?>">거래연기</a>
- <a href="fail_list.php" class="<?if($MENU_ACTV == 7){?>actv<?}?>">유찰</a>
- <?php if(isset($_SESSION['s_aap_ds_type']) && !empty($_SESSION['s_aap_ds_type']) && $_SESSION['s_aap_ds_type'] == "D0") { ?>
- <a href="manager_list.php" class="<?if($MENU_ACTV == 8){?>actv<?}?>">관리자 관리</a>
- <?php } ?>
- </div>
- <!--
- 레이아웃 깨지는 부분 무시하시고 개발 진행하여주세요
- 디자인 추후 붙일 얘정입니다.
- -->
- <?php if(!empty($_SESSION['s_cd_dealerid'])) { ?>
- <div class="log--menu--wrap">
- <a href="mypage.php" class="my--page--btn"></a>
- <a href="logout.php" class="log--btn"></a>
- </div>
- <?php } else {?>
- <div class="log--menu--wrap">
- <a href="login.php" class="log--btn"></a>
- </div>
- <?php } ?>
- </div>
- </div>
- </header>
- <style>
- /* 20230428 */
- .car_option_popup .options--list > ul{
- flex-wrap:wrap;
- }
- .car_option_popup .options--list > ul > li{
- margin:5px 0px;
- }
- </style>
|