唐润平:UI显示面板开发起步版
This commit is contained in:
25
src/components/content/transducerList/TransducerList.vue
Normal file
25
src/components/content/transducerList/TransducerList.vue
Normal 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>
|
||||
Reference in New Issue
Block a user