zhongrj
2026-06-02 0299e41c6692684d943b4a206472a86ea84ea4b5
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
<!--
 * @Author: shuishen 1109946754@qq.com
 * @Date: 2023-05-12 17:46:16
 * @LastEditors: shuishen 1109946754@qq.com
 * @LastEditTime: 2023-05-15 11:39:49
 * @FilePath: \web\bigScreen\src\views\csmodel\components\serviceInfo.vue
 * @Description: 
 * 
 * Copyright (c) 2023 by ${git_name_email}, All Rights Reserved. 
-->
<template>
    <div class="current-service-box">
        <service-pie class="m-5"></service-pie>
        <service-pie class="m-5"></service-pie>
        <service-pie class="m-5"></service-pie>
        <service-pie class="m-5"></service-pie>
        <service-pie class="m-5"></service-pie>
        <service-pie class="m-5"></service-pie>
        <service-pie class="m-5"></service-pie>
        <service-pie class="m-5"></service-pie>
        <service-pie class="m-5"></service-pie>
        <service-pie class="m-5"></service-pie>
    </div>
</template>
 
<script>
import servicePie from './echarts/servicePie.vue'
 
export default {
    components: { servicePie },
}
</script>
 
<style lang="scss" scoped>
.current-service-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
 
.m-5 {
    margin: 5px;
}
</style>