Files
ccdi/ruoyi-ui/src/views/ccdiProject/components/detail/ParamConfig.vue

52 lines
811 B
Vue
Raw Normal View History

<template>
<div class="param-config-container">
<div class="placeholder-content">
<i class="el-icon-setting"></i>
<p>参数配置功能开发中...</p>
</div>
</div>
</template>
<script>
export default {
name: "ParamConfig",
props: {
projectId: {
type: [String, Number],
default: null,
},
projectInfo: {
type: Object,
default: () => ({
projectName: "",
updateTime: "",
projectStatus: "0",
}),
},
},
};
</script>
<style lang="scss" scoped>
.param-config-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>