This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { useState, useEffect, useMemo } from 'react'; | |
| import { Box, Container, RefreshCw, Package, Truck, Rotate3d, Settings, Ruler, Plus, Trash2, LayoutList, ChevronLeft, ChevronRight, CheckSquare, Square, Scissors, Scale, Play, Pause, SkipBack, Layers, Folder, FileText, ArrowRight, Palette, Infinity, Weight } from 'lucide-react'; | |
| // 标准集装箱尺寸 (单位: mm) | |
| const CONTAINER_TYPES = { | |
| '20GP': { length: 5898, width: 2352, height: 2393, maxWeight: 28000, name: "20' 标准柜" }, | |
| '40GP': { length: 12032, width: 2352, height: 2393, maxWeight: 26000, name: "40' 标准柜" }, | |
| '40HQ': { length: 12032, width: 2352, height: 2698, maxWeight: 26000, name: "40' 高柜" }, | |
| 'CUSTOM': { length: 0, width: 0, height: 0, maxWeight: 0, name: "自定义" } | |
| }; |