feat(frontend): ocp added
This commit is contained in:
5
frontend/src/components/production/ocp/LabelLog.tsx
Normal file
5
frontend/src/components/production/ocp/LabelLog.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import {LstCard} from "@/components/extendedUI/LstCard";
|
||||
|
||||
export default function LabelLog() {
|
||||
return <LstCard className="m-2 p-2"> label logs here</LstCard>;
|
||||
}
|
||||
9
frontend/src/components/production/ocp/Lots.tsx
Normal file
9
frontend/src/components/production/ocp/Lots.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import {LstCard} from "@/components/extendedUI/LstCard";
|
||||
|
||||
export default function Lots() {
|
||||
return (
|
||||
<LstCard className="m-2 p-2 min-h-2/5">
|
||||
<h1>Lots</h1>
|
||||
</LstCard>
|
||||
);
|
||||
}
|
||||
5
frontend/src/components/production/ocp/OcpLogs.tsx
Normal file
5
frontend/src/components/production/ocp/OcpLogs.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import {LstCard} from "@/components/extendedUI/LstCard";
|
||||
|
||||
export default function OcpLogs() {
|
||||
return <LstCard className="m-2 p-2">Ocp Logs</LstCard>;
|
||||
}
|
||||
30
frontend/src/components/production/ocp/OcpPage.tsx
Normal file
30
frontend/src/components/production/ocp/OcpPage.tsx
Normal file
@@ -0,0 +1,30 @@
|
||||
import LabelLog from "./LabelLog";
|
||||
import Lots from "./Lots";
|
||||
import OcpLogs from "./OcpLogs";
|
||||
import PrinterStatus from "./PrinterStatus";
|
||||
|
||||
export default function OCPPage() {
|
||||
return (
|
||||
<div className="h-dvh w-full overflow-hidden">
|
||||
<div className="flex flex-wrap gap-2">
|
||||
<div className="flex flex-col w-4/5 h-dvh">
|
||||
<div className="">
|
||||
<Lots />
|
||||
</div>
|
||||
|
||||
<div className="flex flex-row">
|
||||
<div className="w-1/2">
|
||||
<LabelLog />
|
||||
</div>
|
||||
<div className="w-1/2">
|
||||
<OcpLogs />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="w-1/6">
|
||||
<PrinterStatus />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
5
frontend/src/components/production/ocp/PrinterStatus.tsx
Normal file
5
frontend/src/components/production/ocp/PrinterStatus.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import {LstCard} from "@/components/extendedUI/LstCard";
|
||||
|
||||
export default function PrinterStatus() {
|
||||
return <LstCard className="m-2 p-2">Printer Status</LstCard>;
|
||||
}
|
||||
Reference in New Issue
Block a user