xingyu
2023-11-20 bab28af986e09d7c27f3ef647e18993c7cfc54e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<template>
  <BasicTitle :class="prefixCls" v-if="getTitle" :helpMessage="helpMessage">
    {{ getTitle }}
  </BasicTitle>
</template>
<script lang="ts" setup>
  import { computed, PropType } from 'vue';
  import { BasicTitle } from '@/components/Basic';
  import { useDesign } from '@/hooks/web/useDesign';
  import { isFunction } from '@/utils/is';
 
  defineOptions({ name: 'BasicTableTitle' });
 
  const props = defineProps({
    title: {
      type: [Function, String] as PropType<string | ((data) => string)>,
    },
    getSelectRows: {
      type: Function as PropType<() => any[]>,
    },
    helpMessage: {
      type: [String, Array] as PropType<string | string[]>,
    },
  });
 
  const { prefixCls } = useDesign('basic-table-title');
 
  const getTitle = computed(() => {
    const { title, getSelectRows = () => {} } = props;
    let tit = title;
 
    if (isFunction(title)) {
      tit = title({
        selectRows: getSelectRows(),
      });
    }
    return tit;
  });
</script>
<style lang="less">
  @prefix-cls: ~'@{namespace}-basic-table-title';
 
  .@{prefix-cls} {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
</style>