From 685c4373ef52fdb3c0ab46b5ffb128c31dc7cb7c Mon Sep 17 00:00:00 2001 From: Lei OT Date: Tue, 16 Sep 2025 16:14:19 +0800 Subject: [PATCH] # --- src/stores/HotelCruise.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/HotelCruise.js b/src/stores/HotelCruise.js index 60656c4..026f148 100644 --- a/src/stores/HotelCruise.js +++ b/src/stores/HotelCruise.js @@ -157,7 +157,7 @@ class HotelCruise { {} ); summaryDelta.RecommendRateDelta = queryParam.Compare === '0' ? undefined : fixTo2Decimals((summaryRow.RecommendRate - (summaryRow.CPRecommendRate || 0)) * 100); - const resfilter = resCP.map(row => ({text: row.CityName, value: row.CityName})).sort((a, b) => a.text.localeCompare(b.text)); + const resfilter = resCP.map(row => ({text: row.CityName, value: row.CityName})); // .sort((a, b) => a.text.localeCompare(b.text)); runInAction(() => { this.hotel.loading = false; this.hotel.dataSource = resCP;