| | |
| | | <div class="left"> |
| | | {{ title }} |
| | | </div> |
| | | <div class="right">详情 ></div> |
| | | <div class="right" v-if="show" @click="attrs.onDetails()">详情 ></div> |
| | | </div> |
| | | </template> |
| | | <script setup> |
| | |
| | | default: '机巢概况', |
| | | }, |
| | | }); |
| | | l |
| | | const attrs = useAttrs(); |
| | | const show = ref(attrs.onDetails); |
| | | </script> |
| | | <style scoped lang="scss"> |
| | | .overview-title { |
| | |
| | | background-repeat: no-repeat; |
| | | display: flex; |
| | | justify-content: space-between; |
| | | margin-bottom: 18px; |
| | | |
| | | .left { |
| | | position: absolute; |
| | |
| | | text-transform: none; |
| | | bottom: hToV(16); |
| | | right: 11px; |
| | | cursor: pointer; |
| | | } |
| | | } |
| | | </style> |