2025-04-23 17:17:07 +08:00

120 lines
3.5 KiB
Vue

<template>
<div class="demo roll-list-lentities" style="height: 90%">
<div class="list-item-header item-warp" :style="{ flex: listKeys.length }">
<template v-for="(h, indexh) in listKeys" :key="indexh">
<div class="item-td" :style="{ width: 'calc(100% / ' + listKeys.length + ')' }">{{ listKeysHeader[h] }}</div>
</template>
</div>
<vue3ScrollSeamless class="scroll-wrap" :class-options="classOptions" :data-list="list">
<div v-for="(item, index) in list" :key="index" class="list-item">
<div class="list-item-content">
<div class="list-item-boday item-warp" :style="{ flex: listKeys.length }">
<template v-for="(b, indexb) in listKeys" :key="indexb">
<div class="item-td" :class="{ 'zebra-b': (index + 1) % 2 == 0 }" :style="{ width: 'calc(100% / ' + listKeys.length + ')' }">
{{ item[b] }}
</div>
</template>
</div>
</div>
</div>
</vue3ScrollSeamless>
</div>
<!-- </div> -->
</template>
<script setup>
import { ref, onMounted, onUnmounted, computed, reactive } from 'vue';
import { vue3ScrollSeamless } from 'vue3-scroll-seamless';
const props = defineProps({
// items: {
// type: Array,
// default: () => [],
// },
});
let list = reactive([
{ title: '信达农资有限公司', type: '农药', time: '2025.01.02', duration: 8 },
{ title: '方大种源有限公司', type: '种源', time: '2025.01.01', duration: 10 },
{ title: '信誉种源有限公司', type: '种源', time: '2025.01.02', duration: 11 },
{ title: '嘉兴包装有限公司', type: '生产加工', time: '2025.01.01', duration: 15 },
{ title: '达国有限公司', type: '农资', time: '2025.01.02', duration: 14 },
{ title: '华威种植专业合作社', type: '合作社', time: '2025.01.01', duration: 8 },
{ title: '信誉种源合作社', type: '合作社', time: '2025.01.02', duration: 15 },
{ title: '华泰种源有限公司', type: '种源', time: '2025.01.01', duration: 13 },
{ title: '嘉德食品包装包装有限公司', type: '生产加工', time: '2025.01.02', duration: 5 },
]);
const listKeys = reactive(['title', 'type', 'time', 'duration']);
const listKeysHeader = reactive({
title: '主体名称',
type: '主体类别',
time: '注册时间',
duration: '经营时间',
});
const classOptions = {
singleHeight: 48,
};
</script>
<style scoped lang="scss">
.roll-list-lentities {
margin-top: 8px;
.scroll-wrap {
height: 80%;
width: 100%;
margin: 4px auto;
overflow: hidden;
}
.list-item-header {
background: #144482;
font-size: 10px;
width: 100%;
.item-td {
padding: 8px 6px;
}
}
.list-item-boday {
background: transparent;
width: 100%;
.item-td {
padding: 4px 6px;
&.td-title {
color: #6beff9 !important;
}
&.zebra-b {
background: #051225 !important;
}
}
}
.item-warp {
display: inline-flex;
justify-content: space-around;
.item-td {
display: inline-block;
vertical-align: middle;
text-align: center;
color: #fff;
}
}
.list-item {
// border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
line-height: 18px;
.list-item-content {
display: inline-flex;
width: 100%;
justify-content: space-around;
position: relative;
}
}
}
.demo {
// display: flex;
// align-items: center;
// justify-content: center;
// margin-top: 10px;
}
</style>