From 73cc6d5b7b7817650afcf9d6912750dd5c05a912 Mon Sep 17 00:00:00 2001 From: xuyiming Date: Thu, 9 Jul 2020 10:29:23 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B6=85=E7=AE=A1-=E4=BA=91=E8=B5=84=E6=BA=90?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/workbench/fwgl/fwglList.vue | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/src/pages/workbench/fwgl/fwglList.vue b/src/pages/workbench/fwgl/fwglList.vue index fccd788..8452a80 100644 --- a/src/pages/workbench/fwgl/fwglList.vue +++ b/src/pages/workbench/fwgl/fwglList.vue @@ -72,7 +72,10 @@ -
+
+ + 工作区域审批(1) + = 80) { colors = ["#e3606d", "#f6d0d0"]; + this.cloud_admin_warn = true; } else if (percent >= 60) { colors = ["#ef9535", "#fcefd8"]; } else { @@ -1989,6 +1994,13 @@ export default { this.$refs.adminHistogram.resize(); } }, + approveWorkspace() { + if (this.cloud_admin_warn) { + console.log("告警 ---"); + } else { + console.log("审批 ---"); + } + }, }, created() { this.level = parseInt(this.$route.params.level); @@ -2103,4 +2115,13 @@ export default { margin-top: 15px; box-sizing: border-box; } +.apass_buttons { + position: relative; +} +.apass_buttons > .el-button { + position: absolute; + top: 0; + right: 0; + z-index: 9; +} -- 2.26.0