Browse Source

1

projects/mescc/lb-home-map
DESKTOP-FUDKNA8\znjsz 5 months ago
parent
commit
c02c26f359
3 changed files with 25 additions and 7 deletions
  1. +2
    -2
      src/views/copilot/container.vue
  2. +21
    -3
      src/views/copilot/efficiency/index.vue
  3. +2
    -2
      src/views/copilot/yield/index.vue

+ 2
- 2
src/views/copilot/container.vue View File

@@ -62,8 +62,8 @@ export default {
} }


.copilot-footer { .copilot-footer {
position: absolute;
bottom: 10px;
/** position: absolute;
bottom: 10px; **/
height: 10px; height: 10px;
width: 100%; width: 100%;
color: rgb(80, 80, 80); color: rgb(80, 80, 80);


+ 21
- 3
src/views/copilot/efficiency/index.vue View File

@@ -6,13 +6,19 @@
--> -->


<template> <template>
<div class="efficiency-copilot">效率驾驶舱</div>
<div class="efficiency-copilot">
<db-container title="芯片良率" icon="chip2"></db-container>
<db-container title="标准组件良率" icon="std"></db-container>
<db-container title="芯片OEE" icon="chip"></db-container>
<db-container title="转化效率" icon="cube"></db-container>
</div>
</template> </template>


<script> <script>
import Container from "../../dashboard/components/Container.vue";
export default { export default {
name: "EfficiencyCopilot", name: "EfficiencyCopilot",
props: {},
components: { DbContainer: Container },
data() { data() {
return {}; return {};
}, },
@@ -21,4 +27,16 @@ export default {
}; };
</script> </script>


<style scoped></style>
<style scoped>
.efficiency-copilot {
flex: 1;
display: grid;
gap: 16px;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
}

.efficiency-copilot > div {
height: 100%;
}
</style>

+ 2
- 2
src/views/copilot/yield/index.vue View File

@@ -55,7 +55,7 @@ export default {
flex: 1; flex: 1;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: space-between;
gap: 16px;
} }


.flex { .flex {
@@ -66,6 +66,6 @@ export default {


.top > div, .top > div,
.bottom > div { .bottom > div {
height: 40vh;
height: 100%;
} }
</style> </style>

Loading…
Cancel
Save