28 lines
942 B
TypeScript
28 lines
942 B
TypeScript
|
|
import { ClipboardCheck } from 'lucide-react';
|
||
|
|
import type { DetailConfig } from '@/components/templates/IntegratedDetailTemplate/types';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 검수관리 상세 페이지 Config
|
||
|
|
*
|
||
|
|
* 참고: 이 config는 타이틀/버튼 영역만 정의
|
||
|
|
* 폼 내용은 기존 InspectionDetail의 renderView/renderForm에서 처리
|
||
|
|
* (검사 데이터 테이블, 측정값 입력, validation 등 특수 기능 유지)
|
||
|
|
*/
|
||
|
|
export const inspectionConfig: DetailConfig = {
|
||
|
|
title: '검사 상세',
|
||
|
|
description: '검사 정보를 조회하고 관리합니다',
|
||
|
|
icon: ClipboardCheck,
|
||
|
|
basePath: '/quality/inspections',
|
||
|
|
fields: [], // renderView/renderForm 사용으로 필드 정의 불필요
|
||
|
|
gridColumns: 2,
|
||
|
|
actions: {
|
||
|
|
showBack: true,
|
||
|
|
showDelete: false, // 검수관리는 삭제 기능 없음
|
||
|
|
showEdit: true,
|
||
|
|
backLabel: '목록',
|
||
|
|
editLabel: '수정',
|
||
|
|
submitLabel: '수정 완료',
|
||
|
|
cancelLabel: '취소',
|
||
|
|
},
|
||
|
|
};
|