From 023ea35893ed047887a43555509335eec7a8b161 Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期二, 09 一月 2024 17:28:49 +0800 Subject: [PATCH] 1. 编写评估任务模块中 --- 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..d8a31e1 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/precheck/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