feat(ccdiProject): 添加流水明细查询占位组件

This commit is contained in:
wkc
2026-03-04 10:35:23 +08:00
parent bf68f5e7ee
commit b0f5422593

View File

@@ -0,0 +1,51 @@
<template>
<div class="detail-query-container">
<div class="placeholder-content">
<i class="el-icon-document"></i>
<p>流水明细查询功能开发中...</p>
</div>
</div>
</template>
<script>
export default {
name: "DetailQuery",
props: {
projectId: {
type: [String, Number],
default: null,
},
projectInfo: {
type: Object,
default: () => ({
projectName: "",
updateTime: "",
projectStatus: "0",
}),
},
},
};
</script>
<style lang="scss" scoped>
.detail-query-container {
padding: 40px 20px;
background: #fff;
min-height: 400px;
}
.placeholder-content {
text-align: center;
color: #909399;
i {
font-size: 48px;
margin-bottom: 16px;
}
p {
font-size: 14px;
margin: 0;
}
}
</style>