办学质量监测教学评价系统
shenrongliang
2025-06-13 11d86cc6c26bb4f709e407acadf4805c2024e79f
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<script lang="ts" setup>
import type { CountToProps } from './types';
 
import { computed, onMounted, ref, watch } from 'vue';
 
import { isString } from '@vben-core/shared/utils';
 
import { TransitionPresets, useTransition } from '@vueuse/core';
 
const props = withDefaults(defineProps<CountToProps>(), {
  startVal: 0,
  duration: 2000,
  separator: ',',
  decimal: '.',
  decimals: 0,
  delay: 0,
  transition: () => TransitionPresets.easeOutExpo,
});
 
const emit = defineEmits(['started', 'finished']);
 
const lastValue = ref(props.startVal);
 
onMounted(() => {
  lastValue.value = props.endVal;
});
 
watch(
  () => props.endVal,
  (val) => {
    lastValue.value = val;
  },
);
 
const currentValue = useTransition(lastValue, {
  delay: computed(() => props.delay),
  duration: computed(() => props.duration),
  disabled: computed(() => props.disabled),
  transition: computed(() => {
    return isString(props.transition)
      ? TransitionPresets[props.transition]
      : props.transition;
  }),
  onStarted() {
    emit('started');
  },
  onFinished() {
    emit('finished');
  },
});
 
const numMain = computed(() => {
  const result = currentValue.value
    .toFixed(props.decimals)
    .split('.')[0]
    ?.replaceAll(/\B(?=(\d{3})+(?!\d))/g, props.separator);
  return result;
});
 
const numDec = computed(() => {
  return (
    props.decimal + currentValue.value.toFixed(props.decimals).split('.')[1]
  );
});
</script>
<template>
  <div class="count-to" v-bind="$attrs">
    <slot name="prefix">
      <div
        class="count-to-prefix"
        :style="prefixStyle"
        :class="prefixClass"
        v-if="prefix"
      >
        {{ prefix }}
      </div>
    </slot>
    <div class="count-to-main" :class="mainClass" :style="mainStyle">
      <span>{{ numMain }}</span>
      <span
        class="count-to-main-decimal"
        v-if="decimals > 0"
        :class="decimalClass"
        :style="decimalStyle"
      >
        {{ numDec }}
      </span>
    </div>
    <slot name="suffix">
      <div
        class="count-to-suffix"
        :style="suffixStyle"
        :class="suffixClass"
        v-if="suffix"
      >
        {{ suffix }}
      </div>
    </slot>
  </div>
</template>
<style lang="scss" scoped>
.count-to {
  display: flex;
  align-items: baseline;
 
  &-prefix {
    // font-size: 1rem;
  }
 
  &-suffix {
    // font-size: 1rem;
  }
 
  &-main {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    // font-size: 1.5rem;
 
    &-decimal {
      // font-size: 0.8rem;
    }
  }
}
</style>