diff --git a/src/views/report/originalReport/index.vue b/src/views/report/originalReport/index.vue
index a434036..178db75 100644
--- a/src/views/report/originalReport/index.vue
+++ b/src/views/report/originalReport/index.vue
@@ -217,9 +217,10 @@ export default {
},
/** 重置按钮操作 */
resetQuery() {
- this.getWeekDates();
- this.resetForm("queryForm");
- this.handleQuery();
+ this.dateRange=[]
+ this.getWeekDates();
+ this.resetForm("queryForm");
+ this.handleQuery();
},
/** 导出按钮操作 */
handleExport() {
diff --git a/src/views/setting/devices/index.vue b/src/views/setting/devices/index.vue
index 019abce..d210253 100644
--- a/src/views/setting/devices/index.vue
+++ b/src/views/setting/devices/index.vue
@@ -300,7 +300,7 @@
/** 删除按钮操作 */
handleDelete(row) {
const Ids = row.id;
- this.$modal.confirm('是否确认删除编号为"' + Ids + '"的数据项?').then(function() {
+ this.$modal.confirm('是否确认删除该数据项?').then(function() {
return delMachine(Ids);
}).then(() => {
this.getList();
diff --git a/src/views/setting/rules/index.vue b/src/views/setting/rules/index.vue
index 547bb2e..0dd50d1 100644
--- a/src/views/setting/rules/index.vue
+++ b/src/views/setting/rules/index.vue
@@ -115,7 +115,7 @@
-
+
@@ -541,7 +541,7 @@
/** 删除按钮操作 */
handleDelete(row) {
const groupIds = row.groupId || this.ids;
- this.$modal.confirm('是否确认删除编号为"' + groupIds + '"的数据项?').then(function() {
+ this.$modal.confirm('是否确认删除该数据项?').then(function() {
return delAttGroup(groupIds);
}).then(() => {
this.getList();