Commit 95526ecb261c67c38aacc165e3c1ca37e92e31bc
1 parent
81c23387
feat(app): update purchase product_type
Showing
1 changed file
with
1 additions
and
1 deletions
| @@ -143,7 +143,7 @@ class PurchaseController extends GetxController { | @@ -143,7 +143,7 @@ class PurchaseController extends GetxController { | ||
| 143 | plans.clear(); | 143 | plans.clear(); |
| 144 | selectedIndex.value = 0; | 144 | selectedIndex.value = 0; |
| 145 | try { | 145 | try { |
| 146 | - final result = await _payApi.getProductList(10); | 146 | + final result = await _payApi.getProductList(1); |
| 147 | if (result is! AppSuccess<PayProductListResponse>) return; | 147 | if (result is! AppSuccess<PayProductListResponse>) return; |
| 148 | 148 | ||
| 149 | final products = (result.data.productList ?? const <PayProduct>[]) | 149 | final products = (result.data.productList ?? const <PayProduct>[]) |
-
Please register or login to post a comment