-
谐波次数
+
次数
@@ -292,7 +292,7 @@ const setRealTrendData = (val: any) => {
if (selectValue.value != '3') {
if (selectValue.value == '2') {
if (activeName.value == 2) {
- if (numberPart % 2 !== 0) {
+ if (numberPart % 2 !== 0 && numberPart < 17) {
tableData.value[key] = val[key]
}
} else {
@@ -302,7 +302,7 @@ const setRealTrendData = (val: any) => {
}
} else {
if (activeName.value == 2) {
- if (numberPart % 2 === 0) {
+ if (numberPart % 2 === 0 && numberPart < 17) {
tableData.value[key] = val[key]
}
} else {
@@ -312,7 +312,13 @@ const setRealTrendData = (val: any) => {
}
}
} else {
- tableData.value[key] = val[key]
+ if (activeName.value == 2) {
+ if (numberPart < 17) {
+ tableData.value[key] = val[key]
+ }
+ } else {
+ tableData.value[key] = val[key]
+ }
}
}
}
diff --git a/src/views/govern/device/fileService/popup.vue b/src/views/govern/device/fileService/popup.vue
index 435fcd3..fc6cbc1 100644
--- a/src/views/govern/device/fileService/popup.vue
+++ b/src/views/govern/device/fileService/popup.vue
@@ -1,212 +1,215 @@
-
-
-
-
-
-
-
- 正在下载:
- {{
- // fileData?.prjDataPath
- // ? fileData?.prjDataPath.split('/')[fileData?.prjDataPath.split('/').length - 1]
- // : '/'
- mqttFileName
- }}
-
-
-
-
-
-
-
- {{
- fileData?.prjDataPath
- ? fileData?.prjDataPath.split('/')[fileData?.prjDataPath.split('/').length - 1]
- : '/'
- }}
-
-
- {{ fileData?.size ? fileData?.size + '字节' : '/' }}
-
-
- {{ fileData?.startTime ? fileData?.startTime : '/' }}
-
-
- {{ fileData?.fileCheck ? fileData?.fileCheck : '/' }}
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ 正在下载:
+ {{
+ // fileData?.prjDataPath
+ // ? fileData?.prjDataPath.split('/')[fileData?.prjDataPath.split('/').length - 1]
+ // : '/'
+ mqttFileName
+ }}
+
+
+
+
+
+
+
+ {{
+ fileData?.prjDataPath
+ ? fileData?.prjDataPath.split('/')[fileData?.prjDataPath.split('/').length - 1]
+ : '/'
+ }}
+
+
+ {{ fileData?.size ? fileData?.size + '字节' : '/' }}
+
+
+ {{ fileData?.startTime ? fileData?.startTime : '/' }}
+
+
+ {{ fileData?.fileCheck ? fileData?.fileCheck : '/' }}
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/govern/device/officialUser/index.vue b/src/views/govern/device/officialUser/index.vue
index 518ff50..8c48808 100644
--- a/src/views/govern/device/officialUser/index.vue
+++ b/src/views/govern/device/officialUser/index.vue
@@ -40,6 +40,7 @@