123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- <template>
- <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>
- </template>
- <script lang="ts" setup>
- import { computed, defineProps } from 'vue';
- import _ from 'lodash';
- let props = withDefaults(
- defineProps<{
-
- type: string;
-
- 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);
- return _.isNil(d) ? props.defaultValue : d === '' ? props.defaultValue : d;
- }
- </script>
- <style lang="less" scoped>
- @import '/@/design/theme.less';
- @import '@/design/vent/color.less';
- @font-face {
- font-family: 'douyuFont';
- src: url('/@/assets/font/douyuFont.otf');
- }
- @{theme-deepblue} {
- .table__content {
- --image-content-label: url(/@/assets/images/themify/deepblue/company/content-label.png);
- --image-content-text: url('/@/assets/images/themify/deepblue/company/content-text.png');
- --image-list-head: url('/@/assets/images/themify/deepblue/configurable/firehome/list-head.png');
- --image-content-text: url('/@/assets/images/themify/deepblue/company/content-text.png');
- --image-content-text: url('/@/assets/images/themify/deepblue/company/content-text.png');
- }
- }
- .table__content {
- --image-content-label: url(/@/assets/images/company/content-label.png);
- --image-content-text: url('/@/assets/images/company/content-text.png');
- --image-list-head: url('/@/assets/images/home-container/configurable/firehome/list-head.png');
- --image-content-text: url('/@/assets/images/company/content-text.png');
- --image-content-text: url('/@/assets/images/company/content-text.png');
- height: 100%;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 5px 0;
- .table__content_label {
- width: 400px;
- height: 32px;
- display: flex;
- justify-content: space-around;
- align-items: center;
- .label-t {
- text-align: center;
- font-size: 14px;
- }
- }
- .table__content_label_A {
- background-image: var(--image-content-label);
- background-size: 100% 100%;
- background-repeat: no-repeat;
- color: #31b9ef;
- }
- .table__content_label_B {
- background-image: linear-gradient(to top, #04698c, #04698c00);
- background-size: 100% 100%;
- background-repeat: no-repeat;
- color: #31b9ef;
- }
- .table__content_label_C {
- background-position: center 100%;
- background-size: 100% 25px;
- background-repeat: no-repeat;
- background-image: var(--image-content-text);
- height: 40px;
- .label-t {
- background-repeat: no-repeat;
- background-size: 80% auto;
- background-position: center;
- background-image: var(--image-list-head);
- }
- }
- .table__content_list {
- height: calc(100% - 32px);
- width: 400px;
- display: flex;
- flex-direction: column;
- padding: 5px 0;
- box-sizing: border-box;
- overflow-y: auto;
- .table__content_list_row {
- width: 100%;
- display: flex;
- justify-content: space-around;
- align-items: center;
- color: #fff;
- margin-bottom: 5px;
- span {
- display: inline-block;
- text-align: center;
- }
- }
- }
- .table__content_list_A {
- .table__content_list_row {
- background-size: 100% auto;
- background-repeat: no-repeat;
- background-position: center bottom;
- background-image: var(--image-content-text);
- }
- }
- .table__content_list_C {
- .table__content_list_row {
- min-height: 50px;
- background-size: 100% auto;
- background-repeat: no-repeat;
- background-position: center bottom;
- background-image: var(--image-content-text);
- }
- }
- }
- </style>
|