testcase
This commit is contained in:
parent
5b1b94a4d6
commit
5e0b7e73c3
|
|
@ -45,7 +45,7 @@
|
|||
</div>
|
||||
</a-layout-content>
|
||||
<a-layout-footer style="text-align: center">
|
||||
自动化测试研发 ©2022 研发部
|
||||
自动化研发 ©2022 研发部
|
||||
</a-layout-footer>
|
||||
</a-layout>
|
||||
</a-layout>
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@
|
|||
<script>
|
||||
import {UserOutlined, LockOutlined} from '@ant-design/icons-vue';
|
||||
import {useRouter} from 'vue-router'
|
||||
import {reactive, toRaw, ref} from 'vue'
|
||||
import {reactive, ref} from 'vue'
|
||||
import {message} from 'ant-design-vue';
|
||||
import {useStore} from "@/store";
|
||||
import {Login} from '@/api/user';
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
<template>
|
||||
<div class="charts" style="background: #fff; padding: 15px">
|
||||
<a-card title="cpu使用率" :bordered="false" style="width: 350px;height:350px">
|
||||
<a-card title="cpu使用率" :bordered="false">
|
||||
<echarts class="chart" :option="option"/>
|
||||
</a-card>
|
||||
|
||||
<a-card title="memory使用率" :bordered="false" style="width: 350px;height:350px">
|
||||
<a-card title="memory使用率" :bordered="false">
|
||||
<echarts class="chart" :option="memory"/>
|
||||
</a-card>
|
||||
|
||||
|
|
@ -70,6 +70,10 @@ const memory = ref({
|
|||
height: 300px;
|
||||
width: 300px;
|
||||
}
|
||||
.a-card{
|
||||
width: 350px;
|
||||
height: 350px;
|
||||
}
|
||||
|
||||
.charts {
|
||||
display: flex;
|
||||
|
|
|
|||
Loading…
Reference in New Issue