forked from HANYANG/HANYANG_MES
103 lines
2.9 KiB
PHP
103 lines
2.9 KiB
PHP
<?php
|
|
/*
|
|
* @Overview 검사항목 관리
|
|
* @History 2024-04-05 / 최승연 / 최초작성
|
|
*/
|
|
$cate_id = "BASE_INSP";
|
|
include_once "{$_SERVER['DOCUMENT_ROOT']}/common.inc.php";
|
|
include_once _SVC_INC_PATH_ . "/header.php";
|
|
|
|
?>
|
|
|
|
<div class="container">
|
|
<!-- 사이드바 불러오기 -->
|
|
<?php include_once _SVC_INC_PATH_ . "/sidebar.php"; ?>
|
|
<!-- 사이드바 불러오기 종료 // -->
|
|
|
|
<!-- 검색 조회 및 저장 -->
|
|
<div class="table-header item-header">
|
|
<div class="inner-container">
|
|
|
|
<!-- 검색 조건 (인풋) -->
|
|
<div class="search-container">
|
|
|
|
<div class="input-container flexcol gap06">
|
|
<label for="INSP_ITEM">검사항목</label>
|
|
<div class="input-box">
|
|
<input type="text" id="INSP_ITEM">
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<!-- 검색 조건 종료 // -->
|
|
|
|
<!-- 조회 및 저장 버튼 -->
|
|
<div class="button-container">
|
|
<div class="button-box">
|
|
<button class="point-btn" id="excel_down">엑셀 다운로드</button>
|
|
<button class="point-btn" id="excel_up">엑셀 업로드</button>
|
|
<button class="point-btn" id="filter_btn">조회</button>
|
|
<button class="point-btn" id="put_btn">저장</button>
|
|
</div>
|
|
</div>
|
|
<!-- 조회 및 저장 버튼 종료 // -->
|
|
|
|
</div>
|
|
</div>
|
|
<!-- 검색 조회 및 저장 종료 // -->
|
|
|
|
|
|
|
|
<!-- 컨텐츠 컨테이너 -->
|
|
<div class="contents-container">
|
|
|
|
<!-- 테이블 컨테이너 -->
|
|
<div class="table-container">
|
|
<div class="inner-container">
|
|
|
|
<div class="table-box" id="main_container">
|
|
<!-- 테이블 헤더 (제목, 추가, 삭제, 저장) -->
|
|
<div class="table-title">
|
|
<p class="title">검사항목</p>
|
|
|
|
<!-- 버튼 -->
|
|
<div class="button-box">
|
|
<button class="add-btn reverse-btn">
|
|
<?php include _SVC_INC_PATH_ . '/img/add.php' ?>
|
|
추가
|
|
</button>
|
|
<button class="remove-btn reverse-btn disabled-btn">
|
|
<?php include _SVC_INC_PATH_ . '/img/delete.php' ?>
|
|
삭제
|
|
</button>
|
|
</div>
|
|
<!-- 버튼 종료 // -->
|
|
|
|
</div>
|
|
<!-- 테이블 헤더 종료 // -->
|
|
|
|
<!-- 테이블 -->
|
|
<div class="tb-height-full">
|
|
<div class="hy-table" id="insp_table"></div>
|
|
</div>
|
|
<!-- 테이블 종료 // -->
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<!-- 테이블 컨테이너 종료 // -->
|
|
|
|
</div>
|
|
<!-- 컨텐츠 컨테이너 종료 // -->
|
|
|
|
</div>
|
|
<!-- 메인 섹션 종료 // -->
|
|
</div>
|
|
|
|
|
|
<?php include_once _SVC_INC_PATH_ . "/footer_common.php"; ?>
|
|
<script src="./insp.js"></script>
|
|
<script src="./insp_excel.js"></script>
|
|
<?php
|
|
include_once _SVC_INC_PATH_ . "/footer.php";
|