update
This commit is contained in:
parent
bb38902445
commit
025e2bbcee
@ -6,7 +6,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<div class="body">
|
<div class="body">
|
||||||
<div class="top">
|
<div class="top">
|
||||||
<div>货架利用率 50%</div>
|
<div>货架利用率 <text>50%</text></div>
|
||||||
<div>传感器&集成器状态</div>
|
<div>传感器&集成器状态</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="center">
|
<div class="center">
|
||||||
@ -27,6 +27,7 @@
|
|||||||
<div class="bottom">
|
<div class="bottom">
|
||||||
<div class="box" v-for="i in 6">1-{{ i }}</div>
|
<div class="box" v-for="i in 6">1-{{ i }}</div>
|
||||||
<div class="kong">空位12</div>
|
<div class="kong">空位12</div>
|
||||||
|
<div class="tip"><Tip></Tip> </div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Border15>
|
</Border15>
|
||||||
@ -35,13 +36,19 @@
|
|||||||
|
|
||||||
<script setup lang='ts'>
|
<script setup lang='ts'>
|
||||||
import Border15 from "@/components/borderBox/border15.vue"
|
import Border15 from "@/components/borderBox/border15.vue"
|
||||||
|
import Tip from "./Tip.vue"
|
||||||
defineProps({
|
defineProps({
|
||||||
config: {
|
config: {
|
||||||
type: Object,
|
type: Object,
|
||||||
default: () => {
|
default: () => {
|
||||||
return {
|
return {
|
||||||
width: 421,
|
width: 421,
|
||||||
height: 218
|
height: 218,
|
||||||
|
data:{
|
||||||
|
name:"T-02M0",
|
||||||
|
rate:50,
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -141,6 +148,7 @@ defineProps({
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
.bottom {
|
.bottom {
|
||||||
|
position: relative;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
flex: 1.5;
|
flex: 1.5;
|
||||||
@ -166,4 +174,11 @@ defineProps({
|
|||||||
color: #fff;
|
color: #fff;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
|
.tip {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 16px;
|
||||||
|
right: 20px;
|
||||||
|
width: 34px;
|
||||||
|
height: 34px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -52,6 +52,13 @@ let centerConfig = ref({
|
|||||||
width:803,
|
width:803,
|
||||||
height:600
|
height:600
|
||||||
})
|
})
|
||||||
|
|
||||||
|
function getGoodsShelvesList() {
|
||||||
|
setTimeout(()=>{
|
||||||
|
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user