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()
},
},