update 综合驾驶舱

This commit is contained in:
DESKTOP-FUDKNA8\znjsz
2024-04-29 17:00:53 +08:00
parent bc3a68a9a7
commit 646eb9c270
10 changed files with 190 additions and 268 deletions

View File

@@ -0,0 +1,30 @@
<!--
filename: StockMonitor.vue
author: liubin
date: 2024-04-29 16:35:40
description: 仓库监控·当前
-->
<template>
<div class="stock-monitor">仓库监控</div>
</template>
<script>
export default {
name: "StockMonitor",
components: {},
props: {},
data() {
return {};
},
computed: {},
methods: {},
};
</script>
<style scoped lang="scss">
.stock-monitor {
background: #fff2;
flex: 1;
}
</style>