From 0a9d4ea17b9f2bce9d82e959fbdb3c1c1f282ea2 Mon Sep 17 00:00:00 2001
From: 疯狂的狮子li <15040126243@163.com>
Date: 星期二, 28 九月 2021 17:56:19 +0800
Subject: [PATCH] update 适配单体系与多体系用户权限
---
ruoyi-ui/src/views/monitor/cache/index.vue | 17 ++++++-----------
1 files changed, 6 insertions(+), 11 deletions(-)
diff --git a/ruoyi-ui/src/views/monitor/cache/index.vue b/ruoyi-ui/src/views/monitor/cache/index.vue
index 6b012df..36957ed 100644
--- a/ruoyi-ui/src/views/monitor/cache/index.vue
+++ b/ruoyi-ui/src/views/monitor/cache/index.vue
@@ -74,8 +74,6 @@
name: "Server",
data() {
return {
- // 鍔犺浇灞備俊鎭�
- loading: [],
// 缁熻鍛戒护淇℃伅
commandstats: null,
// 浣跨敤鍐呭瓨
@@ -93,7 +91,7 @@
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({
@@ -117,14 +115,16 @@
this.usedmemory = echarts.init(this.$refs.usedmemory, "macarons");
this.usedmemory.setOption({
tooltip: {
- formatter: "{b} <br/>{a} : {c}K",
+ formatter: "{b} <br/>{a} : " + this.cache.info.used_memory_human,
},
series: [
{
name: "宄板��",
type: "gauge",
+ min: 0,
+ max: 1000,
detail: {
- formatter: "{value}K",
+ formatter: this.cache.info.used_memory_human,
},
data: [
{
@@ -139,12 +139,7 @@
},
// 鎵撳紑鍔犺浇灞�
openLoading() {
- this.loading = this.$loading({
- lock: true,
- text: "鎷煎懡璇诲彇涓�",
- spinner: "el-icon-loading",
- background: "rgba(0, 0, 0, 0.7)",
- });
+ this.$modal.loading("姝e湪鍔犺浇缂撳瓨鐩戞帶鏁版嵁锛岃绋嶅悗锛�");
},
},
};
--
Gitblit v1.9.3