diff --git a/src/views/ems/report/currentIOTCurve/index.vue b/src/views/ems/report/currentIOTCurve/index.vue index 34d3ea8..27bd537 100644 --- a/src/views/ems/report/currentIOTCurve/index.vue +++ b/src/views/ems/report/currentIOTCurve/index.vue @@ -49,6 +49,16 @@ end-placeholder="结束时间" > + + + 分钟/点 + 搜索 重置 @@ -142,6 +152,7 @@ export default { recodeTime: null, remark: null, monitorIds: [], + samplingInterval: 1 // 采样间隔,默认1分钟(不采样) }, // 表单参数 form: {}, @@ -249,6 +260,7 @@ export default { resetQuery() { this.queryParams.monitorCode = null this.queryParams.monitorId = null + this.queryParams.samplingInterval = 1 // 重置采样间隔为默认值 this.resetForm('queryForm') this.handleQuery() }, diff --git a/src/views/ems/report/currentVibrationCurve/index.vue b/src/views/ems/report/currentVibrationCurve/index.vue index 801e9ad..23ca66c 100644 --- a/src/views/ems/report/currentVibrationCurve/index.vue +++ b/src/views/ems/report/currentVibrationCurve/index.vue @@ -49,6 +49,16 @@ end-placeholder="结束时间" > + + + 分钟/点 + 搜索 重置 @@ -127,6 +137,7 @@ export default { recodeTime: null, remark: null, monitorIds: [], + samplingInterval: 1 // 采样间隔,默认1分钟(不采样) }, // 表单参数 form: {}, @@ -240,6 +251,7 @@ export default { resetQuery() { this.queryParams.monitorCode = null this.queryParams.monitorId = null + this.queryParams.samplingInterval = 1 // 重置采样间隔为默认值 this.resetForm('queryForm') this.handleQuery() },