From 442d52e55fb8b945730a80247554e70024044368 Mon Sep 17 00:00:00 2001 From: fengachen <373943794@qq.com> Date: Mon, 10 Jan 2022 15:19:22 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BF=AE=E6=94=B9=E3=80=91=E4=B8=8B?= =?UTF-8?q?=E8=BD=BD=E7=94=A8=E6=88=B7=E6=89=8B=E5=86=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dashboard/Analysis.vue | 47 +++++++++++++++++++++++++++++--- 1 file changed, 43 insertions(+), 4 deletions(-) diff --git a/src/views/dashboard/Analysis.vue b/src/views/dashboard/Analysis.vue index d34e980..62e05a5 100644 --- a/src/views/dashboard/Analysis.vue +++ b/src/views/dashboard/Analysis.vue @@ -18,13 +18,17 @@ - + @@ -35,6 +39,14 @@ +
+
+ 点击下载企业PC端使用手册 +
+
+ 企业小程序使用手册 +
+
@@ -157,6 +169,18 @@ export default { path: record.path }) }, + // 下载用户使用手册 + downloadManual(type) { + switch (type) { + case 'PC': + window.open('https://cwp.catarc.org.cn/企业pc端使用手册.docx', '_self') + break + case 'applet': + window.open('http://cwp.catarc.org.cn/企业小程序使用手册.docx', '_self') + break + } + }, + // loadData // loadData() { // const param = { @@ -431,12 +455,27 @@ export default { //width: 150px; } + /*会议通知的颜色*/ .color-meeting { - color: #FF7200!important; + color: #FF7200 !important; } + /*系统通知的消息*/ .color-system { - color: #690AF7!important; + color: #690AF7 !important; } + +.download { + margin-top: 8px; + display: flex; + justify-content: center; + align-items: center; +} + +.primary-color { + color: #069F99; + cursor: pointer; +} +