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 + } } } }