After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 4.9 KiB |
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 5.1 KiB |
@ -0,0 +1,103 @@
|
||||
<template>
|
||||
<div class="loveflowscreen tableCustomPanel">
|
||||
<div class="jfTableWrap">
|
||||
<div class="cusWrap" v-for="(item, index) in dataSource" :key="item.id">
|
||||
<div class="line">
|
||||
<div class="num">{{ index + 1 }}</div>
|
||||
<div class="detail">{{ item.detail }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tableWrap">
|
||||
<gScreenTable
|
||||
stripe
|
||||
ref="gScreenTable"
|
||||
:tableData="dataSource"
|
||||
:columns="column"
|
||||
rowKey="id"
|
||||
:pagination="ipagination"
|
||||
@pageSizeChange="handlePageSizeChange"
|
||||
@currentPageChange="handleCurrentPageChange"
|
||||
>
|
||||
</gScreenTable>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import { tableListMixins } from "@/loveflow/mixins/tableListMixins";
|
||||
|
||||
export default {
|
||||
mixins: [tableListMixins],
|
||||
data() {
|
||||
return {
|
||||
column: [
|
||||
{
|
||||
prop: "id",
|
||||
label: "查处点",
|
||||
},
|
||||
],
|
||||
disableMixinCreated: true,
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.ipagination.pageSize = 6;
|
||||
this.ipagination.pageSizes = [];
|
||||
this.ipagination.layout = "total, prev, pager, next";
|
||||
this.loadData();
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="scss">
|
||||
@import "@/loveflow/assets/index.scss";
|
||||
.tableCustomPanel {
|
||||
height: 100%;
|
||||
|
||||
.jfTableWrap {
|
||||
height: calc(100% - 30px);
|
||||
overflow: scroll;
|
||||
&::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
.cusWrap {
|
||||
margin-top: 10px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: vw(50);
|
||||
background: url("~@/assets/images/topic/nbzatb.png") no-repeat center
|
||||
center;
|
||||
background-size: 100% 100%;
|
||||
padding: 0 8px;
|
||||
.line {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
.num {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: vw(18);
|
||||
height: vw(18);
|
||||
font-weight: 600;
|
||||
font-size: vw(14);
|
||||
color: #d9e7ff;
|
||||
border: solid 1px #d9e7ff;
|
||||
border-radius: 2px;
|
||||
}
|
||||
.detail {
|
||||
padding-left: vw(10);
|
||||
flex: 1;
|
||||
font-weight: 400;
|
||||
font-size: vw(12);
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.tableWrap {
|
||||
height: 100%;
|
||||
.gScreenTableWrap {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
@ -0,0 +1,76 @@
|
||||
<template>
|
||||
<div class="inSecurityListWrap">
|
||||
<div class="line" v-for="(item, index) in dataList" :key="item.id">
|
||||
<div class="nameWrap">
|
||||
<div class="num">{{ index + 1 }}</div>
|
||||
<div class="name">{{ item.name }}</div>
|
||||
</div>
|
||||
<div class="value">{{ item.value.toLocaleString() + item.unit }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
dataList: {
|
||||
type: Array,
|
||||
default: () => {
|
||||
return [];
|
||||
},
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {};
|
||||
},
|
||||
created() {},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import "@/loveflow/assets/index.scss";
|
||||
.inSecurityListWrap {
|
||||
height: 100%;
|
||||
overflow: scroll;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
&::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
.line {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
flex: 1;
|
||||
padding: 0 vw(10);
|
||||
&:nth-child(odd) {
|
||||
background-color: rgba(108, 128, 151, 0.1);
|
||||
}
|
||||
.nameWrap {
|
||||
display: flex;
|
||||
}
|
||||
.num {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: vw(18);
|
||||
height: vw(18);
|
||||
margin-right: vw(6);
|
||||
font-weight: 400;
|
||||
font-size: vw(12);
|
||||
color: #9cffc8;
|
||||
border: solid 1px #9cffc8;
|
||||
border-radius: 2px;
|
||||
}
|
||||
.name {
|
||||
font-weight: 400;
|
||||
font-size: vw(12);
|
||||
color: #ffffff;
|
||||
}
|
||||
.value {
|
||||
font-weight: 400;
|
||||
font-size: vw(12);
|
||||
color: #9cffc8;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|