diff --git a/pages/mine/balance/transDetail.vue b/pages/mine/balance/transDetail.vue index 0dbf1f3..c3071ee 100644 --- a/pages/mine/balance/transDetail.vue +++ b/pages/mine/balance/transDetail.vue @@ -57,8 +57,11 @@ {{'账户类型'}} - + {{item.accountName}} @@ -144,7 +147,9 @@ this.queryParams.tradeType = item.value }, clickAccountType(item) { - this.queryParams.pkAccount = item.pkId + // this.queryParams.pkAccount = item.pkId + console.log(item, '....item') + this.$set(this.queryParams, 'pkAccount', item.pkId) }, getOthers() { bal.getTradeTypeList().then((res) => { @@ -161,9 +166,13 @@ }, clearAll() { this.sxShow = false - this.queryParams = { - - } + Object.assign(this.queryParams, { + pageNum: 1, + pageSize: 50, + tradeType: "", //交易类型 + pkAccount: "", //账户类型 + startDate: "", + }) this.getSearch() }, }