实现结果总览项目分析弹窗主视图
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
<template>
|
||||
<section class="project-analysis-placeholder-tab">
|
||||
<div class="placeholder-title">{{ tabData.label }}</div>
|
||||
<div class="placeholder-text">{{ tabData.description }}</div>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "ProjectAnalysisPlaceholderTab",
|
||||
props: {
|
||||
tabData: {
|
||||
type: Object,
|
||||
default: () => ({
|
||||
label: "",
|
||||
description: "",
|
||||
}),
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.project-analysis-placeholder-tab {
|
||||
min-height: 560px;
|
||||
padding: 24px;
|
||||
border: 1px solid #e2e8f0;
|
||||
background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
|
||||
}
|
||||
|
||||
.placeholder-title {
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
color: #0f172a;
|
||||
}
|
||||
|
||||
.placeholder-text {
|
||||
margin-top: 8px;
|
||||
font-size: 13px;
|
||||
line-height: 1.7;
|
||||
color: #64748b;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user