ny
22 小时以前 282fbc6488f4e8ceb5fda759f963ee88fbf7b999
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<script lang="ts" setup>
import { BasicTitle } from '@jnpf/ui';
import { propTypes } from '@jnpf/utils';
 
import { ArrowLeftOutlined } from '@ant-design/icons-vue';
 
defineOptions({ name: 'BasicDrawerHeader' });
defineProps({
  isDetail: propTypes.bool,
  showDetailBack: propTypes.bool,
  title: propTypes.string,
});
const emit = defineEmits(['close']);
const prefixCls = 'jnpf-basic-drawer-header';
 
function handleClose() {
  emit('close');
}
</script>
<template>
  <BasicTitle v-if="!isDetail" :class="prefixCls">
    <slot name="title"></slot>
    {{ !$slots.title ? title : '' }}
  </BasicTitle>
 
  <div v-else :class="[prefixCls, `${prefixCls}--detail`]">
    <span :class="`${prefixCls}__wrap`">
      <span v-if="showDetailBack" @click="handleClose">
        <ArrowLeftOutlined :class="`${prefixCls}__back`" />
      </span>
      <span v-if="title">{{ title }}</span>
    </span>
 
    <span :class="`${prefixCls}__toolbar`">
      <slot name="titleToolbar"></slot>
    </span>
  </div>
</template>
 
<style lang="scss">
.jnpf-basic-drawer-header {
  display: flex;
  align-items: center;
  height: 100%;
 
  &__back {
    padding: 0 12px;
    cursor: pointer;
 
    &:hover {
      color: var(--primary-color);
    }
  }
 
  &__wrap {
    flex: 1;
  }
 
  &__toolbar {
    padding-right: 50px;
  }
}
</style>