mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 02:32:20 +09:00
107 lines
2.6 KiB
Vue
107 lines
2.6 KiB
Vue
<template>
|
|
<div class="contents">
|
|
<div class="contents_wrap">
|
|
<div class="top_wrap">
|
|
<h3 class="title">권한 관리</h3>
|
|
<p class="breadcrumb">시스템관리 > 권한 관리</p>
|
|
</div>
|
|
<div class="info">
|
|
<div class="count">총 <span>4</span>건</div>
|
|
<div class="button_group">
|
|
<button type="button" class="button blue add" onclick="location.href='system_right_add.html';">권한 추가</button>
|
|
</div>
|
|
</div>
|
|
<div class="table">
|
|
<table>
|
|
<colgroup>
|
|
<col width="10%"/>
|
|
<col width="20%"/>
|
|
<col width="20%"/>
|
|
<col width="15%"/>
|
|
<col width="20%"/>
|
|
<col width="15%"/>
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th>NO</th>
|
|
<th>코드</th>
|
|
<th>권한명</th>
|
|
<th>상태</th>
|
|
<th>등록일</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>4</td>
|
|
<td>Admin_01</td>
|
|
<td>슈퍼관리자</td>
|
|
<td>사용</td>
|
|
<td>2022-03-10</td>
|
|
<td class="two_btn_group">
|
|
<button type="button" class="button grey" onclick="location.href='system_right_modify.html';">수정</button>
|
|
<button type="button" class="button white delete">삭제</button>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>3</td>
|
|
<td>Admin_01</td>
|
|
<td>슈퍼관리자</td>
|
|
<td>사용</td>
|
|
<td>2022-03-10</td>
|
|
<td class="two_btn_group">
|
|
<button type="button" class="button grey">수정</button>
|
|
<button type="button" class="button white delete">삭제</button>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>2</td>
|
|
<td>Admin_01</td>
|
|
<td>슈퍼관리자</td>
|
|
<td>사용</td>
|
|
<td>2022-03-10</td>
|
|
<td class="two_btn_group">
|
|
<button type="button" class="button grey">수정</button>
|
|
<button type="button" class="button white delete">삭제</button>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>1</td>
|
|
<td>Admin_01</td>
|
|
<td>슈퍼관리자</td>
|
|
<td>사용</td>
|
|
<td>2022-03-10</td>
|
|
<td class="two_btn_group">
|
|
<button type="button" class="button grey">수정</button>
|
|
<button type="button" class="button white delete">삭제</button>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'authList',
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
},
|
|
components: {
|
|
|
|
},
|
|
destroyed() {
|
|
|
|
},
|
|
mounted() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
};
|
|
</script> |