122 lines
3.1 KiB
Vue
122 lines
3.1 KiB
Vue
<template>
|
|
<div class="demo roll-list-patrol" 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="item.status == 1 ? 'td-title' : 'td-warn'" :style="{ width: 'calc(100% / ' + listKeys.length + ')' }">
|
|
<span v-if="b != 'status'">
|
|
{{ item[b] }}
|
|
</span>
|
|
<el-icon v-else>
|
|
<Bell></Bell>
|
|
</el-icon>
|
|
</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: '耿马镇', waitNum: '24', violation: '14', status: 1 },
|
|
{ title: '勐撒镇', waitNum: '16', violation: '14', status: 1 },
|
|
{ title: '孟定镇', waitNum: '8', violation: '24', status: 0 },
|
|
{ title: '孟简镇', waitNum: '9', violation: '8', status: 1 },
|
|
{ title: '孟永镇', waitNum: '14', violation: '15', status: 1 },
|
|
]);
|
|
|
|
const listKeys = reactive(['title', 'waitNum', 'violation', 'status']);
|
|
const listKeysHeader = reactive({
|
|
title: '乡/镇',
|
|
waitNum: '待巡查',
|
|
violation: '违规案件',
|
|
status: '预警',
|
|
});
|
|
|
|
const classOptions = {
|
|
singleHeight: 48,
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.roll-list-patrol {
|
|
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;
|
|
}
|
|
|
|
&.td-warn {
|
|
color: red !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>
|