만료시 투명도 조절을 하던 부분을 색상 자체를 변경하도록 수정
만료 카드라도 입장처리 및 수정이 가능하도록 변경
This commit is contained in:
@ -197,7 +197,7 @@ $table = "{$fg['vip_list_table']} AS a LEFT JOIN {$fg['vip_category_table']} AS
|
||||
<td class="text-center align-middle"><?=$R['vip_name']?></td>
|
||||
<td class="text-center align-middle"><?=$R['vip_tel']?></td>
|
||||
<td class="text-center align-middle"><?=$R['vip_birth']?></td>
|
||||
<td class="text-center align-middle" style="<?=($is_expired) ? 'color: #999; opacity: 0.6;' : ''?>"><?=($R['vip_date'] == '9999-12-31')? '평생' : $R['vip_date']?></td>
|
||||
<td class="text-center align-middle"><?=($R['vip_date'] == '9999-12-31')? '평생' : $R['vip_date']?></td>
|
||||
<td class="text-center align-middle">
|
||||
<?php
|
||||
$edate = $R['last_ent_date'];
|
||||
@ -206,7 +206,7 @@ $table = "{$fg['vip_list_table']} AS a LEFT JOIN {$fg['vip_category_table']} AS
|
||||
<td class="text-center align-middle"><?=$R['ent_count']?></td>
|
||||
<td class="text-center align-middle d-flex justify-content-center gap-1" onclick="event.stopPropagation();" style="min-height: 60px;">
|
||||
<?php if($_SESSION['user_lv'] > "1"){ ?>
|
||||
<?php if($R['status'] == '정상') { ?>
|
||||
<?php if($R['status'] == '정상' || $R['status'] == '만료') { ?>
|
||||
<a class="btn btn-danger btn-xs" href="javascript:entMemWithConfirm('<?=$R['idx']?>', <?=$is_expired ? 'true' : 'false'?>)" role="button"><i class="fas fa-sign-in-alt"></i></a>
|
||||
<button type="button" class="btn btn-success btn-xs" data-bs-toggle="modal" data-bs-target="#modify_modal_<?=$R['idx']?>" onclick="event.stopPropagation()"><i class="fa-solid fa-pen-to-square"></i></button>
|
||||
<button type="button" class="btn btn-primary btn-xs" data-bs-toggle="modal" data-bs-target="#renew_modal_<?=$R['idx']?>" onclick="event.stopPropagation()"><i class="fa-solid fa-repeat"></i></button>
|
||||
@ -349,8 +349,7 @@ $table = "{$fg['vip_list_table']} AS a LEFT JOIN {$fg['vip_category_table']} AS
|
||||
|
||||
<style>
|
||||
.expired-vip {
|
||||
opacity: 0.7;
|
||||
color: #999;
|
||||
color: #777;
|
||||
}
|
||||
.expired-vip td {
|
||||
color: #999 !important;
|
||||
|
||||
Reference in New Issue
Block a user