From 5f41d263046c30356d0de9d5bd090f118ef2eab4 Mon Sep 17 00:00:00 2001 From: caoxinyu Date: Fri, 14 Dec 2018 19:50:13 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B1=A5=E7=BA=A6=E4=BF=9D=E8=AF=81=E9=87=91?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/MarketingCenter/PerformanceBond/index.vue | 4 ++++ 1 file changed, 4 insertions(+) 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 = [] } }) },