3328350766
6 天以前 761eb03d6b3bebd0b197179564c84d89d3d12a0d
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
<template>
  <div class="lc-field-head">
    <div class="lc-field-title">
      <slot />
    </div>
  </div>
</template>
 
<style lang="scss" scoped>
.lc-field-head {
    height: 30px;
    .lc-field-title {
      width: 308px;
        // 文字溢出隐藏
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        position: relative;
        padding-left: 12px;
        line-height: 30px;
        height: 30px;
        &:after {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            content: '';
            width: 4px;
            height: 14px;
            background-color: var(--bs-el-color-primary);
        }
    }
}
</style>