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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
| <template>
| <div class="examine-container">
| <wrapper-title :title="'考核成绩数据'"></wrapper-title>
| <div class="examine-content">
| <div class="examine-wrapper">
| <examine-table class="wrapper-item"></examine-table>
| <examine-chart class="wrapper-item"></examine-chart>
| </div>
| </div>
| </div>
| </template>
|
| <script>
| import WrapperTitle from '../wrapper-title/index';
| import ExamineChart from './components/examine-chart';
| import ExamineTable from './components/examine-table';
| export default {
| name: 'ScreenExamine',
| components: {
| WrapperTitle,
| ExamineChart,
| ExamineTable
| }
| }
|
| </script>
|
| <style lang="scss" scoped>
| .examine-container {
| width: 100%;
| height: 100%;
| display: flex;
| flex-direction: column;
| }
|
| .examine-content {
| width: 100%;
| flex: 1;
| position: relative;
|
| .examine-wrapper {
| width: 100%;
| height: 100%;
| display: flex;
| flex-direction: column;
| }
| }
|
| .wrapper-item {
| background: rgba(67, 102, 155, 0.3);
| border: 1px solid rgba(47, 91, 157, 0.8);
| margin-bottom: 20px;
| &:last-of-type {
| margin-bottom: 0;
| }
| }
| </style>
|
|