115 lines
2.9 KiB
Vue
115 lines
2.9 KiB
Vue
<template>
|
|
<div class="demo roll-list-land-plan" 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: '耿马镇', area: '540', chg: '0.5%' },
|
|
{ title: '勐撒镇', area: '1210', chg: '0.7%' },
|
|
{ title: '孟定镇', area: '188.3', chg: '-0.8%' },
|
|
{ title: '孟简镇', area: '98.7', chg: '1.2%' },
|
|
{ title: '孟永镇', area: '165.5', chg: '0.9%' },
|
|
]);
|
|
|
|
const listKeys = reactive(['title', 'area', 'chg']);
|
|
const listKeysHeader = reactive({
|
|
title: '乡/镇',
|
|
area: '面积',
|
|
chg: '涨跌幅',
|
|
});
|
|
|
|
const classOptions = {
|
|
singleHeight: 48,
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.roll-list-land-plan {
|
|
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: #6cd1f9 !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>
|