大屏组件开发
This commit is contained in:
@@ -30,7 +30,12 @@
|
|||||||
:limitArea="data.limitArea === '1'"
|
:limitArea="data.limitArea === '1'"
|
||||||
:is3dAround="data.is3dAround === '1'">
|
:is3dAround="data.is3dAround === '1'">
|
||||||
</ai-q-map> -->
|
</ai-q-map> -->
|
||||||
<AiDvTable v-else-if="data.type === 'AiDvTable'" :heigth="'100%'" :data="values"/>
|
<AiDvTable
|
||||||
|
v-else-if="data.type === 'AiDvTable'"
|
||||||
|
:heigth="'100%'"
|
||||||
|
:isShowIndex="data.isShowIndex"
|
||||||
|
:data="values">
|
||||||
|
</AiDvTable>
|
||||||
<ai-map v-else-if="data.type=='map'" :mask="data.mask === '1'" :areaId="data.areaId" :is3d="data.is3d==1" :is3dAround="data.is3dAround === '1'"
|
<ai-map v-else-if="data.type=='map'" :mask="data.mask === '1'" :areaId="data.areaId" :is3d="data.is3d==1" :is3dAround="data.is3dAround === '1'"
|
||||||
:map-style="`amap://styles/${data.mapStyle}`" :pulseLines="data.pulseLines==1" :map.sync="map" :lib.sync="lib" :onlyShowArea="data.limitArea==1"/>
|
:map-style="`amap://styles/${data.mapStyle}`" :pulseLines="data.pulseLines==1" :map.sync="map" :lib.sync="lib" :onlyShowArea="data.limitArea==1"/>
|
||||||
<ai-monitor :src="data.src" v-else-if="data.type === 'monitor'" :type="data.monitorType"/>
|
<ai-monitor :src="data.src" v-else-if="data.type === 'monitor'" :type="data.monitorType"/>
|
||||||
|
|||||||
@@ -1,11 +1,23 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="aiDvTable">
|
<div class="aiDvTable">
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<span v-for="(item, index) in header" :key="index">{{ item }}</span>
|
<span
|
||||||
|
v-for="(item, index) in header"
|
||||||
|
:key="index"
|
||||||
|
:style="{
|
||||||
|
width: item.width + 'px', flex: item.width ? 'inherit' : 1}">
|
||||||
|
{{ item.v }}
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="body">
|
<div class="body">
|
||||||
<div class="row" v-for="(item, index) in body" :key="index">
|
<div class="row" v-for="(item, index) in body" :key="index">
|
||||||
<span v-for="(column, i) in item" :key="i">{{ column }}</span>
|
<div
|
||||||
|
v-for="(column, i) in item"
|
||||||
|
:key="i"
|
||||||
|
:style="{color: column.color, width: column.width + 'px', flex: column.width ? 'inherit' : 1}">
|
||||||
|
<i v-if="isShowIndex === '1' && i === 0">{{ index + 1 }}</i>
|
||||||
|
<span>{{ column.v }}</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -19,13 +31,19 @@
|
|||||||
data: {
|
data: {
|
||||||
type: Array,
|
type: Array,
|
||||||
default: () => []
|
default: () => []
|
||||||
|
},
|
||||||
|
|
||||||
|
isShowIndex: {
|
||||||
|
type: String,
|
||||||
|
default: '0'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
header: [],
|
header: [],
|
||||||
body: []
|
body: [],
|
||||||
|
colorIndex: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -52,12 +70,26 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
const headerKey = Object.keys(value[0])[0]
|
const headerKey = Object.keys(value[0])[0]
|
||||||
const bodyKey = Object.keys(value[0]).filter(v => v !== headerKey)
|
const bodyKey = Object.keys(value[0]).filter(v => {
|
||||||
this.header = this.data.map(v => v[headerKey])
|
return v !== headerKey && v !== 'color' && v !== 'width'
|
||||||
this.body = bodyKey.map(v => {
|
})
|
||||||
return value.map(e => e[v])
|
|
||||||
|
this.header = value.map(v => {
|
||||||
|
return {
|
||||||
|
v: v[headerKey],
|
||||||
|
width: v.width || ''
|
||||||
|
}
|
||||||
|
})
|
||||||
|
console.log(this.header)
|
||||||
|
this.body = bodyKey.map(v => {
|
||||||
|
return value.map(e => {
|
||||||
|
return {
|
||||||
|
v: e[v],
|
||||||
|
color: e.color,
|
||||||
|
width: e.width || ''
|
||||||
|
}
|
||||||
|
})
|
||||||
})
|
})
|
||||||
console.log(this.body)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -65,6 +97,8 @@
|
|||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.aiDvTable {
|
.aiDvTable {
|
||||||
|
height: 100%;
|
||||||
|
overflow: hidden;
|
||||||
.header {
|
.header {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -77,7 +111,7 @@
|
|||||||
flex: 1;
|
flex: 1;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: #bfc0bb;
|
color: rgba(255, 255, 255, 0.7);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
@@ -90,14 +124,20 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.body {
|
.body {
|
||||||
padding: 10px;
|
height: calc(100% - 40px);
|
||||||
|
padding: 10px 12px;
|
||||||
|
overflow-y: auto;
|
||||||
|
box-sizing: border-box;
|
||||||
.row {
|
.row {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 52px;
|
height: 52px;
|
||||||
|
|
||||||
span {
|
div {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@@ -107,7 +147,29 @@
|
|||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
-o-text-overflow:ellipsis;
|
-o-text-overflow:ellipsis;
|
||||||
|
|
||||||
|
span {
|
||||||
|
flex: 1;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
-o-text-overflow:ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
i {
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
line-height: 20px;
|
||||||
|
margin-right: 10px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 12px;
|
||||||
|
color: #18FEFE;
|
||||||
|
font-style: normal;
|
||||||
|
background: url(./asset/rankbg.png) no-repeat;
|
||||||
|
background-size: 100% 100%;
|
||||||
|
}
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
|
justify-content: start;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
BIN
components/layout/AiDvTable/asset/rankbg.png
Normal file
BIN
components/layout/AiDvTable/asset/rankbg.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 284 B |
@@ -51,5 +51,23 @@ export default {
|
|||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.preview {
|
.preview {
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 5px;
|
||||||
|
height: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar-corner {
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
min-height: 20px;
|
||||||
|
background-clip: content-box;
|
||||||
|
box-shadow: 0 0 0 5px rgba(116, 148, 170, 0.5) inset;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar-track {
|
||||||
|
box-shadow: 1px 1px 5px rgba(116, 148, 170, 0.5) inset;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user