From aa1f56d5ef2d48b980a2fab3e88379efbe09b0d1 Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期二, 26 十二月 2023 17:04:27 +0800 Subject: [PATCH] 评估任务模块新增任务状态管理逻辑 --- src/views/fysp/evaluation/DataSource.vue | 23 +++++++++++++++++++---- 1 files changed, 19 insertions(+), 4 deletions(-) diff --git a/src/views/fysp/evaluation/DataSource.vue b/src/views/fysp/evaluation/DataSource.vue index 9f57df9..0c16095 100644 --- a/src/views/fysp/evaluation/DataSource.vue +++ b/src/views/fysp/evaluation/DataSource.vue @@ -1,14 +1,29 @@ <template> - <div>DataSource</div> + <el-row :gutter="16"> + <el-col :span="16"> + <CompPreCheck></CompPreCheck> + </el-col> + <el-col :span="8"> + <CompEvaTask></CompEvaTask> + </el-col> + </el-row> </template> <script> +import CompEvaTask from './components/CompEvaTask.vue'; +import CompPreCheck from './components/CompPreCheck.vue'; export default { name: 'DataSource', + components: { CompPreCheck, CompEvaTask }, data() { - return { - - } + return {}; } }; </script> +<style scoped> +.radius { + height: 80vh; + /* border: 1px solid var(--el-border-color); */ + /* border-radius: var(--el-border-radius-base); */ +} +</style> -- Gitblit v1.9.3