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
| <script setup>
| const props = defineProps({
| text: {
| type: String,
| default: "暂无数据"
| }
| });
| </script>
|
| <template>
| <div class="no-data-wrapper">
| <div class="no-data-content">
| <div class="no-data-icon">
| <svg-icon icon-class="search-data"></svg-icon>
| </div>
| <div class="no-data-text">{{ props.text }}</div>
| </div>
| </div>
| </template>
|
| <style scoped lang="less">
| .no-data-wrapper {
| display: flex;
| justify-content: center;
| align-items: center;
| width: 100%;
| height: 100%;
| .no-data-content {
| display: inline-block;
| text-align: center;
| color: #00feff;
| .no-data-icon {
| margin-bottom: 8px;
| color: #00feff;
| font-size: 40px;
| }
|
| }
| }
| </style>
|
|