Skip to content
This repository has been archived by the owner on Dec 25, 2023. It is now read-only.

Commit

Permalink
fix: 数据显示错误 #27
Browse files Browse the repository at this point in the history
  • Loading branch information
YukiCoco committed Aug 16, 2022
1 parent f9ecdf6 commit d55cead
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 22 deletions.
19 changes: 0 additions & 19 deletions CheapSteam.UI/CheapSteam.UI/ChpStmScraper.csproj

This file was deleted.

4 changes: 2 additions & 2 deletions CheapSteam.UI/CheapSteam.UI/Pages/FetchData.razor
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ else
Steam 在售数
</Checkbox>
<Checkbox @bind-Checked="showBuffSellNum">
BUFF 收购数
BUFF 在售数
</Checkbox>
<Checkbox @bind-Checked="showUpdateTime">
更新时间
Expand Down Expand Up @@ -79,7 +79,7 @@ else
<Column @bind-Field="@context.SteamBuyRadio" Sortable Title="求购价比例" Hidden="@(!showSteamBuyRadio)" Filterable />
<Column @bind-Field="@context.SteamSellRadio" Sortable Title="出售价比例" Hidden="@(!showSteamSellRadio)" Filterable />
<Column @bind-Field="@context.SteamSellNum" Sortable Title="Steam 在售数" Hidden="@(!showSteamSellNum)" Filterable />
<Column @bind-Field="@context.BuffSellNum" Sortable Title="BUFF 收购数" Hidden="@(!showBuffSellNum)" Filterable />
<Column @bind-Field="@context.BuffSellNum" Sortable Title="BUFF 在售数" Hidden="@(!showBuffSellNum)" Filterable />
<Column @bind-Field="@context.UpdateTime" Format="MM-dd hh:mm" Sortable Title="更新时间" Hidden="@(!showUpdateTime)" Filterable />
</Table>
</Body>
Expand Down
2 changes: 1 addition & 1 deletion ChpStmScraper/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ static void Main(string[] args)
private static object o5 = new object();
#endregion
private int pageNum = 0;
private int maxPageNum = 2333;
private int maxPageNum = int.MaxValue;
private int currentSyncThread = 0;
private string lastScraperName = "";

Expand Down

0 comments on commit d55cead

Please sign in to comment.