From bb7ae31d7066a838bd177bf21c20f13ef044950b Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期三, 27 十二月 2023 17:45:45 +0800
Subject: [PATCH] 编写后台任务模块逻辑,完成80%

---
 src/views/fysp/evaluation/DataSource.vue |   11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/src/views/fysp/evaluation/DataSource.vue b/src/views/fysp/evaluation/DataSource.vue
index 61476d4..0c16095 100644
--- a/src/views/fysp/evaluation/DataSource.vue
+++ b/src/views/fysp/evaluation/DataSource.vue
@@ -4,16 +4,17 @@
       <CompPreCheck></CompPreCheck>
     </el-col>
     <el-col :span="8">
-      <div class="radius"></div>
+      <CompEvaTask></CompEvaTask>
     </el-col>
   </el-row>
 </template>
 
 <script>
-import CompPreCheck from "./components/CompPreCheck.vue";
+import CompEvaTask from './components/CompEvaTask.vue';
+import CompPreCheck from './components/CompPreCheck.vue';
 export default {
   name: 'DataSource',
-  components: { CompPreCheck },
+  components: { CompPreCheck, CompEvaTask },
   data() {
     return {};
   }
@@ -22,7 +23,7 @@
 <style scoped>
 .radius {
   height: 80vh;
-  border: 1px solid var(--el-border-color);
-  border-radius: var(--el-border-radius-base);
+  /* border: 1px solid var(--el-border-color); */
+  /* border-radius: var(--el-border-radius-base); */
 }
 </style>

--
Gitblit v1.9.3