diff --git a/src/views/apiSecret/index.vue b/src/views/apiSecret/index.vue
index 529eeac0..568c3644 100644
--- a/src/views/apiSecret/index.vue
+++ b/src/views/apiSecret/index.vue
@@ -182,7 +182,7 @@
- {{ dict.dictLabel }}
+ {{ dict.dictLabel }}
@@ -288,7 +288,7 @@ export default {
appSecret: null,
tenantId: null,
remark: null,
- status: '0',
+ status: '1',
};
this.resetForm("form");
},
diff --git a/src/views/iot/statistics/chain/template.vue b/src/views/iot/statistics/chain/template.vue
index ab48738a..4a9ccb39 100644
--- a/src/views/iot/statistics/chain/template.vue
+++ b/src/views/iot/statistics/chain/template.vue
@@ -18,7 +18,7 @@
align="center"
:index="
(val) => {
- return val;
+ return val + 1;
}
"
width="80px"
@@ -28,22 +28,22 @@
{{
- Number(scope.row.homochronousValue).toFixed(2) || "--"
+ Number(scope.row.currentPeriodValue).toFixed(2) || "--"
}}
{{
- Number(scope.row.currentPeriodValue).toFixed(2) || "--"
+ Number(scope.row.homochronousValue).toFixed(2) || "--"
}}
diff --git a/src/views/iot/statistics/compared/profile/template.vue b/src/views/iot/statistics/compared/profile/template.vue
index 55e9fd13..cf2cd923 100644
--- a/src/views/iot/statistics/compared/profile/template.vue
+++ b/src/views/iot/statistics/compared/profile/template.vue
@@ -28,22 +28,22 @@
{{
- Number(scope.row.homochronousValue).toFixed(2) || "--"
+ Number(scope.row.currentPeriodValue).toFixed(2) || "--"
}}
{{
- Number(scope.row.currentPeriodValue).toFixed(2) || "--"
+ Number(scope.row.homochronousValue).toFixed(2) || "--"
}}