diff --git a/src/views/dashboard/demo/components/ParameterInfo.vue b/src/views/dashboard/demo/components/ParameterInfo.vue
index 22a87e3..1e390a1 100644
--- a/src/views/dashboard/demo/components/ParameterInfo.vue
+++ b/src/views/dashboard/demo/components/ParameterInfo.vue
@@ -21,13 +21,11 @@ watch(
},
)
function getInterval(record: any) {
- console.log(record)
if (record.predictValue === '-')
return '-'
record.predictValue = Number(record.predictValue).toFixed(2)
const threshold = record.ResidualThreshold
- console.log(threshold)
const predictValue = record.predictValue || 0
return `[${Number(predictValue) - threshold},${Number(predictValue) + threshold}]`
}
diff --git a/src/views/dashboard/demo/components/ProjectCard.vue b/src/views/dashboard/demo/components/ProjectCard.vue
index 20a26c8..5a7b135 100644
--- a/src/views/dashboard/demo/components/ProjectCard.vue
+++ b/src/views/dashboard/demo/components/ProjectCard.vue
@@ -32,15 +32,12 @@ async function getNewData() {
ifColor = res === '1'
gridData.value.push(Object.assign({}, item, { ifColor }))
-
- console.log(gridData.value)
}
catch (e) {
}
}
}
-
// 页面挂载时批量请求并更新数据(避免在模板中调用异步)
// onMounted(async () => {
// const rows = props.data.Content || []
diff --git a/src/views/dashboard/demo/components/staticImg.vue b/src/views/dashboard/demo/components/staticImg.vue
index d53ec8a..3073ac0 100644
--- a/src/views/dashboard/demo/components/staticImg.vue
+++ b/src/views/dashboard/demo/components/staticImg.vue
@@ -25,7 +25,6 @@ watch(
)
function getAssetsFile() {
const url = props.data.path
- console.log(url)
return new URL(`../../../../assets/${url}`, import.meta.url).href
}
diff --git a/src/views/dashboard/demo/components/staticSvg.vue b/src/views/dashboard/demo/components/staticSvg.vue
index eae6e26..bae9513 100644
--- a/src/views/dashboard/demo/components/staticSvg.vue
+++ b/src/views/dashboard/demo/components/staticSvg.vue
@@ -1,5 +1,5 @@
-
-
-