廖井涛
2024-11-05 f366940938f2d971c8db228aa51a22f25963c945
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<script setup>
 
</script>
 
<template>
  <div style="width: 100%; height: 100%;">
    <div id="processCard"></div>
    <div id="processCard-detail"></div>
    <div id="project-list"></div>
  </div>
</template>
 
<style scoped>
#processCard{
  width: 64%;
  height: 64%;
  background-color: #f0f0f0;
  float: left;
}
#processCard-detail{
  margin-left: 1%;
  float: left;
  width: 35%;
  height: 64%;
  background-color: black;
}
#project-list{
  float: left;
  margin-top: 1%;
  width: 100%;
  height: 35%;
  background-color: blue;
}
</style>