From f151878c25a77d18daef2f1c2e8c698202a485b0 Mon Sep 17 00:00:00 2001 From: liuye Date: Thu, 1 Dec 2022 08:31:46 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=AF=E5=88=86=E5=85=91=E6=8D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/project/pidu/AppPointsChange/AppPointsChange.vue | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/project/pidu/AppPointsChange/AppPointsChange.vue b/src/project/pidu/AppPointsChange/AppPointsChange.vue index 428f96c7..14800cb7 100644 --- a/src/project/pidu/AppPointsChange/AppPointsChange.vue +++ b/src/project/pidu/AppPointsChange/AppPointsChange.vue @@ -14,7 +14,10 @@
最新上架
-
价格
+
价格 + + +
可兑换的
@@ -115,10 +118,14 @@ export default { }, clickNew() { this.search.newestSort = this.search.newestSort === 0 ? '' : 0 + if(this.search.newestSort == 0) { + this.search.priceSort = '' + } this.getListInit() }, clickPrice() { this.search.priceSort = this.search.priceSort == 1 ? 0 : 1 + this.search.newestSort = '' this.getListInit() }, },