환경 초기화 및 벤더 리포지토리 스켈레톤 도입
This commit is contained in:
@@ -0,0 +1,66 @@
|
||||
import 'package:flutter/widgets.dart';
|
||||
|
||||
import '../../../../../widgets/spec_page.dart';
|
||||
|
||||
class CustomerPage extends StatelessWidget {
|
||||
const CustomerPage({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return const SpecPage(
|
||||
title: '회사(고객사) 관리',
|
||||
summary: '고객사 기본 정보와 연락처, 주소를 관리합니다.',
|
||||
sections: [
|
||||
SpecSection(
|
||||
title: '입력 폼',
|
||||
items: [
|
||||
'고객사코드 [Text]',
|
||||
'고객사명 [Text]',
|
||||
'유형 (파트너/일반) [Dropdown]',
|
||||
'이메일 [Text]',
|
||||
'연락처 [Text]',
|
||||
'우편번호 [검색 연동], 상세주소 [Text]',
|
||||
'사용여부 [Switch]',
|
||||
'비고 [Text]',
|
||||
],
|
||||
),
|
||||
SpecSection(
|
||||
title: '수정 폼',
|
||||
items: ['고객사코드 [ReadOnly]', '생성일시 [ReadOnly]'],
|
||||
),
|
||||
SpecSection(
|
||||
title: '테이블 리스트',
|
||||
description: '1행 예시',
|
||||
table: SpecTable(
|
||||
columns: [
|
||||
'번호',
|
||||
'고객사코드',
|
||||
'고객사명',
|
||||
'유형',
|
||||
'이메일',
|
||||
'연락처',
|
||||
'우편번호',
|
||||
'상세주소',
|
||||
'사용여부',
|
||||
'비고',
|
||||
],
|
||||
rows: [
|
||||
[
|
||||
'1',
|
||||
'C-001',
|
||||
'슈퍼포트 파트너',
|
||||
'파트너',
|
||||
'partner@superport.com',
|
||||
'02-1234-5678',
|
||||
'04532',
|
||||
'서울시 중구 을지로 100',
|
||||
'Y',
|
||||
'-',
|
||||
],
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user