zmc
2023-12-18 6c74bf912e251347714099a84585f825b32a1c08
src/views/fysp/evaluation/DataSource.vue
@@ -1,14 +1,28 @@
<template>
  <div>DataSource</div>
  <el-row :gutter="16">
    <el-col :span="16">
      <CompPreCheck></CompPreCheck>
    </el-col>
    <el-col :span="8">
      <div class="radius"></div>
    </el-col>
  </el-row>
</template>
<script>
import CompPreCheck from "./components/CompPreCheck.vue";
export default {
  name: 'DataSource',
  components: { CompPreCheck },
  data() {
    return {
    }
    return {};
  }
};
</script>
<style scoped>
.radius {
  height: 80vh;
  border: 1px solid var(--el-border-color);
  border-radius: var(--el-border-radius-base);
}
</style>