add:电梯系统新增

This commit is contained in:
chenpingsen
2024-07-30 14:35:40 +08:00
parent b55304ef7f
commit 1cf99afbc3
6 changed files with 203 additions and 115 deletions

View File

@@ -1,7 +1,7 @@
<template>
<div class="map-box">
<div class="map">
<liftInfo />
<liftInfo v-for="(item, index) in liftBox" :key="index" :liftInfo="item" />
</div>
</div>
</template>
@@ -16,14 +16,30 @@
onMounted(() => {});
// tab页部分 ========================================================
// 表格数据
const dataSource = ref([]);
const liftBox = ref([
{
name: '办公区域扶梯A',
workState: 1,
faultState: 2,
direction: 1,
type: 2,
isLeft: true,
styleText: { left: '245px', bottom: '230px' },
},
{
name: '办公区域扶梯B',
workState: 0,
faultState: 3,
direction: 0,
type: 1,
isLeft: false,
styleText: { left: '700px', bottom: '360px' },
},
]);
</script>
<style lang="less" scoped>
.map-box {
// 颜色变量,用于区别颜色
// 正常 - 开启 - 上行 -下行
--on: #0dffa4;
// 关闭
@@ -36,6 +52,8 @@
--fault: #ff7636;
// 未知
--unknown: #a742ff;
// 触发图标大小
--size: 40px;
width: 100%;
height: 100%;
.map {