唐润平:UI显示面板开发起步版

This commit is contained in:
trp
2023-12-08 16:12:55 +08:00
parent 3edbf7312f
commit e20b7c1002
34 changed files with 1202 additions and 4 deletions

View File

@@ -0,0 +1,25 @@
<template>
<div id="transducer-list">
<transducer-item v-for="(item, key) in 6" :isFirst="key === 0" />
</div>
</template>
<script setup>
import TransducerItem from "./childComps/TransducerItem.vue";
</script>
<style lang="scss" scoped>
#transducer-list {
color: rgb(226, 26, 26);
position: absolute;
top: 744px;
left: 70px;
width: 826px;
height: 928px;
background-image: url(../../../assets/images/transducer/bg.png);
background-position: center center;
background-size: 100%;
background-repeat: no-repeat;
padding: 30px;
}
</style>