|
@@ -10,7 +10,8 @@ const emptyImg = computed(() => {
|
|
|
return themeStore.theme === 'dark' ? darkPng : lightPng
|
|
return themeStore.theme === 'dark' ? darkPng : lightPng
|
|
|
})
|
|
})
|
|
|
const props = defineProps({
|
|
const props = defineProps({
|
|
|
- data: Object
|
|
|
|
|
|
|
+ data: Object,
|
|
|
|
|
+ website: String
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
const activeNames = ref<number[]>([])
|
|
const activeNames = ref<number[]>([])
|
|
@@ -78,11 +79,13 @@ watch(
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
|
.container-status {
|
|
.container-status {
|
|
|
position: relative;
|
|
position: relative;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ flex-direction: column;
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
height: 100%;
|
|
height: 100%;
|
|
|
overflow: auto;
|
|
overflow: auto;
|
|
|
.container {
|
|
.container {
|
|
|
- height: 358px;
|
|
|
|
|
|
|
+ flex: 1;
|
|
|
padding-bottom: 8px;
|
|
padding-bottom: 8px;
|
|
|
overflow: auto;
|
|
overflow: auto;
|
|
|
}
|
|
}
|