|
@@ -0,0 +1,114 @@
|
|
|
+<template>
|
|
|
+ <div class="table">
|
|
|
+ <div class="table__content">
|
|
|
+ <div class="table__content_label" :class="`table__content_label_${type}`">
|
|
|
+ <div class="label-t" v-for="(item, index) in columns" :key="`svvhbcth-${index}`" :style="{ flexBasis }">{{ item.name }}</div>
|
|
|
+ </div>
|
|
|
+ <div class="table__content_list" :class="`table__content_list_${type}`">
|
|
|
+ <div class="table__content_list_row" v-for="(item, index) in data" :key="`svvhbct-${index}`">
|
|
|
+ <div v-for="(t, i) in columns" :key="`svvhbctr-${i}`" :style="{ flexBasis }" :class="`table__content__list_item_${type}`">
|
|
|
+ <slot :name="t.prop" :scope="item">
|
|
|
+ <span>{{ get(item, t.prop) }}</span>
|
|
|
+ </slot>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script lang="ts" setup>
|
|
|
+ import { computed, defineProps } from 'vue';
|
|
|
+ import _ from 'lodash-es';
|
|
|
+
|
|
|
+ let props = withDefaults(
|
|
|
+ defineProps<{
|
|
|
+ type: string;
|
|
|
+ /** 列表表头配置,每个prop都有其对应的slot来提供定制化功能 */
|
|
|
+ columns: { prop: string; name: string }[];
|
|
|
+ data: any[];
|
|
|
+ defaultValue: string;
|
|
|
+ }>(),
|
|
|
+ {
|
|
|
+ type: 'B',
|
|
|
+ columns: () => [],
|
|
|
+ data: () => [],
|
|
|
+ defaultValue: '/',
|
|
|
+ }
|
|
|
+ );
|
|
|
+
|
|
|
+ const flexBasis = computed(() => {
|
|
|
+ return Math.fround(100 / props.columns.length) + '%';
|
|
|
+ });
|
|
|
+
|
|
|
+ function get(o, p) {
|
|
|
+ const d = _.get(o, p, props.defaultValue);
|
|
|
+ return d === null ? props.defaultValue : d;
|
|
|
+ }
|
|
|
+</script>
|
|
|
+<style lang="less" scoped>
|
|
|
+ @import '@/design/vent/color.less';
|
|
|
+
|
|
|
+ @font-face {
|
|
|
+ font-family: 'douyuFont';
|
|
|
+ src: url('@/assets/font/douyuFont.otf');
|
|
|
+ }
|
|
|
+
|
|
|
+ .table__content {
|
|
|
+ height: 100%;
|
|
|
+ box-sizing: border-box;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+
|
|
|
+ .table__content_label {
|
|
|
+ width: 400px;
|
|
|
+ height: 32px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-around;
|
|
|
+ align-items: center;
|
|
|
+ // background: url('@/assets/images/company/content-label.png') no-repeat;
|
|
|
+ .label-t {
|
|
|
+ // color: #3df6ff;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .table__content_label_B {
|
|
|
+ // border: 1px solid @vent-gas-tab-border;
|
|
|
+ background-image: linear-gradient(to top, #04698c, #04698c00);
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ color: #31b9ef;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table__content_list {
|
|
|
+ height: calc(100% - 32px);
|
|
|
+ width: 400px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ // justify-content: space-around;
|
|
|
+ justify-content: flex-start;
|
|
|
+ padding: 5px 0px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ overflow-y: auto;
|
|
|
+ .table__content_list_row {
|
|
|
+ width: 100%;
|
|
|
+ height: 28px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-around;
|
|
|
+ align-items: flex-start;
|
|
|
+ // background: url('@/assets/images/company/content-text.png') no-repeat;
|
|
|
+ color: #fff;
|
|
|
+ margin-bottom: 5px;
|
|
|
+ span {
|
|
|
+ display: inline-block;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // .table__content__list_item_B {
|
|
|
+ // border: 1px solid @vent-gas-tab-border;
|
|
|
+ // }
|
|
|
+ }
|
|
|
+ }
|
|
|
+</style>
|