diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-11-17 07:06:52 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-11-17 07:06:52 +0000 |
| commit | 1532c1bf4a3236ce9056f33e51ddfebeff79ed5a (patch) | |
| tree | c3f3c43d0f73c4b7df4e34e9b1aa308604c562c9 /lib/rfq-last/vendor | |
| parent | a5be73b70e7d8e6be1724252e6923c664c3771f4 (diff) | |
(최겸) 구매 피드백 처리
Diffstat (limited to 'lib/rfq-last/vendor')
| -rw-r--r-- | lib/rfq-last/vendor/vendor-detail-dialog.tsx | 21 |
1 files changed, 5 insertions, 16 deletions
diff --git a/lib/rfq-last/vendor/vendor-detail-dialog.tsx b/lib/rfq-last/vendor/vendor-detail-dialog.tsx index 181e33c8..9c112efa 100644 --- a/lib/rfq-last/vendor/vendor-detail-dialog.tsx +++ b/lib/rfq-last/vendor/vendor-detail-dialog.tsx @@ -93,14 +93,14 @@ const getStatusConfig = (status: string) => { icon: <AlertCircle className="h-4 w-4" />, color: "text-orange-600", bgColor: "bg-orange-50", - variant: "warning" as const, + variant: "secondary" as const, }; case "최종확정": return { icon: <Shield className="h-4 w-4" />, color: "text-indigo-600", bgColor: "bg-indigo-50", - variant: "success" as const, + variant: "default" as const, }; case "취소": return { @@ -183,11 +183,10 @@ export function VendorResponseDetailDialog({ <div className="flex-1 overflow-y-auto px-6 "> <Tabs defaultValue="overview" className="mb-2"> - <TabsList className="grid w-full grid-cols-4"> + <TabsList className="grid w-full grid-cols-3"> <TabsTrigger value="overview">개요</TabsTrigger> <TabsTrigger value="quotation">견적정보</TabsTrigger> <TabsTrigger value="items">품목상세</TabsTrigger> - <TabsTrigger value="attachments">첨부파일</TabsTrigger> </TabsList> {/* 개요 탭 */} @@ -775,7 +774,7 @@ export function VendorResponseDetailDialog({ </TabsContent> {/* 첨부파일 탭 */} - <TabsContent value="attachments" className="space-y-4"> + {/* <TabsContent value="attachments" className="space-y-4"> {attachments.length > 0 ? ( <Card> <CardHeader> @@ -802,16 +801,6 @@ export function VendorResponseDetailDialog({ </div> </div> <div className="flex items-center gap-2"> - {/* <Button - variant="ghost" - size="sm" - onClick={() => { - // 파일 미리보기 로직 - console.log("Preview file:", file.filePath); - }} - > - <Eye className="h-4 w-4" /> - </Button> */} <Button variant="ghost" size="sm" @@ -837,7 +826,7 @@ export function VendorResponseDetailDialog({ </CardContent> </Card> )} - </TabsContent> + </TabsContent> */} </Tabs> </div> |
