zhengyiming
2025-02-10 958b79ed89b9e742540f714a80261d222c0fc09b
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
64
65
66
67
68
69
70
71
72
<template>
  <div class="query-check-bar-wrapper">
    <div class="query-check-bar-label">{{ label }}</div>
    <div class="query-check-bar-group-wrapper">
      <el-checkbox-group v-model="innerModelValue">
        <slot></slot>
      </el-checkbox-group>
    </div>
  </div>
</template>
 
<script setup lang="ts">
defineOptions({
  name: 'QueryCheckBar',
});
 
type Props = {
  label?: string;
  modelValue?: (string | number)[];
};
 
const props = withDefaults(defineProps<Props>(), {});
 
const emit = defineEmits<{
  (e: 'update:modelValue', val: (string | number)[]): void;
}>();
 
const innerModelValue = computed({
  get() {
    return props.modelValue;
  },
  set(val) {
    emit('update:modelValue', val);
  },
});
</script>
 
<style lang="scss" scoped>
@use '@/style/common.scss' as *;
 
.query-check-bar-wrapper {
  display: flex;
  align-items: flex-start;
  padding-right: boleGetCssVar('proTable', 'filter-bar-horizontal-padding');
  padding-left: boleGetCssVar('proTable', 'filter-bar-horizontal-padding');
  background-color: #ffffff;
 
  .query-check-bar-label {
    padding-right: 12px;
    font-size: 14px;
    color: getCssVar('text-color', 'regular');
    line-height: 32px;
  }
 
  :deep(.el-checkbox__inner) {
    display: none;
  }
 
  :deep(.el-checkbox__label) {
    padding-left: 0;
  }
 
  :deep(.el-checkbox) {
    margin-right: 16px;
  }
 
  .query-check-bar-group-wrapper {
    flex: 1;
    min-width: 0;
  }
}
</style>