From ad204828ea29ce939d400647941cb2da6ff148eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A3=E5=9C=A3=E5=8D=8E?= <752718920@qq.com> Date: Wed, 9 Nov 2022 23:05:01 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=99=E9=A6=96=E9=A1=B5=E5=A2=9E=E5=8A=A0we?= =?UTF-8?q?ixin=E5=B1=95=E7=A4=BA=E5=9B=BE=E6=A0=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jshERP-web/src/views/dashboard/IndexChart.vue | 25 ++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/jshERP-web/src/views/dashboard/IndexChart.vue b/jshERP-web/src/views/dashboard/IndexChart.vue index 872ad848..f3a882b0 100644 --- a/jshERP-web/src/views/dashboard/IndexChart.vue +++ b/jshERP-web/src/views/dashboard/IndexChart.vue @@ -123,7 +123,18 @@ - + 试用到期:{{tenant.expireTime}} 试用用户:{{tenant.userCurrentNum}}/{{tenant.userNumLimit}} 服务到期:{{tenant.expireTime}} @@ -166,6 +177,7 @@ }, data() { return { + hovered: false, systemTitle: window.SYS_TITLE, systemUrl: window.SYS_URL, loading: true, @@ -252,6 +264,17 @@ } } }) + }, + handleHoverChange(visible) { + this.hovered = visible + }, + showWeixinSpan() { + let host = window.location.host + if(host === 'cloud.huaxiaerp.vip') { + return true + } else { + return false + } } } }