| | |
| | | name: "Server",
|
| | | data() {
|
| | | return {
|
| | | // 加载层信息
|
| | | loading: [],
|
| | | // 统计命令信息
|
| | | commandstats: null,
|
| | | // 使用内存
|
| | |
| | | getList() {
|
| | | getCache().then((response) => {
|
| | | this.cache = response.data;
|
| | | this.loading.close();
|
| | | this.$modal.closeLoading();
|
| | |
|
| | | this.commandstats = echarts.init(this.$refs.commandstats, "macarons");
|
| | | this.commandstats.setOption({
|
| | |
| | | },
|
| | | // 打开加载层
|
| | | openLoading() {
|
| | | this.loading = this.$loading({
|
| | | lock: true,
|
| | | text: "拼命读取中",
|
| | | spinner: "el-icon-loading",
|
| | | background: "rgba(0, 0, 0, 0.7)",
|
| | | });
|
| | | this.$modal.loading("正在加载缓存监控数据,请稍后!");
|
| | | },
|
| | | },
|
| | | };
|