diff --git a/src/views/caseManage/waitForCreate.vue b/src/views/caseManage/waitForCreate.vue index 38f3ee2..58b1abf 100644 --- a/src/views/caseManage/waitForCreate.vue +++ b/src/views/caseManage/waitForCreate.vue @@ -106,7 +106,7 @@ }, { text: '来电时间', - value: 'dialStartStamp', + value: 'startStamp', align: 'center', width: 160 }, @@ -261,7 +261,18 @@ }, // 重置后的操作, 若不需要显示重置按钮则不需要写 clearInput() { - this.$message.success('clearInput') + this.listQuery = { + callerNumber: '', // 主叫号码 + agentUser: '', // 受理人 + status: '', // 受理状态 + startTime: '', // 创建开始时间 + endTime: '', // 创建结束时间 + offset: 1, + limit: 20, + sort: 'dialStartStamp', + order: 'desc' + } // 筛选条件 + this.timeRange = [] } } }