diff --git a/src/views/MarketingCenter/PerformanceBond/index.vue b/src/views/MarketingCenter/PerformanceBond/index.vue index 16c73912..5f19eec1 100644 --- a/src/views/MarketingCenter/PerformanceBond/index.vue +++ b/src/views/MarketingCenter/PerformanceBond/index.vue @@ -270,6 +270,7 @@ export default { if (this.endTime === '' || this.endTime === null) { this.endTime_check = 0 } else { this.endTime_check = 1 } this.listLoading1 = true searchTableData1(this.PageCurrent, this.PageSize, this.entryNameValue, this.entryNameValue_check, this.startTime_check, this.endTime_check, this.startTime, this.endTime).then(response => { + this.tableData2 = [] this.listLoading1 = false const data = response.data for (let i = 0; i < data.rows.length; i++) { @@ -283,11 +284,13 @@ export default { handleSizeChange(val) { this.PageCurrent = 1 this.PageSize = val + this.tableData2 = [] this.fetchTableData1() }, // 项目信息表格翻页 handleCurrentChange(val) { this.PageCurrent = val + this.tableData2 = [] this.fetchTableData1() }, // 履约保证金查询 @@ -315,6 +318,7 @@ export default { this.activeName = 'second' } else { this.$message.warning('未缴纳履约保证金') + this.tableData2 = [] } }) },