From e6f5037b3a13fd27fc9e113cb9aab5205408b1b3 Mon Sep 17 00:00:00 2001 From: liuye Date: Wed, 30 Nov 2022 17:11:45 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=AF=E5=88=86=E5=85=91=E6=8D=A2=E7=AD=9B?= =?UTF-8?q?=E9=80=89=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pidu/AppPointsChange/AppPointsChange.vue | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/project/pidu/AppPointsChange/AppPointsChange.vue b/src/project/pidu/AppPointsChange/AppPointsChange.vue index b55ba947..f430bb1b 100644 --- a/src/project/pidu/AppPointsChange/AppPointsChange.vue +++ b/src/project/pidu/AppPointsChange/AppPointsChange.vue @@ -13,8 +13,8 @@
-
最新上架
-
价格
+
最新上架
+
价格
可兑换的
@@ -51,8 +51,8 @@ export default { typeIndex: 0, search: { status: '', - newStatus: '', - priceStatus: '1' + newestSort: '', + priceSort: '0' }, userIntegral: '' } @@ -85,7 +85,7 @@ export default { ...this.search, size: 20, current: this.current, - queryIntegralType: this.typeIndex + queryIntegralType: this.typeIndex, }, }) .then((res) => { @@ -113,11 +113,11 @@ export default { this.getListInit() }, clickNew() { - this.search.newStatus = this.search.newStatus == 1 ? '' : 1 + this.search.newestSort = this.search.newestSort === 0 ? '' : 0 this.getListInit() }, clickPrice() { - this.search.priceStatus = this.search.priceStatus == 1 ? '' : 1 + this.search.priceSort = this.search.priceSort == 1 ? 0 : 1 this.getListInit() }, },