From 17388fa7ecd1f3ebadad470a463573a1cfe4468f Mon Sep 17 00:00:00 2001 From: zmc <zmc_li@foxmail.com> Date: 星期四, 31 八月 2023 11:29:31 +0800 Subject: [PATCH] 扬尘Vue --- src/sfc/DustExceptionText.vue | 18 ++++++++++++------ 1 files changed, 12 insertions(+), 6 deletions(-) diff --git a/src/sfc/DustExceptionText.vue b/src/sfc/DustExceptionText.vue index 67cd5f8..b726e90 100644 --- a/src/sfc/DustExceptionText.vue +++ b/src/sfc/DustExceptionText.vue @@ -10,7 +10,8 @@ siteName: String, exceptionType: String, beginTime: String, - endTime: String + endTime: String, + }, emits: ['submitExceptionData'], data() { @@ -24,15 +25,17 @@ requestExceptionData() { // 涓嶅垎椤� exceptionApi - .exceptiondata1( - this.siteName, - this.exceptionType, - this.beginTime, - this.endTime + .exceptiondata1({ + siteName: this.siteName, + exceptionType:this.exceptionType, + beginTime:this.beginTime, + endTime:this.endTime + } ) .then((result) => { //灏嗚繑鍥炵殑缁撴灉浼犻�掔粰鐖剁粍浠� this.$emit('submitExceptionData', result.data.data); + // this.$emit('subloading',false) }); } } @@ -47,4 +50,7 @@ .text { color: #000000; } +// .text:hover{ +// color: #2876aa; +// } </style> -- Gitblit v1.9.3