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
| <template>
| <div class="overview-title">
| <div class="left">
| {{ title }}
| </div>
| <div class="right" v-if="show" @click="attrs.onDetails()">详情 ></div>
| </div>
| </template>
| <script setup>
| const props = defineProps({
| title: {
| type: String,
| default: '机巢概况',
| },
| });
| const attrs = useAttrs();
| const show = ref(attrs.onDetails);
| </script>
| <style scoped lang="scss">
| .overview-title {
| position: relative;
| width: 404px;
| height: 43px;
| background-image: url(@/assets/images/title-bg.png);
| background-size: 100% 100%;
| background-repeat: no-repeat;
| display: flex;
| justify-content: space-between;
|
| .left {
| position: absolute;
| left: 49px;
| bottom: 16px;
| font-weight: 400;
| font-size: 20px;
| color: #ffffff;
| text-shadow: 0px 0px 7px rgba(75, 180, 229, 0.69), 0px 2px 8px rgba(5, 28, 55, 0.42);
| text-align: left;
| font-style: normal;
| text-transform: none;
| font-family: YouSheBiaoTiHei, YouSheBiaoTiHei, serif;
| height: 26px;
| line-height: 23px;
| }
|
| .right {
| position: absolute;
| font-weight: 500;
| font-size: 14px;
| color: #0be7f6;
| height: 21px;
| line-height: 21px;
| font-family: Source Han Sans CN, Source Han Sans CN, serif;
| text-align: right;
| font-style: normal;
| text-transform: none;
| bottom: 16px;
| right: 11px;
| cursor: pointer;
| }
| }
| </style>
|
|